Create Sign-Off
Create a new Sign-Off in your project.
Endpoint
POST /projects/{project_uuid}/sign-offs
Parameters
| Parameter | Type | Description | Required |
|---|---|---|---|
| name | string | The name of the project | Yes |
| creator_user_id | integer | The user UUID of the project creator | Yes |
| description | string | A detailed description of the task | No |
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"
}