Get Started
Bank Account
Check
Payee
Create Payee
Create one or more payees.
POST
/
payees
Copy
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": "johndoe@example.com",
"phone": "1234567890",
"address1": "Address 1",
"address2": "Address 2",
"city": "City",
"state": "ST",
"zip": "12345",
"country": "US"
}
]
}'
Copy
{
"success": true,
"message": "Successfully created.",
"data": {
"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"
}
]
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Payload to create new payees.
The body is of type object
.
Response
201
application/json
Payees created successfully.
The response is of type object
.
Copy
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": "johndoe@example.com",
"phone": "1234567890",
"address1": "Address 1",
"address2": "Address 2",
"city": "City",
"state": "ST",
"zip": "12345",
"country": "US"
}
]
}'
Copy
{
"success": true,
"message": "Successfully created.",
"data": {
"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"
}
]
}
}
Assistant
Responses are generated using AI and may contain mistakes.