Create document link (alpha)
POST/document/:documentId/links
Create a link to a document in the Camunda 8 cluster.
Note that this currently only supports an in-memory document store, which is not meant for production use.
This endpoint is an alpha feature and may be subject to change in future releases.
Request
Path Parameters
The ID of the document to link.
Query Parameters
The ID of the document store to link the document from.
- application/json
Body
Default value: 3600000
The time-to-live of the document link in ms.
Responses
- 201
- 400
The document link was created successfully.
- application/json
- Schema
- Example (from schema)
Schema
The link to the document.
The date and time when the link expires.
{
"url": "string",
"expiresAt": "2024-11-07T21:11:50.865Z"
}
The document link creation failed. More details are provided in the response body.
- application/problem+json
- Schema
- Example (from schema)
Schema
Default value: about:blank
A URI identifying the problem type.
A summary of the problem type.
Possible values: >= 400
and <= 600
The HTTP status code for this problem.
An explanation of the problem in more detail.
A URI identifying the origin of the problem.
{
"type": "about:blank",
"title": "string",
"status": 0,
"detail": "string",
"instance": "string"
}