Card Block

Permanently blocks a card. This operation cannot be reversed.

Endpoint: POST /{san}/block

Path Parameters:

  • san - Secure Account Number (card identifier)

Content-Type: application/json

Request Body:

{
  "request_id": "request-id-12345"
}

Request Parameters:

Field
Type
Required
Constraints
Description

request_id

String

Yes

12-36 characters

Unique request identifier

Response:

{
  "type": "BLOCK",
  "status": "INPROCESS",
  "docid": 123456,
  "request_id": "request-id-12345"
}

Response Parameters:

Field
Type
Description

type

String

Operation type (BLOCK)

status

String

Current status of the operation

(INPROCESS, EXECUTED, DECLINED)

docid

Number

Document ID for tracking the operation

request_id

String

The request ID provided in the request

Last updated