Create a Schedule Using Oracle WebCenter Content

Submit the extract job using the extractSchedules API.

Endpoint

Attribute Value
URL /api/boss/data/objects/ora/scmCore/dataExtract/v1/$en/extractSchedules
HTTP Method POST

Request

Use the exportGroupId from the previous step.

Example Request

{
  "extractDefinition": 
  { 
    "exportGroupId": "300100641963646" 
  },
  "name": "CostDistributionsExtract_test_Schedule",
  "extractType": "Incremental",
  "notification": "Y,Y,Y",
  "emails": "youremail@emailprovider.com",
  "startTime": "2025-12-16T15:20:00+00:00",
  "endTime": "2025-12-16T18:20:00+00:00",
  "frequency": "Hourly",
  "frequencyHourlyInterval": 1,
  "extractDefinitionName": "CostDistributionsExtract_test_1"
}

Response

On successful submission, a 201 Created response is returned along with the Location header pointing to the created extract schedule resource.

Example Response

201 Created
Location: https://example.com/api/boss/data/objects/ora/scmCore/dataExtract/v1/$en/extractSchedules/{dataExtractScheduleId}