DataFlex / Cognite API v1 / Aggregate sequences
Back to Collection Items
Use ChilkatAx-win32.pkg
Procedure Test
Handle hoHttp
Boolean iSuccess
Variant vJson
Handle hoJson
Variant vResp
Handle hoResp
String sTemp1
Integer iTemp1
Boolean bTemp1
// 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
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "filter": {
// "name": "officia dolor qui voluptate proident",
// "externalIdPrefix": "incididunt ipsum dolor in",
// "metadata": {},
// "assetIds": [
// 6755940932372078,
// 466388817751490
// ],
// "rootAssetIds": [
// 2996959927277534,
// 4434140000089514
// ],
// "assetSubtreeIds": [
// {
// "externalId": "ullamco irure"
// },
// {
// "externalId": "enim sint occaecat pariatur"
// }
// ],
// "createdTime": {
// "max": 21259346,
// "min": 24330159
// },
// "lastUpdatedTime": {
// "max": 20522993,
// "min": 46705874
// },
// "dataSetIds": [
// {
// "externalId": "do mollit velit eiusmod sunt"
// },
// {
// "id": 5963974930141452
// }
// ]
// }
// }
Get Create (RefClass(cComChilkatJsonObject)) To hoJson
If (Not(IsComObjectCreated(hoJson))) Begin
Send CreateComObject of hoJson
End
Get ComUpdateString Of hoJson "filter.name" "officia dolor qui voluptate proident" To iSuccess
Get ComUpdateString Of hoJson "filter.externalIdPrefix" "incididunt ipsum dolor in" To iSuccess
Get ComUpdateNewObject Of hoJson "filter.metadata" To iSuccess
Get ComUpdateInt Of hoJson "filter.assetIds[0]" 6755940932372078 To iSuccess
Get ComUpdateInt Of hoJson "filter.assetIds[1]" 466388817751490 To iSuccess
Get ComUpdateInt Of hoJson "filter.rootAssetIds[0]" 2996959927277534 To iSuccess
Get ComUpdateInt Of hoJson "filter.rootAssetIds[1]" 4434140000089514 To iSuccess
Get ComUpdateString Of hoJson "filter.assetSubtreeIds[0].externalId" "ullamco irure" To iSuccess
Get ComUpdateString Of hoJson "filter.assetSubtreeIds[1].externalId" "enim sint occaecat pariatur" To iSuccess
Get ComUpdateInt Of hoJson "filter.createdTime.max" 21259346 To iSuccess
Get ComUpdateInt Of hoJson "filter.createdTime.min" 24330159 To iSuccess
Get ComUpdateInt Of hoJson "filter.lastUpdatedTime.max" 20522993 To iSuccess
Get ComUpdateInt Of hoJson "filter.lastUpdatedTime.min" 46705874 To iSuccess
Get ComUpdateString Of hoJson "filter.dataSetIds[0].externalId" "do mollit velit eiusmod sunt" To iSuccess
Get ComUpdateInt Of hoJson "filter.dataSetIds[1].id" 123 To iSuccess
Send ComSetRequestHeader To hoHttp "content-type" "application/json"
Send ComSetRequestHeader To hoHttp "api-key" "{{api-key}}"
Get pvComObject of hoJson to vJson
Get ComPostJson3 Of hoHttp "https://domain.com/api/v1/projects/{{project}}/sequences/aggregate" "application/json" vJson To vResp
If (IsComObject(vResp)) Begin
Get Create (RefClass(cComChilkatHttpResponse)) To hoResp
Set pvComObject Of hoResp To vResp
End
Get ComLastMethodSuccess Of hoHttp To bTemp1
If (bTemp1 = 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
Send Destroy of hoResp
End_Procedure
Curl Command
curl -X POST
-H "api-key: {{api-key}}"
-H "content-type: application/json"
-d '{
"filter": {
"name": "officia dolor qui voluptate proident",
"externalIdPrefix": "incididunt ipsum dolor in",
"metadata": {},
"assetIds": [
6755940932372078,
466388817751490
],
"rootAssetIds": [
2996959927277534,
4434140000089514
],
"assetSubtreeIds": [
{
"externalId": "ullamco irure"
},
{
"externalId": "enim sint occaecat pariatur"
}
],
"createdTime": {
"max": 21259346,
"min": 24330159
},
"lastUpdatedTime": {
"max": 20522993,
"min": 46705874
},
"dataSetIds": [
{
"externalId": "do mollit velit eiusmod sunt"
},
{
"id": 5963974930141452
}
]
}
}'
https://domain.com/api/v1/projects/{{project}}/sequences/aggregate
Postman Collection Item JSON
{
"id": "aggregateSequences",
"name": "Aggregate sequences",
"request": {
"url": {
"host": "{{baseUrl}}",
"path": [
"api",
"v1",
"projects",
"{{project}}",
"sequences",
"aggregate"
],
"query": [
],
"variable": [
]
},
"method": "POST",
"header": [
{
"key": "api-key",
"value": "{{api-key}}",
"description": "An admin can create API keys in the Cognite console."
},
{
"key": "content-type",
"value": "application/json"
}
],
"description": "Count the number of sequences that match the given filter",
"body": {
"mode": "raw",
"raw": "{\n \"filter\": {\n \"name\": \"officia dolor qui voluptate proident\",\n \"externalIdPrefix\": \"incididunt ipsum dolor in\",\n \"metadata\": {},\n \"assetIds\": [\n 6755940932372078,\n 466388817751490\n ],\n \"rootAssetIds\": [\n 2996959927277534,\n 4434140000089514\n ],\n \"assetSubtreeIds\": [\n {\n \"externalId\": \"ullamco irure\"\n },\n {\n \"externalId\": \"enim sint occaecat pariatur\"\n }\n ],\n \"createdTime\": {\n \"max\": 21259346,\n \"min\": 24330159\n },\n \"lastUpdatedTime\": {\n \"max\": 20522993,\n \"min\": 46705874\n },\n \"dataSetIds\": [\n {\n \"externalId\": \"do mollit velit eiusmod sunt\"\n },\n {\n \"id\": 5963974930141452\n }\n ]\n }\n}"
}
}
}