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 integrated Financial Account linked to the issued card
  • ID of the restriction

Endpoint

GET /v1/integrated-cards/{financialAccountId}/restrictions/{id}

Authorization Header

Authorization: Bearer <access_token>

Path Parameters

financialAccountId  REQUIRED

string (UUID)

ID of the integrated Financial Account linked to the issued card.

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",
  "active": true,
  "startDateTime": "2023-02-13T02:36:05.410Z",
  "endDateTime": "2024-02-13T02:36:05.410Z",
  "id": "9e573a4c-7859-4ec2-bf57-aace7dcf5981",
  "createdBy": {
    "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    "type": "employee"
  },
  "createdAt": "2021-09-20T22:09:31.947Z",
  "updatedBy": {
    "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    "type": "employee"
  },
  "updatedAt": "2021-10-20T22:09:31.947Z"
}