🔨 In Development — This section is still being developed and may change.
Remove a preset prompt from an assistant. The prompt will no longer be available for quick-start conversations.
DELETEhttps://api.freddy.aitronos.com/v1/assistants/{assistant_id}/preset-prompts/{prompt_id}
assistant_id string required
The unique identifier of the assistant to remove the preset prompt from.
prompt_id integer required
The unique identifier of the preset prompt to delete.
Bash
- Bash
- Python
- JavaScript
curl https://api.freddy.aitronos.com/v1/assistants/ass_0c23daea5e34/preset-prompts/1 \
-X DELETE \
-H "Authorization: Bearer $FREDDY_API_KEY"Returns
A confirmation message indicating successful deletion.
{
"preset_prompt_id": 1,
"assistant_id": "ass_0c23daea5e34",
"deleted": true,
"message": "Preset prompt deleted successfully"
}