POST
/
customFromAddresses
curl --request POST \
  --url https://test.onlinecheckwriter.com/api/v3/customFromAddresses \
  --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": "",
  "email": "example@domain.com",
  "note": "This is the billing address for Company A."
}'
{
"success": true,
"data": {
"id": "5EJy7VeBQGzn1m3",
"name": "John Doe",
"companyName": "Company A",
"addressLine1": "Address 1",
"addressLine2": "Address 2",
"city": "City",
"state": "ST",
"zip": "123456",
"phone": "",
"email": "example@domain.com",
"note": "This is the billing address for Company A."
}
}

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 custom 'from' address.

The body is of type object.

Response

201
application/json

Custom 'from' address created successfully.

The response is of type object.