コンテンツにスキップ

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.

operationId
required
string
>= 1 characters <= 256 characters
X-Tenant-Id
string

Tenant selector for multi-tenant admin requests.

Current account creation operation state.

Media type application/json
object
operation_id
required
string
>= 1 characters <= 256 characters
state
required
string
Allowed values: preparing reserved writing directory_pending succeeded blocked canceled
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"
}