curl --request GET \
--url https://test.onlinecheckwriter.com/api/v3/customFromAddresses \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"meta": {
"total": 2
},
"addresses": [
{
"id": "5EJy7VeBQGzn1m3",
"name": "John",
"companyName": "Company Name",
"addressLine1": "Address 1",
"addressLine2": "Address 2",
"city": "City",
"state": "ST",
"zip": "123456",
"phone": "",
"email": "example@example.com",
"note": ""
},
{
"id": "ZqRmA345OegdoLl",
"name": "John1",
"companyName": "Company Name 1",
"addressLine1": "Address 11",
"addressLine2": "Address 21",
"city": "City",
"state": "ST",
"zip": "123456",
"phone": "123456789",
"email": "",
"note": ""
}
]
}
}Fetch a list of all custom ‘from’ address records.
curl --request GET \
--url https://test.onlinecheckwriter.com/api/v3/customFromAddresses \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"meta": {
"total": 2
},
"addresses": [
{
"id": "5EJy7VeBQGzn1m3",
"name": "John",
"companyName": "Company Name",
"addressLine1": "Address 1",
"addressLine2": "Address 2",
"city": "City",
"state": "ST",
"zip": "123456",
"phone": "",
"email": "example@example.com",
"note": ""
},
{
"id": "ZqRmA345OegdoLl",
"name": "John1",
"companyName": "Company Name 1",
"addressLine1": "Address 11",
"addressLine2": "Address 21",
"city": "City",
"state": "ST",
"zip": "123456",
"phone": "123456789",
"email": "",
"note": ""
}
]
}
}