Update project identity
Updates the workspace label and/or the analysis brand for a project. Changing the analysis brand affects future runs only; historical runs keep the brand snapshot stored at run creation time when available.
PATCH /projects/{projectId}
Update project identity
Updates the workspace label and/or the analysis brand for a project. Changing the analysis brand affects future runs only; historical runs keep the brand snapshot stored at run creation time when available.
Authentication: API key required (Bearer token)
Parameters
| Name | In | Required | Description |
|---|---|---|---|
projectId | path | Yes | Project ID to operate on. |
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
displayName | string | No | Updated workspace-facing project label. |
analysisBrandName | string | No | Updated canonical analysis brand name for future runs. |
Request Example
curl -X PATCH https://sellm.io/api/v1/projects/9f4c8b02-7c6d-4d3f-8b12-5f3a6d9e2c41 \
-H "Authorization: Bearer sellm_your_api_key_here" \
-H "Content-Type: application/json"
Responses
| Status | Description |
|---|---|
200 | Project updated |
400 | Bad request |
401 | Unauthorized |
403 | Forbidden |
404 | Project not found |
429 | Rate limited |
500 | Internal error |