These endpoints allow you to initiate a Payments v1 request or an AIS request, and retrieve the status of the request.
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.
These endpoints configure, retrieve and remove webhooks. See Webhooks for more details.
Operations
- https://api.token.io/webhook/config
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
https://api.token.io/webhook/config \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"config": {
"type": [
"PAYMENT_STATUS_CHANGED"
],
"url": "your-webhook-url.com"
}
}'Response
application/json
{}
- https://api.token.io/webhook/config
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://api.token.io/webhook/config \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Response
application/json
{ "config": { "type": [ … ], "url": "your-webhook-url.com" } }
- https://api.token.io/webhook/config
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
https://api.token.io/webhook/config \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Response
application/json
{}