Skip to main content

Get the status of an asynchronous tenant creation operation

GET 

/api/web/v4/async/tenants/:id/createstatus

Get the status of a tenant creation operation for a service provider. Caller requires the TENANTS:VIEW permission from a service provider role.

Request

Path Parameters

    id stringrequired

    The UUID of the create tenant operation whose status is be fetched.

Responses

Successful

Schema

    errorMessage string

    The error message describing the first error encountered processing the operation.

    id stringrequired

    The unique UUID of the operation. Used to get status and results of operation

    initTime date-time

    The time this operation was initialized.

    processingEndTime date-time

    The time at which the operation completed processing.

    processingStartTime date-time

    The time at which the operation began processing.

    processingTime int64

    How long the operation took to complete processing in milliseconds.

    state stringrequired

    Possible values: [FAILED, CANCELLED, COMPLETED, AWAITING_DATA, PROCESSING, SCHEDULED]

    The state of the operation.

    subject string

    The subject of this operation.

Loading...