|
| 1 | +--- |
| 2 | +title: Overview |
| 3 | +description: Description |
| 4 | +--- |
| 5 | + |
| 6 | +```http |
| 7 | +POST /api/v1/workspaces/:workspace-slug/projects/:project_id/issue-properties/:property_id/options/ |
| 8 | +GET /api/v1/workspaces/:workspace-slug/projects/:project_id/issue-properties/:property_id/options/ |
| 9 | +GET /api/v1/workspaces/:workspace-slug/projects/:project_id/issue-properties/:property_id/options/:option_id/ |
| 10 | +PATCH /api/v1/workspaces/:workspace-slug/projects/:project_id/issue-properties/:property_id/options/:option_id/ |
| 11 | +DELETE /api/v1/workspaces/:workspace-slug/projects/:project_id/issue-properties/:property_id/options/:option_id/ |
| 12 | +``` |
| 13 | + |
| 14 | +### Label Object |
| 15 | + |
| 16 | +- `workspace` _uuid_ |
| 17 | + |
| 18 | + The workspace which the issue is part of auto generated from backend |
| 19 | + |
| 20 | +- `project` _uuid_ |
| 21 | + |
| 22 | + The project which the issue is part of auto generated from backend |
| 23 | + |
| 24 | +- `created_at` , `updated_at` timestamp |
| 25 | + |
| 26 | + Timestamp of the issue when it was created and when it was last updated. |
| 27 | + |
| 28 | +- `created_by` & `updated_by` |
| 29 | + |
| 30 | + This values are auto saved and represent the id of the user that created or the updated the project. |
| 31 | + |
| 32 | +- `external_id` & `external_source` |
| 33 | + |
| 34 | + This values are auto saved and represent the id of the user that created or the updated the project. |
| 35 | + |
| 36 | +<ResponseExample> |
| 37 | + |
| 38 | +```json JSON |
| 39 | +{ |
| 40 | + "id": "51a869d1-f612-4315-ac91-ffef3e96c20e", |
| 41 | + "created_at": "2024-10-23T07:44:42.883820Z", |
| 42 | + "updated_at": "2024-10-23T07:44:42.883855Z", |
| 43 | + "deleted_at": null, |
| 44 | + "name": "issue property option 3", |
| 45 | + "sort_order": 10000.0, |
| 46 | + "description": "issue property option 3 description", |
| 47 | + "logo_props": {}, |
| 48 | + "is_active": true, |
| 49 | + "is_default": false, |
| 50 | + "external_source": null, |
| 51 | + "external_id": null, |
| 52 | + "created_by": "9d6d1ecd-bf73-4169-80c8-7dee79b217f4", |
| 53 | + "updated_by": "9d6d1ecd-bf73-4169-80c8-7dee79b217f4", |
| 54 | + "workspace": "70b6599f-9313-4c0d-b5c0-406a13a05647", |
| 55 | + "project": "03a9bf56-84f4-4afe-b232-9400eb9b7b6b", |
| 56 | + "property": "f962febb-98bc-43ca-8bfb-8012e4d54dae", |
| 57 | + "parent": null |
| 58 | +} |
| 59 | +``` |
| 60 | + |
| 61 | +</ResponseExample> |
0 commit comments