Remove Card 3DS
The SaaS application can remove a customer’s card enrollment from 3DS (Three-Domain Secure).
POST{baseUrl}/pcs/api/v1/remove-card-three-ds
Payload
| Attribute | Type | Required | Description |
|---|---|---|---|
| cardId or cardToken | Integer | Yes | Card identifier. |
Request Example
{
"cardId": 1
}Response
| Field | Type | Description |
|---|---|---|
| cardId | Integer | Card ID. |
| cardToken | Integer | Card token. |
| cardStatus | String | Status of card. |
| statusReason | String | Status reason of card. |
| card3DSecure | Object | Contains info related to 3DS. |
200 — SUCCESS
{
"data": {
"cardId": 1691,
"cardToken": 579625186,
"cardStatus": "ACTIVE",
"statusReason": "Activate the card",
"card3DSecure": {
"id": 2564,
"configId": 9,
"status": false
}
}
}