curl --request GET \
--url https://sandbox.api.fin.com/v1/batch/transactions/commit/{batch_id} \
--header 'Authorization: Bearer <token>'{
"data": {
"batch_id": "ad1a0a29-5a7f-4982-98cc-3f4416724660",
"items": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"beneficiary_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"source_amount": 456,
"source_currency": "USD",
"deduct_from": "PREFUNDED_BALANCE",
"remarks": "<string>",
"reason": "<string>",
"status": "PROCESSING",
"transaction_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"exchange_rate": 135,
"destination_currency": "BDT",
"destination_amount": 261,
"developer_fee": {
"fixed": 123,
"percentage": 123,
"total": 123
}
}
]
}
}Retrieve detailed information about a batch transaction including all items and their statuses
curl --request GET \
--url https://sandbox.api.fin.com/v1/batch/transactions/commit/{batch_id} \
--header 'Authorization: Bearer <token>'{
"data": {
"batch_id": "ad1a0a29-5a7f-4982-98cc-3f4416724660",
"items": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"beneficiary_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"source_amount": 456,
"source_currency": "USD",
"deduct_from": "PREFUNDED_BALANCE",
"remarks": "<string>",
"reason": "<string>",
"status": "PROCESSING",
"transaction_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"exchange_rate": 135,
"destination_currency": "BDT",
"destination_amount": 261,
"developer_fee": {
"fixed": 123,
"percentage": 123,
"total": 123
}
}
]
}
}Documentation Index
Fetch the complete documentation index at: https://developer.fin.com/llms.txt
Use this file to discover all available pages before exploring further.
Bearer token authentication. Obtain token from Issue a Token endpoint
Batch details retrieved successfully
Show child attributes