Skip to main content

Export Data - Step 3 - Download File Stream

This operation downloads the CSV file to a specified location.

Header Parameters
  • Accept string required
Request Body required
  • fileParams object[]
  • id int32
  • name string
Responses

OK

POST /stream/getdownloadcenterfilestream    

Authorization

type: apiKeyname: Authtokenin: header

Request

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

{
"fileParams": [
{
"id": 3,
"name": "zip"
},
{
"id": 2,
"name": "{{exportRequestDownloadGuid}}"
},
{
"id": 10,
"name": "Streamed"
}
]
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/Stream/getDownloadCenterFileStream' \
-H 'Content-Type: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"fileParams": [
{
"id": 3,
"name": "zip"
},
{
"id": 2,
"name": "{{exportRequestDownloadGuid}}"
},
{
"id": 10,
"name": "Streamed"
}
]
}'