cURL
curl --request POST \ --url https://test.onlinecheckwriter.com/api/v3/payees \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "payees": [ { "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" } ] } '
{ "success": true, "message": "Successfully created.", "data": { "payees": [ { "payeeId": "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" } ] } }
Create one or more payees.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Payload to create new payees.
Show child attributes
Payees created successfully.
true
"Successfully created."