curl --request GET \
  --url https://api.dots.dev/api/v2/transfer-batches/{transfer_batch_id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "status": "completed",
  "metadata": {},
  "items": [
    {
      "transfer_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "amount": 123,
      "user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "tax_exempt": true,
      "allow_debit": true,
      "metadata": {},
      "error": "<string>"
    }
  ]
}

Authorizations

Authorization
string
headerrequired

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

Path Parameters

transfer_batch_id
string
required

Id of the transfer batch to fetch

Response

200 - application/json
id
string
status
enum<string>
Available options:
completed,
pending
metadata
object
items
object[]