Returns the customer’s transaction ledger. Filter by date range or transaction type. Useful for billing reconciliation.
curl --request GET \
--url https://api.vobiz.ai/api/v1/partner/accounts/{customer_auth_id}/transactions \
--header 'X-Auth-ID: <api-key>' \
--header 'X-Auth-Token: <api-key>'{
"transactions": [
{
"id": "aabbccdd-1234-5678-90ab-cdef12345678",
"account_id": "MA_XXXXXXXX",
"balance_id": "11223344-1234-5678-90ab-cdef12345678",
"type": "credit",
"amount": 200,
"currency": "INR",
"description": "Transfer from partner Acme: Balance transfer",
"reference": "ptc:99887766-1234-5678-90ab-cdef12345678:MA_XXXXXXXX:1778140310",
"status": "completed",
"processed_at": "2026-03-25T10:00:00Z",
"created_at": "2026-03-25T10:00:00Z",
"updated_at": "2026-03-25T10:00:00Z"
},
{
"id": "55667788-1234-5678-90ab-cdef12345678",
"account_id": "MA_XXXXXXXX",
"balance_id": "11223344-1234-5678-90ab-cdef12345678",
"type": "credit",
"amount": 100,
"currency": "INR",
"description": "Transfer from partner Acme: Balance transfer",
"reference": "ptc:99887766-1234-5678-90ab-cdef12345678:MA_XXXXXXXX:1778051898",
"status": "completed",
"processed_at": "2026-03-24T07:18:18Z",
"created_at": "2026-03-24T07:18:18Z",
"updated_at": "2026-03-24T07:18:18Z"
},
{
"id": "aabbccdd-9999-5678-90ab-cdef12345678",
"account_id": "MA_XXXXXXXX",
"balance_id": "11223344-1234-5678-90ab-cdef12345678",
"type": "credit",
"amount": 1000,
"currency": "INR",
"description": "Transfer from partner Acme: Balance transfer",
"reference": "ptc:99887766-1234-5678-90ab-cdef12345678:MA_XXXXXXXX:1778051770",
"status": "completed",
"processed_at": "2026-03-24T07:16:10Z",
"created_at": "2026-03-24T07:16:10Z",
"updated_at": "2026-03-24T07:16:10Z"
}
],
"summary": {
"total_transactions": 3,
"total_debit": 0,
"total_credit": 1300,
"net_amount": 1300,
"by_reference_type": [
{
"reference_type": "unknown",
"total_debit": 0,
"total_credit": 1300,
"count": 3
}
]
},
"total": 3,
"page": 1,
"per_page": 20,
"total_pages": 1,
"account_auth_id": "MA_XXXXXXXX"
}← Partner API Reference Detailed financial ledgers for every credit and debit event across your partner ecosystem. Use these for monthly billing reconciliation, dispute resolution, and auditing balance movements between your account and your customers.Documentation Index
Fetch the complete documentation index at: https://docs.vobiz.ai/llms.txt
Use this file to discover all available pages before exploring further.
X-Auth-ID and X-Auth-Token headers. See Authentication for details.| Parameter | Default | Description |
|---|---|---|
page | 1 | Page number (1-indexed) |
per_page | 20 | Items per page (max 100) |
from_date | - | Start date in YYYY-MM-DD format |
to_date | - | End date in YYYY-MM-DD format |
transaction_type | - | Filter to recharge, debit, adjustment, or refund |
curl -X GET \
"https://api.vobiz.ai/api/v1/partner/accounts/{customer_auth_id}/transactions?page=1&per_page=20" \
-H "X-Auth-ID: {your_partner_id}" \
-H "X-Auth-Token: {your_auth_token}" \
-H "Accept: application/json"
curl -X GET \
"https://api.vobiz.ai/api/v1/partner/accounts/{customer_auth_id}/transactions?from_date=2026-03-01&to_date=2026-03-31&per_page=100" \
-H "X-Auth-ID: {your_partner_id}" \
-H "X-Auth-Token: {your_auth_token}" \
-H "Accept: application/json"
curl -X GET \
"https://api.vobiz.ai/api/v1/partner/accounts/{customer_auth_id}/transactions?transaction_type=recharge&per_page=50" \
-H "X-Auth-ID: {your_partner_id}" \
-H "X-Auth-Token: {your_auth_token}" \
-H "Accept: application/json"
{
"transactions": [
{
"id": "aabbccdd-1234-5678-90ab-cdef12345678",
"account_id": "MA_XXXXXXXX",
"balance_id": "11223344-1234-5678-90ab-cdef12345678",
"type": "credit",
"amount": 200,
"currency": "INR",
"description": "Transfer from partner John Doe: Balance transfer",
"reference": "ptc:aabbccdd-1234-5678-90ab-cdef12345678:MA_XXXXXXXX:1778140310",
"status": "completed",
"processed_at": "2026-05-07T07:51:50.402147Z",
"created_at": "2026-05-07T07:51:50.402147Z",
"updated_at": "2026-05-07T07:51:50.402147Z"
},
{
"id": "99887766-1234-5678-90ab-cdef12345678",
"account_id": "MA_XXXXXXXX",
"balance_id": "11223344-1234-5678-90ab-cdef12345678",
"type": "credit",
"amount": 100,
"currency": "INR",
"description": "Transfer from partner John Doe: Balance transfer",
"reference": "ptc:aabbccdd-1234-5678-90ab-cdef12345678:MA_XXXXXXXX:1778051898",
"status": "completed",
"processed_at": "2026-05-06T07:18:18.945506Z",
"created_at": "2026-05-06T07:18:18.945506Z",
"updated_at": "2026-05-06T07:18:18.945506Z"
},
{
"id": "55667788-1234-5678-90ab-cdef12345678",
"account_id": "MA_XXXXXXXX",
"balance_id": "11223344-1234-5678-90ab-cdef12345678",
"type": "credit",
"amount": 1000,
"currency": "INR",
"description": "Transfer from partner John Doe: Balance transfer",
"reference": "ptc:aabbccdd-1234-5678-90ab-cdef12345678:MA_XXXXXXXX:1778051770",
"status": "completed",
"processed_at": "2026-05-06T07:16:10.657945Z",
"created_at": "2026-05-06T07:16:10.657945Z",
"updated_at": "2026-05-06T07:16:10.657945Z"
}
],
"summary": {
"total_transactions": 3,
"total_debit": 0,
"total_credit": 1300,
"net_amount": 1300,
"by_reference_type": [
{
"reference_type": "unknown",
"total_debit": 0,
"total_credit": 1300,
"count": 3
}
]
},
"total": 3,
"page": 1,
"per_page": 20,
"total_pages": 1,
"account_auth_id": "MA_XXXXXXXX"
}
curl -X GET \
"https://api.vobiz.ai/api/v1/partner/transactions?page=1&per_page=50" \
-H "X-Auth-ID: {your_partner_id}" \
-H "X-Auth-Token: {your_auth_token}" \
-H "Accept: application/json"
curl -X GET \
"https://api.vobiz.ai/api/v1/partner/transactions?from_date=2026-03-01&to_date=2026-03-31&transaction_type=debit&per_page=100" \
-H "X-Auth-ID: {your_partner_id}" \
-H "X-Auth-Token: {your_auth_token}" \
-H "Accept: application/json"
recharge - Partner transferred balance to the customer wallet. Amount is positive.debit - Automatic usage deduction for completed calls. Amount is negative. Generated daily or per call depending on configuration.adjustment - Manual balance correction by Vobiz support. Amount can be positive or negative.refund - Credit issued for a disputed charge or service outage. Amount is positive.transaction_type=debit and the billing window dates. Sum the absolute amounts.Your Vobiz account Auth ID
Your Vobiz account Auth Token
"2026-03-01"
"2026-03-31"
recharge, debit, refund, transfer Was this page helpful?
curl --request GET \
--url https://api.vobiz.ai/api/v1/partner/accounts/{customer_auth_id}/transactions \
--header 'X-Auth-ID: <api-key>' \
--header 'X-Auth-Token: <api-key>'{
"transactions": [
{
"id": "aabbccdd-1234-5678-90ab-cdef12345678",
"account_id": "MA_XXXXXXXX",
"balance_id": "11223344-1234-5678-90ab-cdef12345678",
"type": "credit",
"amount": 200,
"currency": "INR",
"description": "Transfer from partner Acme: Balance transfer",
"reference": "ptc:99887766-1234-5678-90ab-cdef12345678:MA_XXXXXXXX:1778140310",
"status": "completed",
"processed_at": "2026-03-25T10:00:00Z",
"created_at": "2026-03-25T10:00:00Z",
"updated_at": "2026-03-25T10:00:00Z"
},
{
"id": "55667788-1234-5678-90ab-cdef12345678",
"account_id": "MA_XXXXXXXX",
"balance_id": "11223344-1234-5678-90ab-cdef12345678",
"type": "credit",
"amount": 100,
"currency": "INR",
"description": "Transfer from partner Acme: Balance transfer",
"reference": "ptc:99887766-1234-5678-90ab-cdef12345678:MA_XXXXXXXX:1778051898",
"status": "completed",
"processed_at": "2026-03-24T07:18:18Z",
"created_at": "2026-03-24T07:18:18Z",
"updated_at": "2026-03-24T07:18:18Z"
},
{
"id": "aabbccdd-9999-5678-90ab-cdef12345678",
"account_id": "MA_XXXXXXXX",
"balance_id": "11223344-1234-5678-90ab-cdef12345678",
"type": "credit",
"amount": 1000,
"currency": "INR",
"description": "Transfer from partner Acme: Balance transfer",
"reference": "ptc:99887766-1234-5678-90ab-cdef12345678:MA_XXXXXXXX:1778051770",
"status": "completed",
"processed_at": "2026-03-24T07:16:10Z",
"created_at": "2026-03-24T07:16:10Z",
"updated_at": "2026-03-24T07:16:10Z"
}
],
"summary": {
"total_transactions": 3,
"total_debit": 0,
"total_credit": 1300,
"net_amount": 1300,
"by_reference_type": [
{
"reference_type": "unknown",
"total_debit": 0,
"total_credit": 1300,
"count": 3
}
]
},
"total": 3,
"page": 1,
"per_page": 20,
"total_pages": 1,
"account_auth_id": "MA_XXXXXXXX"
}