Operations

The goal of the operations endpoint is to check the progress of ongoing operations triggered by the API. For example, Site Creation provides 202 Accepted response for the first call, and provides an operation_id, that you can use as a parameter of this endpoint.

Get the status information of an operation

SecuritybearerAuth
Request
path Parameters
operation_id
required
string
Example: sites:add-8dc99dce-c5c7-4d8e-b589-6641696fc830
Responses
200

The operation has successfully finished

202

The operation is still in progress

404

The operation was not found

500

The operation has failed

get/operations/{operation_id}
Request samples
Response samples
application/json
{
  • "message": "Successfully finished request",
  • "status": 200,
  • "data": null
}