Retrieve the capabilities of a Card Token
The capabilities of a Card Token describe whether the card can be used for specific operations, such as Card Push Transfers. The capabilities can change over time based on the issuing bank's configuration of the card range.
get/card_tokens/{card_token_id}/capabilities
Path parameters
card_token_idstring required
The identifier of the Card Token.
Response
Card Token Capabilities
Example response
{
"routes": [
{
"cross_border_push_transfers": "not_supported",
"domestic_push_transfers": "supported",
"issuer_country": "US",
"route": "visa"
}
],
"type": "card_token_capabilities"
}Changes
Changed in 1 of the 46 revisions of this API.1
- ●
added the new
pulseenum value to theroutes/items/routeresponse property for the response status200response-property-enum-value-added
- ●