Patch tags for a prompt
Adds and/or removes individual tags on a prompt without replacing the full list.
PATCH /settings/tags
Patch tags for a prompt
Adds and/or removes individual tags on a prompt without replacing the full list.
Authentication: API key required (Bearer token)
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
projectPromptId | string | Yes | Project prompt ID to update. |
add | array | No | Tags to add to this prompt. |
remove | array | No | Tags to remove from this prompt. |
Request Example
curl -X PATCH https://sellm.io/api/v1/settings/tags \
-H "Authorization: Bearer sellm_your_api_key_here" \
-H "Content-Type: application/json"
Responses
| Status | Description |
|---|---|
200 | Tags patched |
400 | Bad request |
401 | Unauthorized |
404 | Prompt not found |
429 | Rate limited |
500 | Internal error |