executeExport

post

/ccadmin/v1/exportProcess

Execute Export. Initiate export execution

Request

Supported Media Types
Body ()
Root Schema : executeExport_request
Type: object
Show Source
Example:
{
    "mode":"bundle",
    "fileName":"exportProfilesAndOrders.zip",
    "items":[
        {
            "format":"csv",
            "headersList":"shippingAddress.firstName,shippingAddress.lastName",
            "id":"Profiles"
        },
        {
            "q":"id co \"o7613307\"",
            "prettyPrintJSON":true,
            "format":"json",
            "id":"Orders"
        }
    ]
}
Nested Schema : items
Type: array
List of export operation objects.
Show Source
Nested Schema : items
Type: object
Show Source
Nested Schema : params
Type: object
Export parameters.
Show Source
  • Allowed Values: [ "publishing" ]
    Controls export of non-published data. Only published data is exported by default.
  • A comma delimited list of export data attributes to be included in export csv file. If the value is the word "ALL", all attributes will be included. If the list starts with the plus sign, default attributes along with the given attributes will be included
  • Controls pretty printing of data exported in json format. Formatting is disabled by default.
  • Query string that filters the access rights to be returned from this request using SCIM filtering syntax.
Back to Top

Response

Supported Media Types

202 Response

Following model is returned when operation succeeds.
Body ()
Root Schema : executeExport_response
Type: object
Show Source
Example Response (application/json)
{
    "processId":"N2ECA3RrG1jLYZjN4Q6XTNrkjc_10000",
    "links":[
        {
            "rel":"self",
            "href":"http://example.com:9080/ccadminui/v1/exportProcess"
        }
    ],
    "status":"submitted"
}

Default Response

The error response
Body ()
Root Schema : errorModel
Type: object
Show Source
Nested Schema : errors
Type: array
An optional list of errors if multiple errors were encountered
Show Source
Nested Schema : items
Type: object
Show Source
Back to Top