The Operations API allows you to retrieve details on asynchronous governance operations. The URI for the Retrieve an operation request is found in the _links response of the governance API that initiate these asynchronous operations.
Retrieves an operation and its status
GET
curl -i -X GET \
'https://okta-subdomain.pixtulate.com/governance/api/v1/operations/{operationId}'A successful response
The status of the operation
| Enum Value | Description |
|---|---|
| RUNNING | The operation was created and is currently in progress. |
| FAILED | The operation failed. |
| COMPLETED | The operation completed successfully. |
| CANCELED | The operation was canceled. |
The ISO 8601 formatted date and time of when the operation was created
The ISO 8601 formatted date and time of when the operation completed
Response
{ "id": "cpa4r1gtPOqBal07j0g5", "type": "collection:principal:assignment", "status": "RUNNING", "created": "2026-01-09T01:25:04.000Z", "started": "2026-01-09T01:25:05.208Z", "completed": null, "timeElapsedInSeconds": 1, "_links": { "self": { … } } }