deviceChangePin

Change device pin

Change the device pin code.

const result = await HardwareSDK.deviceChangePin(connectId, params);

Params

Optional common params

  • remove - optional boolean request remove pin.

Example

HardwareSDK.deviceChangePin(connectId, {
    remove: false
});

Result

{
    success: true,
    payload: {
        message: string
    }
}

Error

Last updated

Was this helpful?