Secrets
Use this section when you need documentation about secrets 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 secrets API when you need to manage secrets from automation scripts, CI/CD jobs, backend services, or internal tools rather than the Conductor UI.
| Endpoint | Description |
|---|---|
PUT /api/secrets/{key} |
Create/Update Secret |
DELETE /api/secrets/{key} |
Delete Secret |
GET /api/secrets/{key} |
Get Secret Value by Key |
GET /api/secrets/{key}/exists |
Check if Secret Exists |
POST /api/secrets |
List All Secrets |
GET /api/secrets |
List Accessible Secrets |
GET /api/secrets-v2 |
List Secrets with Tags |
PUT /api/secrets/{key}/tags |
Add Tags to Secret |
GET /api/secrets/{key}/tags |
Get Tags from Secret |
DELETE /api/secrets/{key}/tags |
Delete Tags from Secret |
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/Update Secret, Delete Secret, Get Secret Value by Key, Check if Secret Exists, List All Secrets. 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.