Skip to main content

Create Sign-Off

Create a new Sign-Off in your project.

Endpoint

POST /projects/{project_uuid}/sign-offs

Parameters

ParameterTypeDescriptionRequired
namestringThe name of the projectYes
creator_user_idintegerThe user UUID of the project creatorYes
descriptionstringA detailed description of the taskNo

Response

A successful response will return a 200 OK status code and a JSON object containing the details of the newly created sign-off.

{
"uuid": "f9871b7c-8bdc-4f7a-8509-fe2c425c9025",
"name": "API Sign Off",
"description": "",
"description_plain": "",
"deadline": null,
"monetary_value": null,
"monetary_value_currency": null,
"additional_terms": null,
"additional_terms_plain": "",
"status": "draft",
"publish_key": null,
"publish_url": null,
"last_public_view": null,
"created_at": "2025-10-17 00:50:00",
"updated_at": "2025-10-17 00:50:00"
}