Error reference / upload-finalized
Document is already finalized
The upload step was repeated after the draft was finalized.
| Problem type | /problems/upload-finalized |
|---|---|
| HTTP status | 409 |
| Emitted by | REST API (/v1) |
| Title values | Document is already finalized |
| Trigger | REST API (/v1): finalize called twice on an upload draft |
What happened
PUT /v1/documents/{id}/content or POST /v1/documents/{id}/finalize was called on a document that has already been finalized. The response is HTTP 409.
What it means
The PDF is in place and the document has left the upload state. Repeating the upload would change a document that recipients may already see.
What to do next
Continue with POST /v1/documents/{id}/send. To use a different PDF, create a new document.
Problem body
Every error is an RFC 9457 problem document with media type
application/problem+json. The type member is the
stable identifier to switch on; docs_url is this page.
{
"type": "/problems/upload-finalized",
"title": "Document is already finalized",
"status": 409,
"instance": "/v1/...",
"docs_url": "https://docs.signenvoy.com/errors/upload-finalized"
}