POST
/
checks
/
print
curl --request POST \
  --url https://test.onlinecheckwriter.com/api/v3/checks/print \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "paperType": 1,
  "checkId": [
    "kWx8eP3l60GK2Xz"
  ]
}'
{
  "success": true,
  "data": {
    "url": "https://example.com/print/url"
  }
}

Authorizations

Authorization
string
headerrequired

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

Body

application/json
paperType
enum<integer>
required

Paper type for the check. Available options:

1 - Check on Top 2 - Check on Middle 3 - Check on Bottom 4 - Three per page 5 - Wallet size 6 - Simple print.

Available options:
1,
2,
3,
4,
5,
6
checkId
string[]
required

Array of check IDs to print.

Response

200 - application/json
success
boolean
data
object