Company branding
Checkmate REST API (1.0.0)
Checkmate API for launching background checks from your side using Checkmate.
Contact
- Questions or feedback: development@checkmate.tech
- Become a partner: team@checkmate.tech
OAuth
OAuth token authorization
If you are not planning to build a multi-tenant integration then, we encorauge you to skip OAuth authentication and use your Checkmate account token instead. You can grab it from your Partner's page under "Account API"
Remember to store it safely!
placeholder
- Mock serverhttps://docs.checkmate.tech/_mock/api/forms
- Staginghttps://staging-api.checkmate.tech/partners/v1/forms
- Productionhttps://api.checkmate.tech/partners/v1/forms
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://docs.checkmate.tech/_mock/api/forms \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'{ "result": [ { … } ], "status": 200, "error": {} }
- Mock serverhttps://docs.checkmate.tech/_mock/api/forms/types
- Staginghttps://staging-api.checkmate.tech/partners/v1/forms/types
- Productionhttps://api.checkmate.tech/partners/v1/forms/types
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://docs.checkmate.tech/_mock/api/forms/types \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'{ "result": { "library": [ … ], "customs": [ … ], "intelligent": [ … ], "questionnaires": [ … ], "candidates": [ … ], "referees": [ … ] }, "status": 200, "error": {} }
Webhooks
Only one webhook can exists for a partner and company. You will only get updates notifications on candidates created under this context.
E.g. If you subscribe to a webhook using your Account API token you won't be get notified about updates on candidates created directly on the web application or other partners.
:global parameter is the only exception to the above. If global=true you will get notifications on all candidates created through the API. You still won't get notifications on candidates created from the web application as they don't belog to the API.