Skip to main content

Export Data - Step 1 - Submit Request

Select

SaaS
Customer Managed

This request submits a download by creating a local CSV and zip file on the webserver.

Path Parameters
  • datasourceHandlerId string required
Header Parameters
  • Accept string required
Request Body
  • searchParams object[]
  • key string
  • value string
Responses

OK


Schema
  • errorCode integer
  • customMap object
  • name string
  • value string
POST /dcube/export/:datasourcehandlerid    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://CommandCenterHostName/commandcenter/api
Security Scheme
token
datasourceHandlerId — path required
Accept — header required
Body

{
"searchParams": [
{
"key": "string",
"value": "string"
}
]
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/dcube/export/:datasourceHandlerId' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"searchParams": [
{
"key": "string",
"value": "string"
}
]
}'