Creates a new certification from uploaded files (upload session)
Security
ApiKeyAuth
Request payload for creating a file certification
Optional webhook URL for completion notification. Callbacks are signed per the Standard Webhooks specification. The payload uses a standard envelope with type, timestamp and data fields.
- Mock serverhttps://truescreen.redocly.app/_mock/openapi/v1/file-certifications
- Testhttps://api-stg.truescreen.io/v1/file-certifications
- Productionhttps://api.truescreen.io/v1/file-certifications
curl -i -X POST \
https://truescreen.redocly.app/_mock/openapi/v1/file-certifications \
-H 'Authorization: Bearer <YOUR_API Key_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"title": "Files to certify",
"upload_session_token": "aaabbbccc",
"webhook_url": "https://example.com/callback",
"metadata": {
"name": "John Doe",
"email": "john.doe@example.com"
}
}'Response
{ "report_id": "1111-1111-1111-1111", "status": "pending", "credits_amount": 1, "title": "Files to certify", "created_at": "2026-01-01T00:00:00Z" }