Start a Backup Operation

post

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

Starts an on-demand backup operation on an Oracle Integration Classic instance.

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 initiate 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 @backup.json -H "Content-Type:application/json" -H "X-ID-TENANT-NAME:ExampleIdentityDomain" http://example.com/paas/api/v1.1/instancemgmt/ExampleIdentityDomain/services/IntegrationCloud/instances/ExampleInstance/backups 

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.
{
  "databaseIncluded": false,
  "expirationDate": null,
  "full": true,
  "notes": "On-demand full backup request."
}
Back to Top