These endpoints enable you to make v2 single immediate payments and future dated payments using the redirect, embedded and decoupled flows.
Token.io's Open Banking API for TPPs
Token.io's Open Banking API
Token.io Support: support.token.io
The Token.io Open Banking API enables you to connect securely with banks for a range of services.
Using our API you can:
- provide authorized access to an authenticated user's account information
- get information on specific banks
- initiate authorization with a user-selected bank
- initate and track single immediate payments and future dated payments
- use variable recurring payments (VRP) to grant long-held consents to Payment Initiation Service Providers (PISPs) to initiate series of payments from users' bank accounts
- carry out settlements, payments and refunds using our settlement accounts
For more information see our developer documentation.
Specifies the type of token returned.
The offset for the current page. If the offset has been provided in the request, this offset will be equal to the provided one. But if no offset was provided in the request (i.e. this is the first page) and the page is not empty, this field will be populated with a non-empty string. This may be helpful for loading the same page again, which might not always be possible with an empty offset due to a dynamic nature of the data.
The offset is not visible to a user and should not be parsed and/or understood in any way.
The maximum number of records to return. This must be less than 200.
Identifies the payer's account.
Identifies the payee/beneficiary's account.
The filtered list start timestamp in milliseconds, 1 day (24 hours) = 8640000000, 1 hour = 36000000, and 1 minute = 60000.
The filtered list end timestamp in milliseconds, 1 day (24 hours) = 8640000000, 1 hour = 36000000, and 1 minute = 60000.
Filters by accountHolder role.
https://api.token.io/tokens
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.token.io/tokens?type=ACCESS&page.offset=LerV6Jmex&page.limit=175&filter.sourceAccountId=a%3AJ72REftaRoiaDYRDU7M9FDgf8jeh3eqek9DvKeyBWbuA%3A3VMczyq7r7b6HwC&filter.destinationAccountId=a%3Af34VSeqwfWGTGH23vsa2cDgecew209jdvcd5vdfv4vds%3A5VSWVRqicm4Csa2&filter.startTimeMs=67505&filter.endTimeMs=365650&filter.role=ISSUER&filter.actingAsRefId=4kwl35c9sp3fwp4xq' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'{ "offset": "LerV6Jmex", "tokens": [ { … } ] }
https://api.token.io/tokens/{tokenId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://api.token.io/tokens/tt:8zK1dic95omjWb72gvc3z3ELKbTNfnGd89MbDnM73er4:ZhBVAJSH8DeU1 \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'{ "token": { "id": "ta:3eYPU1BEKKunfmYgQuSKXFCeo851C5Y3XiZW3XA465TU:5zKtXEAq", "payload": { … }, "payloadSignatures": [ … ], "replacedByTokenId": "ta:BzFCFwVt5zrt6rdcHJK5imf2HXbGdVdyHKpWQZbgzL5s:qXTkpBAZVbXMxk9vi", "tokenRequestId": "rq:ej5ACWNwi1EcqBeuDPc4Z8C4Bgc:5zKtXEAq" } }
The user's IP address if the user is currently logged in with the TPP. If the customer IP address is supplied (recommended), it is inferred that the user is present during the session (i.e., the request is user-initiated; adding a customer-initiated = true header makes this explicit). For AIS calls, if the customer's IP address is not provided in the request, the bank assumes it is a TPP-initiated request and may limit the TPP to 4 TPP-initiated access attempts within a given 24-hour period.
Informs the bank that the API call was explicitly initiated by the user. This is useful in circumnavigating bank restrictions that impose a 4-times-a-day (i.e., within the same 24-hour period) access limit on the same AISP, in accordance with RTS regulations.
https://api.token.io/tokens/{tokenId}/cancel
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
https://api.token.io/tokens/ta:3eYPU1BEKKunfmYgQuSKXFCeo851C5Y3XiZW3XA465TU:5zKtXEAq/cancel \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'customer-initiated: true' \
-H 'token-customer-device-id: 00000000-00000000-01234567-89ABCDEF' \
-H 'token-customer-ip-address: 172.16.254.1'{ "result": { "status": "SUCCESS", "token": { … } } }
Webhooks
These endpoints configure, retrieve and remove webhooks. See Webhooks for more details.