executeExport

post

/ccadmin/v1/exportProcess

Execute Export. Initiate export execution

Request

Supported Media Types
  • application/json
Body Parameter
Root Schema : executeExport_request
Nested Schema : items
Type: array
List of export operation objects.
Nested Schema : items
Type: object

Response

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

{
    "processId":"N2ECA3RrG1jLYZjN4Q6XTNrkjc_10000",
    "status":"submitted"
}
Default Response
The error response
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:

{
  "fileName": "exportProfilesAndOrders.zip",
  "items": [
    {
      "format": "xml",
      "id": "profile001"
    },
    {
      "format": "json",
      "id": "order001"
    }
  ]
}

Sample Response Payload returned by endpoint:

{
  "processId": "N2ECA3RrG1jLYZjN4Q6XTNrkjc_10000",
  "status": "submitted"
}