GET
/
v1
/
c
/
customer
/
{customer_id}
/
balance
curl --request GET \
  --url http://127.0.0.1:8080/v1/c/customer/{customer_id}/balance \
  --header 'wb-key: <api-key>'
[
  {
    "currency": "usd",
    "customer_id": "Cust_c40bea18-c0c9-44b1-bd0c-43f5283e1670",
    "deposits": {},
    "invoices": {},
    "total_invoices_ready_for_payment": "<string>",
    "wb_customer_id": "Cust_c40bea18-c0c9-44b1-bd0c-43f5283e1670"
  }
]

Authorizations

wb-key
string
header
required

Path Parameters

customer_id
string
required

Id of the Customer

Response

200 - application/json

Customer Balance

The response is of type object[].