GET
/
customFromAddresses
/
{customFromAddressId}
curl --request GET \
  --url https://test.onlinecheckwriter.com/api/v3/customFromAddresses/{customFromAddressId} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "id": "5EJy7VeBQGzn1m3",
    "name": "John",
    "companyName": "Company A",
    "addressLine1": "Address 1",
    "addressLine2": "Address 2",
    "city": "City",
    "state": "ST",
    "zip": "123456",
    "phone": "",
    "email": "example@test.com",
    "note": ""
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

customFromAddressId
string
required

The ID of the custom 'from' address to retrieve.

Example:

"5EJy7VeBQGzn1m3"

Response

200
application/json
Custom 'from' address retrieved successfully.
success
boolean
Example:

true

data
object