curl --request POST \
  --url https://api.senddotssandbox.com/api/transactions/batch/{batch_id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "success": true,
  "status": "pending"
}

Authorizations

Authorization
string
headerrequired

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Response

200 - application/json
success
boolean
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