Skip to main content

Get Client Account

This endpoint allows a user to get a client accounts by id.

Request​

URL​

The client account id is a string e.g. CA.100110.

/client-accounts/<clientAccoutId>

Method​

GET

Headers​

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

Response​

  • Status code 200
  • Body a JSON representation of the client account object.
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
}
}