Export a Snapshot

get

/ic/api/process/v1/spaces/{spaceId}/projects/{projectId}/snapshots/{snapshotId}/exp

Exports the specified snapshot.

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

Success. Snapshot successfully exported.

401 Response

Unauthorized

404 Response

Space/Project/Snapshot not found.

500 Response

Error in exporting snapshot
Back to Top

Examples

The following example shows how to export the snapshot by submitting a GET request on the REST resource.

Send Request

The following example shows the contents of the send request:

https://example.com/ic/api/process/<version>/spaces/<spaceId>/projects/<projectId>/snapshots/<snapshotId>/exp

Where,

  • example.com is the host where Oracle Integration is running.

  • <version> is the REST API version.

  • <spaceId> is the unique ID for a space. To retrieve available spaces, see Retrieve Spaces.

  • <projectId> is the unique ID for a project. To retrieve available projects, see Retrieve projects

  • <snapshotId> is the unique ID for a snapshot. To retrieve available snapshots, see Retrieve the snapshots of a given project

Example of Response Header

Status Code: 200 OK
Date:  Tue, 21 Mar 2017 08:39:54 GMT
Content-Type:  application/octet-stream
Back to Top