cURL
curl --request GET \ --url https://test.onlinecheckwriter.com/api/v3/payees/{payeeId} \ --header 'Authorization: Bearer <token>'
{ "success": true, "data": { "id": "RJ6qGAAxJPGE1rD", "name": "John Doe", "nickName": "JD", "company": "Company A", "email": "[email protected]", "phone": "1234567890", "address1": "Address 1", "address2": "Address 2", "city": "City", "state": "ST", "zip": "12345", "country": "US" } }
Retrieve details of a specific payee by ID.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The ID of the payee to retrieve.
"RJ6qGAAxJPGE1rD"
Successful response with payee details.
true
Show child attributes
"John Doe"
"JD"
"Company A"
"[email protected]"
"1234567890"
"Address 1"
"Address 2"
"City"
"ST"
"12345"
"US"