Export Design-Time Metadata of a Service Instance

post

ic/api/common/v1/exportServiceInstanceArchive

Exports an integration's design-time metadata to another integration instance. This operation asynchronously creates an archive.

Request

There are no request parameters for this operation.

Supported Media Types
Request Body - application/json ()
Root Schema : schema
Type: string
Back to Top

Response

Supported Media Types

200 Response

Successful operation
Body ()
Root Schema : Object
Type: object

202 Response

Request accepted

400 Response

Bad request, missing required data

409 Response

Conflict, export job is already in progress or the given job name already exists

500 Response

Server error
Back to Top

Examples

The following example shows how to export design-time metadata of a service instance by submitting a POST request on the REST resource using cURL. For more information about cURL, see Use cURL. For more information about endpoint URL structure, see Send Requests.

Example: Export design-time metadata of a service instance

curl --location 'https:// design.integration.region.ocp.oraclecloud.com/ic/api/common/v1/exportServiceInstanceArchive?integrationInstance=service-instance' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer xxxx' \
--data '{
    "jobName":" export_SI_data_xxxx",
    "exportSecurityArtifacts":true | false,
    "description":"Export description",
    "storageInfo":{
      "storageUrl":"https://<Storage>.oraclecloud.com/v1/tenancy/bucket-name",
      "storageUser":"username",
      "storagePassword":"password"
   }
}'
Back to Top