This web service returns the status of a configuration restore operation.
- This web service is available to users or API keys with the
ADMINrole. - It is necessary to provide an
Ft-Calling-Appvalue when using Fluid Topics web services. See Fluid Topics calling app.
| Method | Endpoint |
|---|---|
GET |
|
| Path parameter | Type | Required? | Description |
|---|---|---|---|
operationId |
String | Yes | Unique identifier of a restore operation. Get the operationId in the response of the Restore a configuration backup web service. |
Response body
The following example shows a JSON response body for this web service:
{
"id": "xyz789",
"status": "DONE"
}
| Field | Type | Description |
|---|---|---|
id |
String | Unique identifier of the restore operation. |
status |
String | Current status of the restore operation. Possible values are:
|
| Return code | Description |
|---|---|
200 OK |
Returns the restore operation and its current status. |
401 UNAUTHORIZED |
The authorization header is absent or invalid. |
403 FORBIDDEN |
The user or API key must be an ADMIN. |
404 NOT FOUND |
No restore operation exists with the given ID. |
For a comprehensive list of all possible return codes, see Return codes.