Skip to main content

Get Client Account

This endpoint allows a user to get a list of client accounts.

Request​

URL​

/client-accounts

Method​

GET

Headers​

Content-Type: application/json
Authorization: Bearer eyy...

Response​

  • Status code 200
  • Body a JSON list of results (paginated) of client account objects
  • Headers pagination headers, including link to next page
Response Body

{
"id": {
"type": "String",
"description": null
},
"clientId": {
"type": "String",
"description": null
},
"clientName": {
"type": "String",
"description": null
},
"type": {
"type": "String",
"description": null
},
"productCode": {
"type": "String",
"description": null
},
"currency": {
"type": "ChoiceString",
"description": null,
"choice_list": [
"SEK",
"EUR",
"USD",
"NOK",
"DKK"
]
},
"balance": {
"type": "Float",
"description": null
},
"balanceLocale": {
"type": "Float",
"description": null
},
"reservedAmount": {
"type": "Float",
"description": null
},
"disposablePayoutAmount": {
"type": "Float",
"description": null
},
"disposablePayoutAmountLocale": {
"type": "Float",
"description": null
},
"pendingTriggeredPayout": {
"type": "Boolean",
"description": null
},
"lastTransactionDate": {
"type": "Date",
"description": null
},
"paymentReference": {
"type": "String",
"description": null
}
}