GET
/
v2
/
transfers
/
{transfer_id}
Authorization
Path
curl --request GET \
  --url https://api.senddotssandbox.com/api/v2/transfers/{transfer_id} \
  --header 'Authorization: <authorization>'
{
  "amount": "number",
  "created": "string",
  "external_data": {
    "account_id": "string",
    "external_id": "string",
    "platform": "ach"
  },
  "id": "string",
  "metadata": [
    "string",
    "object",
    "null"
  ],
  "status": "created",
  "transactions": [
    {
      "amount": "number",
      "created": "string",
      "destination_name": "string",
      "id": "integer",
      "metadata": [
        "string",
        "object",
        "null"
      ],
      "source_name": "string"
    }
  ],
  "type": "refill",
  "user_id": "string"
}

Authorizations

Authorizationheaderrequired
string

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

Path Parameters

transfer_idrequired
string

Id of the transfer to fetch

Response

200 - application/json
amount
number
created
string
external_data
object
id
string
metadata

Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.

status
enum<string>
Available options:
created,
pending,
failed,
completed,
flagged
transactions
object[]
type
enum<string>
Available options:
refill,
payout,
balance
user_id
string