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.

The body is of type object.

Response

201
application/json

Custom 'to' address created successfully.

The response is of type object.