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.

The body is of type object.

Response

200
application/json

Checks printed successfully.

The response is of type object.