report-not-found
| Type URI | https://docs.vertama.com/Products/DIGT/problems/report-not-found |
| HTTP status | 404 Not Found |
| Endpoint | GET /api/digt/v1/reports/{id} |
Availability
Ships with the RFC 9457 error contract for the DIGT API. Until your instance runs that release, the endpoint returns a body-less 404.
No retrievable DIGT report exists under this id for your API user. The cases:
- Not yet submitted — the memento was created, but the end user has not (yet) dispatched the form. This is the normal state between memento creation and user action.
- Unknown id — no memento/report with this id was ever created.
- Different API user — reports are only visible to the API user whose memento created them.
- Not a DIGT report — the id belongs to a report of a different module.
{
"type": "https://docs.vertama.com/Products/DIGT/problems/report-not-found",
"title": "Not Found",
"status": 404,
"detail": "No DIGT report 'DIGT-2024-00123' for this user — not yet submitted, unknown id, or not a DIGT report",
"instance": "/api/digt/v1/reports/DIGT-2024-00123"
}
What to do
If you are polling for a result: keep polling — a 404 before the user
dispatches the form is expected. Note that DIGT delivery is asynchronous:
once dispatched, the report appears with status PENDING and resolves to
SUCCESS or FAILURE later.