Idempotency-Key header with every state-changing workspace request:
^[A-Za-z0-9][A-Za-z0-9._:/-]{0,199}$.
Keep the same key after a timeout,
429, or retryable server error. Generate a
new key when the user intends a new operation.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Retry OrgX mutations safely with the Idempotency-Key header.
Idempotency-Key header with every state-changing workspace request:
Idempotency-Key: launch-plan-review-001
^[A-Za-z0-9][A-Za-z0-9._:/-]{0,199}$.
| Request | Result |
|---|---|
| First key and input | The operation runs and returns its created or accepted result |
| Same key and same input | 200 returns the original result |
| Same key and different input | 409 reports an idempotency conflict |
429, or retryable server error. Generate a
new key when the user intends a new operation.
curl https://useorgx.com/api/v1/work \
-X POST \
-H "Authorization: Bearer $ORGX_API_KEY" \
-H 'Content-Type: application/json' \
-H 'Idempotency-Key: launch-plan-review-001' \
-d '{"title":"Review the launch plan"}'
