Get an account creation operation.
GET
/api/admin/users/operations/{operationId}
Code sample: Shell / cURL
curl --request GET \ --url https://auth.example.com/api/admin/users/operations/example \ --header 'Authorization: Bearer <token>'Return the current state of an account creation operation owned by the authenticated administrator in the selected tenant. Unknown, cross-tenant, and differently owned operations all return 404.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” operationId
required
string
Header Parameters
Section titled “Header Parameters ” X-Tenant-Id
string
Tenant selector for multi-tenant admin requests.
Responses
Section titled “ Responses ”Current account creation operation state.
Media type application/json
object
operation_id
required
string
state
required
string
user_id
Present only when state is succeeded.
string
key
additional properties
Example
{ "state": "preparing"}Error response.
Media type application/json
object
error
string
message
string
error_description
string
key
additional properties
Example generated
{ "error": "example", "message": "example", "error_description": "example"}