Back to Collection Items
LOCAL loHttp
LOCAL lnSuccess
LOCAL loJson
LOCAL loResp
* This example assumes the Chilkat API to have been previously unlocked.
* See Global Unlock Sample for sample code.
* For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.Http')
loHttp = CreateObject('Chilkat.Http')
* Use this online tool to generate code from sample JSON: Generate Code to Create JSON
* The following JSON is sent in the request body.
* {
* "query": "sin",
* "convertToString": true,
* "limit": 14015535,
* "sourceLimit": -32489793,
* "inferSchemaLimit": 97832
* }
* For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.JsonObject')
loJson = CreateObject('Chilkat.JsonObject')
loJson.UpdateString("query","sin")
loJson.UpdateBool("convertToString",1)
loJson.UpdateInt("limit",14015535)
loJson.UpdateInt("sourceLimit",-32489793)
loJson.UpdateInt("inferSchemaLimit",97832)
loHttp.SetRequestHeader("content-type","application/json")
loHttp.SetRequestHeader("api-key","{{api-key}}")
loResp = loHttp.PostJson3("https://domain.com/api/v1/projects/{{project}}/transformations/query/run","application/json",loJson)
IF (loHttp.LastMethodSuccess = 0) THEN
? loHttp.LastErrorText
RELEASE loHttp
RELEASE loJson
CANCEL
ENDIF
? STR(loResp.StatusCode)
? loResp.BodyStr
RELEASE loResp
RELEASE loHttp
RELEASE loJson
Curl Command
curl -X POST
-H "api-key: {{api-key}}"
-H "content-type: application/json"
-d '{
"query": "sin",
"convertToString": true,
"limit": 14015535,
"sourceLimit": -32489793,
"inferSchemaLimit": 97832
}'
https://domain.com/api/v1/projects/{{project}}/transformations/query/run
Postman Collection Item JSON
{
"id": "runPreview",
"name": "Run query",
"request": {
"url": {
"host": "{{baseUrl}}",
"path": [
"api",
"v1",
"projects",
"{{project}}",
"transformations",
"query",
"run"
],
"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": "Preview a SQL query.",
"body": {
"mode": "raw",
"raw": "{\n \"query\": \"sin\",\n \"convertToString\": true,\n \"limit\": 14015535,\n \"sourceLimit\": -32489793,\n \"inferSchemaLimit\": 97832\n}"
}
}
}