Get balance for the account
GET/kypay/balance/:uuid
Get balance for the account
Request
Path Parameters
uuid stringrequired
The UUID of the NaturalPerson or LegalEntity
Responses
- 200
- 401
- 4XX|5XX
Return the account balance
- application/json
- Schema
- Example (from schema)
Schema
Balance integer
Account balance in euro cents (10000 = 100€)
AccountId stringrequired
Account Id
{
"Balance": "10000",
"AccountId": "4895ae38-a3fa-4ace-bdef-cc31fe5526a0"
}
Unauthorized
- application/json
- Schema
- Example (from schema)
Schema
code integer
message string
{
"code": "401",
"message": "JWT Token not found"
}
An error occured
- application/json
- Schema
- Example (from schema)
Schema
success boolean
code integer
internal_code integer
message string
{
"success": "false",
"code": "400",
"internal_code": "3001",
"message": "Incorect data"
}
Loading...