Payee
Create Payee
Get Started
Bank Account
Check
Payee
Create Payee
Create one or more payees.
POST
/
payees
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"
}
]
}'
{
"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.
Example:
"John Doe"
Example:
"JD"
Example:
"Company A"
Example:
"johndoe@example.com"
Example:
"1234567890"
Example:
"Address 1"
Example:
"Address 2"
Example:
"City"
Example:
"ST"
Example:
"12345"
Example:
"US"
Response
201
application/json
Payees created successfully.
Example:
true
Example:
"Successfully created."
Example:
"RJ6qGAAxJPGE1rD"
Example:
"John Doe"
Example:
"JD"
Example:
"Company A"
Example:
"johndoe@example.com"
Example:
"1234567890"
Example:
"Address 1"
Example:
"Address 2"
Example:
"City"
Example:
"ST"
Example:
"12345"
Example:
"US"
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"
}
]
}'
{
"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"
}
]
}
}