These endpoints enable you to generate tokenized account id from the provided account details.
The POST /tokenized-accounts endpoint generates a tokenized account ID for the provided account details. The returned tokenized ID enables Third Party Providers (TPPs) to reference the account details in subsequent API calls.
Successful response
The client specified an invalid argument
The authorization information is missing or invalid
Permission to access this endpoint is denied
Too many requests
An unexpected internal server error occurred while processing the request.
The operation was not implemented
Service is unavailable
Gateway has timed out
{- "accountDetails": {
- "iban": "GB29NWBK60161331926819",
- "bic": "BOFIIE2D",
- "name": "John Smith",
- "ultimateDebtorName": "John Smith",
- "address": {
- "addressLine": [
- "The Coach House"
], - "streetName": "221B",
- "buildingNumber": "2C",
- "postCode": "TR26 1EZ",
- "townName": "Saint Ives",
- "state": "Cornwall",
- "district": "string",
- "country": "GB"
}
}, - "bankId": "ob-modelo"
}{- "tokenizedAccountId": "tai:4HoNxTfhn9EjwNnQmjGCsWsuYS7S:5zJAqBcE"
}The GET /tokenized-accounts/{tokenizedAccountId} endpoint retrieves a single tokenized account.
Successful response
The client specified an invalid argument
The authorization information is missing or invalid
Permission to access this endpoint is denied
The requested entity, such as tokenized account, was not found
Too many requests
An unexpected internal server error occurred while processing the request.
The operation was not implemented
Service is unavailable
Gateway has timed out
{- "accountDetails": {
- "iban": "GB29NWBK60161331926819",
- "bic": "BOFIIE2D",
- "name": "John Smith",
- "ultimateDebtorName": "John Smith",
- "address": {
- "addressLine": [
- "The Coach House"
], - "streetName": "221B",
- "buildingNumber": "2C",
- "postCode": "TR26 1EZ",
- "townName": "Saint Ives",
- "state": "Cornwall",
- "district": "string",
- "country": "GB"
}
}
}The DELETE /tokenized-accounts/{tokenizedAccountId} endpoint deletes a single tokenized account.
Successful response
The client specified an invalid argument
The authorization information is missing or invalid
Permission to access this endpoint is denied
The requested entity, such as tokenized account, was not found
Too many requests
An unexpected internal server error occurred while processing the request.
The operation was not implemented
Service is unavailable
Gateway has timed out
{ }