Transactions
Gets the completion status of a transaction batch.
POST
/
api
/
transactions
/
batch
/
{batch_id}
Authorization
curl --request POST \
--url https://api.senddotssandbox.com/api/transactions/batch/{batch_id} \
--header 'Authorization: <authorization>'
{
"success": true,
"status": "pending"
}
Authorizations
Authorization
string
headerrequiredBasic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
Response
200 - application/json
status
enum<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
success
boolean
curl --request POST \
--url https://api.senddotssandbox.com/api/transactions/batch/{batch_id} \
--header 'Authorization: <authorization>'
{
"success": true,
"status": "pending"
}