Enable/Disable¶
POST /api/v1/account/set-disable
Overview¶
Body Parameters¶
| Parameter | Type | Required | Description |
|---|---|---|---|
| accountUUIDs | array | Y | Account UUIDs Example: ['acnt_xxxx', 'acnt_yyyy'] Allow Empty: False |
| isDisable | boolean | Y | Whether to disable, true to disable, false to enable Example: True Allow Empty: False Optional Values: [True, False] |
Parameter Details¶
Request Example¶
curl 'https://external-api.guance.com/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}'