storePublishingChangeList

post

/ccadmin/v1/publishingChangeLists

Store Publishing Change List. Store a list of change item IDs for later dependency calculations or selective publishing

Request

Supported Media Types
  • application/json
Body Parameter
Root Schema : storePublishingChangeList_request
Nested Schema : changeItemIds
Type: array
Array of change item IDs to store.

Response

Supported Media Types
  • application/json
200 Response
Following model is returned when operation succeeds.
Body
Root Schema : storePublishingChangeList_response
Example application/json

{
    "changeListId":"N2ECA3RrG1jLYZjN4Q6XTNrkjc_10000"
}
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| |------------------|------------------| |31034|List of input change item IDs not found|
Body
Root Schema : errorModel
Type: object
Nested Schema : errors
Type: array
An optional list of errors if multiple errors were encountered
Nested Schema : items
Type: object

Examples

Sample Request:

{"changeItemIds": [
  "ID1",
  "ID2",
  "ID3"
]}

Sample Response Payload returned by endpoint:

{"changeListId": "N2ECA3RrG1jLYZjN4Q6XTNrkjc_10000"}