Undeploy a Project Revision

delete

/ic/api/process/v1/targets/{targetId}/projects/{projectId}/revisions/{revision}

Undeploys a project revision and returns the un-deployed revision number.

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

Success. Project succesfully un deployed.
Body ()
Root Schema : deployedProject
Type: object

401 Response

Unauthorized

403 Response

Privileges required. User can't undeploy the project revision

500 Response

Error in un deploying deployed project revision
Back to Top

Examples

The following example shows how to undeploy the specified project revision by submitting a DELETE request on the REST resource.

Send Request

The following example shows the contents of the send request:

https://example.com/ic/api/process/<version>/targets/<targetId>/projects/<projectId>/revisions/<revision>

Where,

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

  • <version> is the REST API version.

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

  • <revision> is the revision number for a project. To retrieve available revisions, see Retrieve all revisions of the specified project

  • <targetId> is the deployment partition target of a project. Allowed values are ORACLEINTERNALPCS and ORACLEINTERNALPCSPLAYER.

Example of Response Header

Status Code: 200 OK
Date:   Mon, 03 Apr 2017 09:39:39 GMT 
Content-Type:  application/json
Back to Top