curl --request GET \
--url https://test.onlinecheckwriter.com/api/v3/payees \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"meta": {
"total": 100,
"currentPage": 1,
"perPage": 1
},
"payees": [
{
"payeeId": "RJ6qGAAxJPGE1rD",
"name": "John Doe",
"nickName": "JD",
"company": "Company A",
"email": "johndoe@example.com",
"phone": "1234567890",
"address1": "Address 1",
"address2": "Address 2",
"city": "City",
"state": "ST",
"zip": "12345",
"country": "US"
}
]
}
}List all payee records.
curl --request GET \
--url https://test.onlinecheckwriter.com/api/v3/payees \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"meta": {
"total": 100,
"currentPage": 1,
"perPage": 1
},
"payees": [
{
"payeeId": "RJ6qGAAxJPGE1rD",
"name": "John Doe",
"nickName": "JD",
"company": "Company A",
"email": "johndoe@example.com",
"phone": "1234567890",
"address1": "Address 1",
"address2": "Address 2",
"city": "City",
"state": "ST",
"zip": "12345",
"country": "US"
}
]
}
}