Overview
Query and manage your card status.
Manage Card Status
Use the card_id returned when the card was created to manage your card’s status.
- Activate
- Disable
- Deactivate
- Check card status
cURL -X GET /cards/{card_id}/activate
-H 'Content-Type: application/json'
-H 'Authorization: {token}'
cURL -X GET /cards/{card_id}/disable
-H 'Content-Type: application/json'
-H 'Authorization: {token}'
cURL -X GET /cards/{card_id}/close
-H 'Content-Type: application/json'
-H 'Authorization: {token}'
cURL -X GET /cards/{card_id}/status
-H 'Content-Type: application/json'
-H 'Authorization: {token}'
- Responses
{
"code": "200",
"msg": "Success",
"trace_id": "2c08800ea313466192f00873c26619c4",
"data": {
"card_status": "Activate",
}
}
| Parameter | Description |
|---|---|
| card_status |
|
Note
- Only cards in the Activated status can be used for transactions. Cards in Paused or Closed status cannot be used.
- An Activated card can be Paused or Closed; a Paused card can be Activated or Closed; a Closed card is irreversible.
- Intermediate statuses (Processing) must complete before further actions can be performed.