v1
latestOpenAPI 3.1.02026-07-265094114.0 KBDocuments
Update document
Update a document in your workspace
patch/v1/documents/{documentId}
Path parameters
documentIdstring required
Request body
Example request
{
"userId": "user123",
"content": "Updated document content.",
"name": "Document Title",
"status": "DRAFT",
"projectId": "prj_E8F0457A95B04D87A11F6B1DD6AA2356"
}Response
Updated document
Example response
{
"requestId": "bce766ea-a4ef-48e5-9da1-d9602bfecf2d",
"resource": "documents",
"data": [
{
"id": "doc_073D2D49094A4AED991A47B614522579",
"content": "This is the content of the document.",
"createdAt": "2023-01-01T12:00:00.000Z",
"updatedAt": "2023-01-02T12:00:00.000Z",
"name": "My Document",
"status": "active",
"userId": "usr_535B1EC15F5F41EAB1B400E9ED4077B6",
"projectId": "prj_E8F0457A95B04D87A11F6B1DD6AA2356"
}
]
}