Skip to main content

Create ExportSet

Select

Customer Managed

This operation creates a new exportset.

Request Parameters

Name

Description

entityType

Type of entity.

Valid values are:

  • 9502, QuerySet
  • 9503, DownloadSet

operationType

Type of operation.

Valid values are:

  • 1, ADD
  • 2, DELETE
Request Body
  • entityType integer
  • operationType integer
  • userGuid string
  • fromSite integer
  • container object
  • containerType integer
  • containerName string
  • containerOwnerType integer
  • comment string
Responses

OK


Schema
  • container object
  • containerFullName string
  • containerType integer
  • containerName string
  • containerOwnerType integer
  • comment string
  • attribute integer
  • containerId integer
  • containerGuid string
POST /performcontaineroperation    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://CommandCenterHostName/commandcenter/api
Security Scheme
token
Body

{
"entityType": 0,
"operationType": 0,
"userGuid": "string",
"fromSite": 0,
"container": {
"containerType": 0,
"containerName": "string",
"containerOwnerType": 0,
"comment": "string"
}
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/PerformContainerOperation' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"entityType": 0,
"operationType": 0,
"userGuid": "string",
"fromSite": 0,
"container": {
"containerType": 0,
"containerName": "string",
"containerOwnerType": 0,
"comment": "string"
}
}'