Prompts
Use this section when you need documentation about prompts in Orkes Conductor.
Start with the overview pages, then move into the reference or tutorial that matches the workflow, worker, API, or integration you are implementing.
Quick reference
Use this prompts API when you need to manage prompts from automation scripts, CI/CD jobs, backend services, or internal tools rather than the Conductor UI.
| Endpoint | Description |
|---|---|
PUT /api/prompts/{name} |
Create or Update Prompt |
POST /api/prompts/{name} |
Create or Update Prompt Version |
POST /api/prompts/ |
Create Prompts in Bulk |
DELETE /api/prompts/{name} |
Delete Prompt |
DELETE /api/prompts/{name}/versions/{version} |
Delete Prompt Version |
GET /api/prompts/{name} |
Get Prompt |
GET /api/prompts/{name/versions} |
Get All Versions of Prompts |
GET /api/prompts |
Get All Prompts |
PUT /api/prompts/{name}/tags |
Add Tags to Prompt |
GET /api/prompts/{name}/tags |
Get Tags from Prompt |
DELETE /api/prompts/{name}/tags |
Delete Tags from Prompt |
POST /api/prompts/test |
Test Prompts |
Authentication: every endpoint above requires Orkes Conductor API credentials with permission for the target resource. See individual pages for path/query parameters, request bodies, and response examples.
Recommended path
If you are unsure where to begin, start with Create or Update Prompt, Create or Update Prompt Version, Create Prompts in Bulk, Delete Prompt, Delete Prompt Version. These pages cover the most common entry points for this section.
When to use this section
Use these pages to answer implementation questions, compare available primitives, and find the exact guide or reference page for the next step in your Orkes Conductor project.