POST
/
customToAddresses
curl --request POST \
  --url https://test.onlinecheckwriter.com/api/v3/customToAddresses \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "John Doe",
  "companyName": "Company A",
  "addressLine1": "Address 1",
  "addressLine2": "Address 2",
  "city": "City",
  "state": "ST",
  "zip": "123456",
  "phone": "1234567890",
  "email": "john.doe@example.com",
  "note": "Note."
}'
{
  "success": true,
  "data": {
    "id": "5EJy7VeBQGzn1m3",
    "name": "John Doe",
    "companyName": "Company A",
    "addressLine1": "Address 1",
    "addressLine2": "Address 2",
    "city": "City",
    "state": "ST",
    "zip": "123456",
    "phone": "1234567890",
    "email": "john.doe@example.com",
    "note": "Note."
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
Payload to create a new custom 'to' address.
name
string
required

Name of the recipient.

Maximum length: 50
Example:

"John Doe"

addressLine1
string
required

First line of the address.

Maximum length: 100
Example:

"Address 1"

city
string
required

City of the address.

Maximum length: 100
Example:

"City"

state
string
required

State code (2-letter abbreviation).

Maximum length: 2
Example:

"ST"

zip
string
required

Zip code of the address.

Maximum length: 15
Example:

"123345"

companyName
string | null

Company name of the recipient.

Maximum length: 50
Example:

"Company A"

addressLine2
string | null

Second line of the address.

Maximum length: 100
Example:

"Address 2"

phone
string | null

Phone number of the recipient.

Maximum length: 15
Example:

"1234567890"

email
string | null

Email address of the recipient.

Example:

"john.doe@example.com"

note
string | null

An internal note for the address.

Maximum length: 200
Example:

"Note."

Response

201
application/json
Custom 'to' address created successfully.
success
boolean
Example:

true

data
object