DataFlex / Cognite API v1 / List time series
Back to Collection Items
Use ChilkatAx-win32.pkg
Procedure Test
Handle hoHttp
Boolean iSuccess
Variant vQueryParams
Handle hoQueryParams
Variant vResp
Handle hoResp
String sTemp1
Integer iTemp1
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
Get Create (RefClass(cComChilkatHttp)) To hoHttp
If (Not(IsComObjectCreated(hoHttp))) Begin
Send CreateComObject of hoHttp
End
Get Create (RefClass(cComChilkatJsonObject)) To hoQueryParams
If (Not(IsComObjectCreated(hoQueryParams))) Begin
Send CreateComObject of hoQueryParams
End
Get ComUpdateInt Of hoQueryParams "limit" 100 To iSuccess
Get ComUpdateString Of hoQueryParams "includeMetadata" "true" To iSuccess
Get ComUpdateString Of hoQueryParams "assetIds" "[363848954441724, 793045462540095, 1261042166839739]" To iSuccess
Get ComUpdateString Of hoQueryParams "rootAssetIds" "[363848954441724, 793045462540095, 1261042166839739]" To iSuccess
Send ComSetRequestHeader To hoHttp "api-key" "{{api-key}}"
Get Create (RefClass(cComChilkatHttpResponse)) To hoResp
If (Not(IsComObjectCreated(hoResp))) Begin
Send CreateComObject of hoResp
End
Get pvComObject of hoQueryParams to vQueryParams
Get pvComObject of hoResp to vResp
Get ComHttpParams Of hoHttp "GET" "https://domain.com/api/v1/projects/{{project}}/timeseries" vQueryParams vResp To iSuccess
If (iSuccess = False) Begin
Get ComLastErrorText Of hoHttp To sTemp1
Showln sTemp1
Procedure_Return
End
Get ComStatusCode Of hoResp To iTemp1
Showln iTemp1
Get ComBodyStr Of hoResp To sTemp1
Showln sTemp1
End_Procedure
Curl Command
curl -G -d "limit=100"
-d "includeMetadata=true"
-d "assetIds=%5B363848954441724,%20793045462540095,%201261042166839739%5D"
-d "rootAssetIds=%5B363848954441724,%20793045462540095,%201261042166839739%5D"
-H "api-key: {{api-key}}"
https://domain.com/api/v1/projects/{{project}}/timeseries
Postman Collection Item JSON
{
"id": "getTimeSeries",
"name": "List time series",
"request": {
"url": {
"host": "{{baseUrl}}",
"path": [
"api",
"v1",
"projects",
"{{project}}",
"timeseries"
],
"query": [
{
"key": "limit",
"description": "Limits the number of results to return. CDF returns a maximum of 1000 results even if you specify a higher limit.",
"value": "100",
"disabled": true
},
{
"key": "includeMetadata",
"description": "Whether the metadata field should be returned, or not.",
"value": "true",
"disabled": true
},
{
"key": "cursor",
"description": "Cursor for paging through results.",
"disabled": true
},
{
"key": "partition",
"description": "Splits the data set into N partitions.\nYou need to follow the cursors within each partition in order to receive all the data.\nExample: 1/10\n",
"disabled": true
},
{
"key": "assetIds",
"description": "Get the time series related to the assets. The format is a list of IDs serialized as a JSON array(int64). Takes [ 1 .. 100 ] unique items.",
"value": "[363848954441724, 793045462540095, 1261042166839739]",
"disabled": true
},
{
"key": "rootAssetIds",
"description": "Only include time series that have a related asset in a tree rooted at any of these root assetIds.",
"value": "[363848954441724, 793045462540095, 1261042166839739]",
"disabled": true
},
{
"key": "externalIdPrefix",
"description": "Filter by this (case-sensitive) prefix for the external ID.",
"disabled": true
}
],
"variable": [
]
},
"method": "GET",
"header": [
{
"key": "api-key",
"value": "{{api-key}}",
"description": "An admin can create API keys in the Cognite console."
}
],
"description": "List time series. Use nextCursor to paginate through the results."
}
}