Start a Restore Operation

post

/paas/api/v1.1/instancemgmt/{identityDomainId}/services/IntegrationCloud/instances/{service_name}/restoredbackups

Restores the service from a backup.

Request

Supported Media Types
Path Parameters
Header Parameters
Body ()
JSON payload for this REST endpoint
Root Schema : Request Body
Type: object
Title: Request Body
Show Source
Back to Top

Response

Supported Media Types

202 Response

Accepted
Body ()
Root Schema : accepted-response
Type: object
Show Source
Back to Top

Examples

The following example shows how to restore a backup for an Oracle Integration Classic Instance by submitting a POST request on the REST resource using cURL.

Note:

The command in this example uses the URL structure https://example.com/resource-path, where example.com is the Oracle Cloud server to contact for your identity domain.

cURL Command

curl -i -X POST -u jstein:Password -d '{"backupId":"1501088628567", "notes": "This is my restore"}' -H "Content-Type:application/json" -H "X-ID-TENANT-NAME:ExampleIdentityDomain" http://example.com/paas/api/v1.1/instancemgmt/ExampleIdentityDomain/services/IntegrationCloud/instances/ExampleInstance/restoredbackups 

Example of Request Header

The following shows an example of the response header.

headers: Content-Type:application/json
Authorization: <Basic Auth credentials>
X-ID-TENANT-NAME: <identity domain>

Example of Request Body

The following shows an example of the request body in JSON format.
{
  "backupId": "<ID Value>",
  "notes": "<Sample Notes>"
}
Back to Top