Exports a Project

get

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

Exports a project.

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

Success. Project succesfully exported.

401 Response

Unauthorized

403 Response

Privileges required. User can't export the project

404 Response

Space/Project not found.

500 Response

Error in exporting project
Back to Top

Examples

The following example shows how to export a project in a space 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>/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

Example of Response Header

Status Code: 200 OK
Date:  Tue, 04 Apr 2017 08:15:18 GMT
Content-Type:  application/octet-stream
Content-Disposition:  attachment; filename = projecttodeploy1.exp
Back to Top