UpdatePipelineRequest
Request DTO for updating an existing sales pipeline (full replacement)
Properties
| Name | Type | Description |
|---|---|---|
| name* | string | The name of the pipeline |
The name of the pipeline | ||
| description | string | The description of the pipeline |
The description of the pipeline | ||
| isArchived | boolean | Indicates whether this pipeline is archived (inactive) |
Indicates whether this pipeline is archived (inactive) | ||
| defaultManagedByUserCode | string | The code of the user who is the default manager for this pipeline |
The code of the user who is the default manager for this pipeline | ||
| showKanbanBoard | boolean | Whether this pipeline should appear on the Boards kanban view |
Whether this pipeline should appear on the Boards kanban view | ||
| stages | array of PipelineStageDto | User-defined stages for this pipeline |
User-defined stages for this pipeline | ||
JSON Example
{
"name": "string",
"description": "string",
"isArchived": false,
"defaultManagedByUserCode": "string",
"showKanbanBoard": false
}