Create an OIC Integration history record

post

/epm/rest/public/v1/oicIntegrations/histories

Request

Body ()
Specifies the parameters to create the OIC integration history record
Root Schema : Parameters for creating an OIC integration history record
Type: object
Show Source
Back to Top

Response

Supported Media Types

201 Response

Created

400 Response

Error in body

403 Response

Insufficient Permission

404 Response

Not Found, Integration not registered in EDM
Back to Top

Examples

The following example shows how to create an oic integration run history from outside EDM submitting a post request on the REST resource using cURL.

cURL Command

curl --user epm_cloud_user -X POST -H 'Content-Type: application/json' -d @example_request_payload.json https://servername.fa.us2.oraclecloud.com/epm/rest/public/v1/oicIntegrations/histories

Example of Request Body

The following shows an example of the request body in JSON format.

{
    "oicInstanceId": "3vkQqXuEEfGjTJXyDlYB5T",
	"oicIntegrationId": "EDM_OIC_INTEG_END_TO_END|01.00.0000",
	"oicProjectId": "DEV_EDM_OIC_PROJECT",
	"oicIntegrationInstanceId": "si01-cicd-l1-cmn-rel640-axkbv4jfb37h-px-pp",
	"startTimestamp": "2026-07-08T13:28:20.304Z",
	"ranBy": "Doug Cosby",
	"messages": "Integration started",
	"status": "RUNNING"
}

Example of Response Body

The following shows an example of the response body returning integrationHistoryId, which can be used for subsequent integration history operations.


	"70b00472-4bb2-454b-882a-82e0c70647ab"

Back to Top