RocketKOR

COMING SOON

Retrieve a Card Restriction

Retrieve details for a restriction created for an issued card. To retrieve a restriction, you will need:

  • ID of the restriction

Endpoint

GET /v1/restrictions/{id}

Authorization Header

Authorization: Bearer <access_token>

Path Parameters

id  REQUIRED

string (UUID)

ID of the card restriction.

Request Body

None

Returns

Returns the Card Restriction object. This object contains the restriction details.

SAMPLE RESPONSE

				
					{
  "financialAccountId": "7d08a89d-2ac5-4ed3-a6ca-ad7c974c994e",
  "type": "ACQUIRER_ID",
  "operator": "EQ",
  "value": "1234",
  "mode": "ALLOW",
  "enabled": true,
  "startDateTime": "2023-02-13T02:36:05.410Z",
  "endDateTime": "2024-02-13T02:36:05.410Z",
  "id": "9e573a4c-7859-4ec2-bf57-aace7dcf5981",
  "createdAt": "2023-02-13T02:36:05.410Z",
  "createdBy": "string",
  "updatedAt": "2023-09-13T02:36:05.410Z",
  "updatedBy": "string"
}