curl --request POST \
--url https://your-sift-api-url.com/api/v1/export \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"timeRange": {
"startTime": "2023-11-07T05:31:56Z",
"stopTime": "2023-11-07T05:31:56Z"
},
"runsAndTimeRange": {
"runIds": [
"<string>"
],
"startTime": "2023-11-07T05:31:56Z",
"stopTime": "2023-11-07T05:31:56Z"
},
"assetsAndTimeRange": {
"assetIds": [
"<string>"
],
"startTime": "2023-11-07T05:31:56Z",
"stopTime": "2023-11-07T05:31:56Z"
},
"channelIds": [
"<string>"
],
"calculatedChannelConfigs": [
{
"name": "<string>",
"expression": "<string>",
"channelReferences": [
{
"channelReference": "<string>",
"channelIdentifier": "<string>"
}
],
"units": "<string>"
}
],
"outputFormat": "EXPORT_OUTPUT_FORMAT_UNSPECIFIED",
"exportOptions": {
"useLegacyFormat": true,
"simplifyChannelNames": true,
"combineRuns": true,
"splitExportByAsset": true,
"splitExportByRun": true
}
}'