- Transactions
- Gets the completion status of a transaction batch.
Transactions
Gets the completion status of a transaction batch.
POST
/api/api/transactions/batch/{batch_id}
client_id*
api_key*
curl --request POST \
--url https://api.senddotssandbox.com/api/api/transactions/batch/{batch_id} \
--header 'Authorization: Basic AUTH_VALUE'
{
"success": true,
"status": "pending"
}
Response
success
boolean
status
string
The status of the batch request. This status is separate from the status of the individual transactions in the batch; a failed batch may actually be partially complete, for example.
Available options:
pending
, completed
, failed
, unknown
curl --request POST \
--url https://api.senddotssandbox.com/api/api/transactions/batch/{batch_id} \
--header 'Authorization: Basic AUTH_VALUE'
{
"success": true,
"status": "pending"
}