RocketKOR

COMING SOON

List White Listed Merchants

Retrieve a list of trusted merchants (called white listed merchants) for an issued card. To retrieve a list of white listed merchants for a card, you will need:

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

Endpoint

GET /v1/integrated-cards/{financialAccountId}/whitelisted-merchants

Authorization Header

Authorization: Bearer <access_token>

Path Parameters

financialAccountId  REQUIRED

string (UUID)

ID of the integrated Financial Account. The issued card is linked to this Financial Account.

Request Body

None

Returns

Returns an array of White Listed Merchant objects.

SAMPLE RESPONSE

				
					[
  {
    "merchantId": "1234567890",
    "acquirerInstCode": "6587",
    "firstTransDate": "2023-02-09T21:18:04.018Z",
    "networkTransactionSwitch": 250,
    "cardAcceptorDetail": "9865",
    "isWhitelisted": true,
    "merchantCategory": "string",
    "merchantEffectiveDate": "2015-01-01T18:16:02.019Z"
  },
  {...},
  {...}
]