post/api/v2/prompt-suggestions/{id}/dismiss
Dismiss a prompt suggestion.
Marks a pending prompt suggestion dismissed while preserving the source metadata and run history.
Requires bearer API keyParameters
| Name | In | Description |
|---|---|---|
| X-Project-Id | header | Required for organization-wide API keys on project-scoped endpoints. Project-scoped keys infer the project automatically.string |
| id | path / required | No description provided.string |
Responses
200
application/jsonDismissed prompt suggestion.
{
"type": "object",
"additionalProperties": false,
"properties": {
"projectId": {
"type": "string"
},
"ok": {
"type": "boolean"
}
},
"required": [
"projectId",
"ok"
]
}404
application/jsonSuggestion not found.
{
"type": "object",
"additionalProperties": true
}409
application/jsonSuggestion is no longer pending.
{
"type": "object",
"additionalProperties": true
}Try it
Send this request to the local WatchLLM REST handler. Use a key from /workspace/api; organization keys can include X-Project-Id only when the endpoint documents that header.