`GET /api/v1/state/operations/{operation_id}` — single operation detail including per-resource results.
GET
/api/v1/state/operations/{operation_id}
const url = 'https://example.com/api/v1/state/operations/example';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/v1/state/operations/exampleParameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” operation_id
required
string
State operation ID
Responses
Section titled “ Responses ”State operation detail
Media type application/json
Example generated
exampleState operation not found