Export a Package

get

/ic/api/integration/v1/packages/{packagename}/archive

Exports a package. This operation returns a byte stream that is output to the display by default. If you are using cURL, use the -o option to save the response to a file.

Request

Path Parameters
Query Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Successful operation
Body ()
Root Schema : schema
Type: array
Show Source

404 Response

Package not found

500 Response

Server error
Back to Top

Examples

The following examples show how to export a package to a specified file by submitting a GET 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 a Package

This command downloads the package to the specified file myfile.par in the same directory from which the command was run.

curl -X GET -H 'Authorization: Bearer access_token' -o 'myfile.par' https://design.integration.region.ocp.oraclecloud.com/ic/api/integration/v1/packages/samples.oracle.helloworld/archive?integrationInstance=service-instance

Required options for this cURL request:

  • -o '/path/myfile.par': Location and name of the file in which to save the package.

Example: Export a Recipe Type Package

This command downloads the package to the specified file myfile.par in the same directory from which the command was run.

curl -X GET -H 'Authorization: Bearer access_token' -o 'myfile.par' https://design.integration.region.ocp.oraclecloud.com/ic/api/integration/v1/packages/orcl.r.eloqua_rn_contact_org_sync.1_0_0/archive?prebuilt=true?integrationInstance=service-instance

Required options for this cURL request:

  • -o '/path/myfile.par': Location and name of the file in which to save the package.
Back to Top