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
header
required

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

Body

application/json

Payload to specify the check IDs and paper type for printing.

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
Example:

1

checkId
string[]
required

Array of check IDs to print.

Response

Checks printed successfully.

success
boolean
Example:

true

data
object