Senders

Senders

The remitter. Required on every transfer.

Create a sender#

POST/v1/senders
namestringRequired

Full legal name.

typestringRequired

individual or company.

countrystringRequired

ISO 3166-1 alpha-2, e.g. US.

emailstring

Contact email.

addressobject

line1, city, state, postal_code, country.

Request
{
  "name": "Rajesh Raghunathan",
  "type": "individual",
  "country": "US",
  "email": "rajesh@example.com",
  "address": {
    "line1": "185 Berry St",
    "city": "San Francisco",
    "state": "CA",
    "postal_code": "94107",
    "country": "US"
  }
}

Returns a sender with id and status. Senders activate near-instantly.

Preview

The mandatory field set — and what company senders need beyond individual — may expand.