setSearchPartialSchedule
put
/ccadmin/v1/search/partialSchedule
Set Search Partial Schedule. Schedule a recurring partial index using a calendar schedule. This method allows setting the schedule from a parseString, and from component parts (hours, minutes, etc). The parseString property will override component part properties, if present.
Request
Supported Media Types
- application/json
Root Schema : setSearchSchedule_request
Type:
Show Source
object
-
daysOfMonth(optional):
string
The day or days of the month on which the schedule occurs. Not used if parseString is specified. If neither parseString or daysOfMonth is specified, defaults to all days of the month (equivalent to "*").
-
daysOfWeek(optional):
string
The day or days of the week on which the schedule occurs. Not used if parseString is specified. If neither parseString nor daysOfWeek is specified, defaults to all days of the the week (equivalent to "*").
-
hours(optional):
string
The hours of the day on which the schedule occurs. Not used if parseString is specified. If neither parseString nor hours is specified, defaults to all hours of the day (equivalent to "*").
-
locale(optional):
string
The optional locale to use. Defaults to the US locale.
-
minutes:
string
The minutes of the hour on which the schedule occurs. Not used if parseString is specified. If neither parseString nor minutes is specified, defaults to all minutes of the hour (equivalent to "*").
-
months(optional):
string
The month or months on which the schedule occurs. Not used if parseString is specified. If neither parseString or months is specified, defaults to all months (equivalent to "*").
-
occurrences(optional):
string
The occurence of the day or days of the week on which the schedule occurs. Not used if parseString is specified. If neither parseString or occurences is specified, defaults to all occurences in the month (equivalent to "*").
-
op(optional):
string
Set to 'partial' for a partial/incremental index, 'baseline' for a baseline index or 'baseline-full-export' for a baseline with full catalog export.
-
parseString(optional):
string
The complete calendar schedule parse string. If present, will be used instead of hours, minutes, etc. A null parseString value will delete the baseline schedule
-
timeZone(optional):
string
The optional time zone to use when interpretting the schedule. If not specified, defaults to the time zone of the server JVM.
Example:
{
"occurrences":"*",
"op":"baseline-full-export",
"hours":"2",
"months":"*",
"minutes":"01",
"daysOfMonth":"*",
"timeZone":"EST",
"daysOfWeek":"*"
}
Response
Supported Media Types
- application/json
200 Response
Following model is returned when operation succeeds.
Root Schema : setSearchSchedule_response
Type:
Show Source
object
-
daysOfMonth(optional):
string
The day or days of the month on which the schedule occurs.
-
daysOfWeek(optional):
string
The day or days of the week on which the schedule occurs.
-
hours(optional):
string
The hours of the day on which the schedule occurs.
-
minutes(optional):
string
The minutes of the hour on which the schedule occurs.
-
months(optional):
string
The month or months on which the schedule occurs. Not used if parseString is specified.
-
occurrences(optional):
string
The occurence of the day or days of the week on which the schedule occurs.
-
op(optional):
string
'partial' for a partial/incremental index, 'baseline' for a baseline index or 'baseline-full-export' for a baseline with full catalog export.
-
parseString(optional):
string
The complete calendar schedule parse string.
-
timeZone(optional):
string
The time zone of the schedule.
Example Response (application/json)
{
"occurrences":"*",
"hours":"*",
"months":"*",
"parseString":"* * * * * 0,15,30,45",
"minutes":"0,15,30,45",
"daysOfMonth":"*",
"timeZone":"UTC",
"daysOfWeek":"*"
}
Default Response
The error response.
The following are the internal error codes thrown by this API when the request processing fails in Oracle Commerce Cloud:
|Error Code|Description|
|------------------|------------------|
|34080|Invalid Schedule format|
|34080|Either parseString parameter or one of the following parameters must be provided to set schedule: months, daysOfMonth, occurrences, daysOfWeek, hours, minutes.|
|34080|An indexing schedule that occurs every minute is not allowed. Please specify a minute, list of minutes, or range of minutes.|
|34080|String cannot be parsed as a number. {0}|
|34080|Invalid value {0}: must be between {1} and {2} (inclusive)|
|34080|Invalid date of month value {0}: must less than or equal to {1} in order to ever occur in any of the months specified: {2}|
|31041|An internal search administration error occurred.|
Root Schema : errorModel
Type:
Show Source
object
-
devMessage(optional):
string
An optional non-localized message containing technical information for developers
-
errorCode(optional):
string
The numerical code identifying the error
-
errors(optional):
array errors
An optional list of errors if multiple errors were encountered
-
message(optional):
string
The localized message describing the error
-
moreInfo(optional):
string
An optional non-localized message with more information
-
o:errorPath(optional):
string
An optional machine readable description of where the error occurred
-
status(optional):
string
The HTTP status code
-
type(optional):
string
The URI to the HTTP state code definition
Nested Schema : errors
Type:
array
An optional list of errors if multiple errors were encountered
Show Source
Nested Schema : items
Type:
Show Source
object
-
devMessage(optional):
string
An optional non-localized message containing technical information for developers
-
errorCode(optional):
string
The numerical code identifying the error
-
message(optional):
string
The localized message describing the error
-
moreInfo(optional):
string
An optional non-localized message with more information
-
o:errorPath(optional):
string
An optional machine readable description of where the error occurred
-
status(optional):
string
The HTTP status code