Skip to content
Console

Operations

Some control-plane commands continue after the HTTP request returns. Their response includes an operation object and a links.self URL. Treat the initial response as acceptance, not workload readiness.

  1. requested means the command and its durable work item were stored together.
  2. committed means the desired state was committed to Git. A no-change reconciliation can still reach this state with a null git_commit_sha.
  3. applied means the target controller observed the desired generation.
  4. ready means the current observed state satisfies the resource readiness contract.

failed and timed_out are terminal. Read error_code and error_message before retrying. Reuse the original idempotency key when retrying an ambiguous acceptance response.

Terminal window
curl --fail-with-body \
-H "Authorization: Bearer $THALOVANT_TOKEN" \
https://api.thalovant.com/v1/operations/OPERATION_ID

Poll with bounded backoff. Stop on ready, failed, or timed_out. A Git-only command can stop at committed because it has no workload readiness stage.

The Python, Node, Go, and Rust SDK control-plane clients expose get_operation or getOperation using their language naming convention.