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

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
Payload to create new payees.
payees
object[]

Response

201
application/json
Payees created successfully.
success
boolean
Example:

true

message
string
Example:

"Successfully created."

data
object