DELETE
/
checks
/
{checkId}
curl --request DELETE \
  --url https://test.onlinecheckwriter.com/api/v3/checks/{checkId} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Successfully deleted"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

checkId
string
required

The ID of the check to delete.

Example:

"RJ6qGAyPQzGE1rD"

Response

200
application/json
Check deleted successfully.
success
boolean
Example:

true

message
string
Example:

"Successfully deleted"