Retrieve an issuing token
GET / v1 / issuing / tokens /:id
Retrieves an Issuing Token object.
Parameters
No parameters.
Returns
Returns an Issuing Token object if a valid identifier was provided.
Response
{ "id": "intok_1MzDbE2eZvKYlo2C26a98MDg", "object": "issuing.token", "card": "ic_1MytUz2eZvKYlo2CZCn5fuvZ", "created": 1682059060, "network_updated_at": 1682059060, "livemode": false, "status": "active", "last4": "2424", "token_service_provider": "visa", "wallet_provider": "apple_pay", "device_fingerprint": "intd_1MzDbE2eZvKYcp3095svdf"}
List all issuing tokens for card
GET / v1 / issuing / tokens
Lists all Issuing Token objects for a given card.
Parameters
- card string Required The Issuing card identifier to list tokens for.
- created object Only return Issuing tokens that were created during the given date interval.
- status enum Select Issuing tokens with the given status. Possible enum values
activeToken is provisioned and usable for payments.deletedTerminal state. Token can no longer be used.requestedToken has been requested to be provisioned, but has not completed the activation process.suspendedToken temporarily cannot be used for payments.
More parameters
- ending _ before string
- limit integer
- starting _ after string
Returns
A dictionary with a data property that contains an array of up to limit tokens, starting after token starting_after. Each entry in the array is a separate Issuing Token object. If no more tokens are available, the resulting array will be empty.
Response
