Authorizations
A valid API key generated in Topsort's UI.
Path Parameters
The External ID of the Vendor to retrieve.
Minimum length:
1
curl --request GET \
--url https://api.topsort.com/public/v1/billing-service/vendors/{external-vendor-id}/credit-history \
--header 'Authorization: Bearer <token>'
{
"currencyCode": "<string>",
"lines": [
{
"amount": 123,
"createdAt": "2023-11-07T05:31:56Z",
"description": "<string>"
}
],
"totalAmount": 123
}
Endpoint to get the credit History for a vendor.
curl --request GET \
--url https://api.topsort.com/public/v1/billing-service/vendors/{external-vendor-id}/credit-history \
--header 'Authorization: Bearer <token>'
{
"currencyCode": "<string>",
"lines": [
{
"amount": 123,
"createdAt": "2023-11-07T05:31:56Z",
"description": "<string>"
}
],
"totalAmount": 123
}
A valid API key generated in Topsort's UI.
The External ID of the Vendor to retrieve.
1
Was this page helpful?