Assist. Get customer cards

GET https://exchange-core.whitebird.io/api/v1/merchant/client/{linkId}/assist/customer/card

Request headers

NameTypeRequiredDescription
x-api-keyStringYesMerchant security key

Request params

NameTypeRequiredDescription
linkIdStringYesLinked client id

Response

[
  {
    "bank": "string",
    "country": "string",
    "id": "string",
    "number": "string",
    "token": "string",
    "type": "string"
  }
]
{
 "message": "link not found",
 "code":"404"
 "status": "NOT_FOUND"
}
{
 "message": "invalid x-api-key",
 "code":"401"
 "status": "UNAUTHORIZED"
}

Example request

curl -X GET 'https://exchange-core.whitebird.io/api/v1/merchant/client/{linkId}/assist/customer/card' \
  -H 'Content-Type: application/json'