Getting Accounts
1
10
Authorization header containing your API Token
Nonce used to generate the payload signature
Payload signature
Date of the request un UTC/GMT
List of accounts available to the partner
Input validation error
Unprocessable entity
GET /v1/partner/accounts?types=PRIMARY&primaryAccountId=123e4567-e89b-12d3-a456-426614174000&states=INITIALIZING&page=1&limit=10 HTTP/1.1
Host: api-url
Accept: */*
{
"items": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"customerId": "123e4567-e89b-12d3-a456-426614174000",
"partnerId": "123e4567-e89b-12d3-a456-426614174000",
"primaryAccountId": "123e4567-e89b-12d3-a456-426614174000",
"type": "PRIMARY",
"currencyCode": "GBP",
"createDate": "2025-08-19T19:13:47.417Z",
"identifiers": [
{
"type": "UK_ACCOUNT",
"beneficiary": "text",
"bankAddress": "text",
"data": {
"type": "UK_ACCOUNT",
"sortCode": "010102",
"accountNumber": "12345678"
}
}
],
"state": "INITIALIZING",
"balance": {
"currency": "GBP",
"availableBalance": 1,
"ledgerBalance": 1,
"pendingCredits": 1
}
}
],
"meta": {
"currentPage": 1,
"itemCount": 10,
"itemsPerPage": 10,
"totalItems": 100,
"totalPages": 10
}
}
Authorization header containing your API Token
Nonce used to generate the payload signature
Payload signature
Date of the request un UTC/GMT
Returns the account details
Input validation error
Forbidden
Account not found
Unprocessable entity
GET /v1/partner/accounts/{accountId} HTTP/1.1
Host: api-url
Accept: */*
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"customerId": "123e4567-e89b-12d3-a456-426614174000",
"partnerId": "123e4567-e89b-12d3-a456-426614174000",
"primaryAccountId": "123e4567-e89b-12d3-a456-426614174000",
"type": "PRIMARY",
"currencyCode": "GBP",
"createDate": "2025-08-19T19:13:47.417Z",
"identifiers": [
{
"type": "UK_ACCOUNT",
"beneficiary": "text",
"bankAddress": "text",
"data": {
"type": "UK_ACCOUNT",
"sortCode": "010102",
"accountNumber": "12345678"
}
}
],
"state": "INITIALIZING",
"balance": {
"currency": "GBP",
"availableBalance": 1,
"ledgerBalance": 1,
"pendingCredits": 1
}
}
1
10
Authorization header containing your API Token
Nonce used to generate the payload signature
Payload signature
Date of the request un UTC/GMT
List of accounts available to the partner
Input validation error
Forbidden
Unprocessable entity
GET /v1/partner/customers/{customerId}/accounts?types=PRIMARY&primaryAccountId=123e4567-e89b-12d3-a456-426614174000&states=INITIALIZING&page=1&limit=10 HTTP/1.1
Host: api-url
Accept: */*
{
"items": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"customerId": "123e4567-e89b-12d3-a456-426614174000",
"partnerId": "123e4567-e89b-12d3-a456-426614174000",
"primaryAccountId": "123e4567-e89b-12d3-a456-426614174000",
"type": "PRIMARY",
"currencyCode": "GBP",
"createDate": "2025-08-19T19:13:47.417Z",
"identifiers": [
{
"type": "UK_ACCOUNT",
"beneficiary": "text",
"bankAddress": "text",
"data": {
"type": "UK_ACCOUNT",
"sortCode": "010102",
"accountNumber": "12345678"
}
}
],
"state": "INITIALIZING",
"balance": {
"currency": "GBP",
"availableBalance": 1,
"ledgerBalance": 1,
"pendingCredits": 1
}
}
],
"meta": {
"currentPage": 1,
"itemCount": 10,
"itemsPerPage": 10,
"totalItems": 100,
"totalPages": 10
}
}
Authorization header containing your API Token
Nonce used to generate the payload signature
Payload signature
Date of the request un UTC/GMT
Returns the account details
Input validation error
Forbidden
Account not found
Unprocessable entity
GET /v1/partner/customers/{customerId}/accounts/{accountId} HTTP/1.1
Host: api-url
Accept: */*
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"customerId": "123e4567-e89b-12d3-a456-426614174000",
"partnerId": "123e4567-e89b-12d3-a456-426614174000",
"primaryAccountId": "123e4567-e89b-12d3-a456-426614174000",
"type": "PRIMARY",
"currencyCode": "GBP",
"createDate": "2025-08-19T19:13:47.417Z",
"identifiers": [
{
"type": "UK_ACCOUNT",
"beneficiary": "text",
"bankAddress": "text",
"data": {
"type": "UK_ACCOUNT",
"sortCode": "010102",
"accountNumber": "12345678"
}
}
],
"state": "INITIALIZING",
"balance": {
"currency": "GBP",
"availableBalance": 1,
"ledgerBalance": 1,
"pendingCredits": 1
}
}
Last updated
Was this helpful?