[Frontend Account] Enable/Disable¶
POST /api/v1/account/set-disable
Overview¶
Body Request Parameters¶
Parameter Name | Type | Required | Description |
---|---|---|---|
accountUUIDs | array | Y | Account UUID Example: ['acnt_xxxx', 'acnt_yyyy'] Can be empty: False |
isDisable | boolean | Y | Whether to disable, true for disable, false for enable Example: True Can be empty: False Possible values: [True, False] |
Additional Parameter Notes¶
Request Example¶
curl '<Endpoint>/api/v1/account/set-disable' \
-H 'Content-Type: application/json' \
-H 'X-Df-Access-Key: <AK key>' \
-H 'X-Df-Nonce: <random string>' \
-H 'X-Df-Signature: <signature>' \
-H 'X-Df-Timestamp: <timestamp>' \
--data-raw $'{"accountUUIDs": ["acnt_a95702ad60d04209b3ba42650e75c8a8"],"isDisable": true}'