PowerBuilder / Cognite API v1 / Update sequences
Back to Collection Items
integer li_rc
oleobject loo_Http
integer li_Success
oleobject loo_Json
oleobject loo_Resp
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
loo_Http = create oleobject
// Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0
li_rc = loo_Http.ConnectToNewObject("Chilkat.Http")
if li_rc < 0 then
destroy loo_Http
MessageBox("Error","Connecting to COM object failed")
return
end if
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "items": [
// {
// "update": {
// "name": {
// "set": "commodo consectetur labore adipisicing et"
// },
// "description": {
// "set": "minim do officia commodo enim"
// },
// "assetId": {
// "setNull": true
// },
// "externalId": {
// "setNull": true
// },
// "metadata": {
// "set": {}
// },
// "dataSetId": {
// "setNull": false
// },
// "columns": {
// "modify": [
// ],
// "add": [
// ],
// "remove": [
// ]
// }
// },
// "id": 2341818327837744
// },
// {
// "update": {
// "name": {
// "setNull": true
// },
// "description": {
// "setNull": false
// },
// "assetId": {
// "setNull": false
// },
// "externalId": {
// "set": "ea non cupidatat"
// },
// "metadata": {
// "add": {},
// "remove": [
// ]
// },
// "dataSetId": {
// "set": -97287500
// },
// "columns": {
// "modify": [
// ],
// "add": [
// ],
// "remove": [
// ]
// }
// },
// "externalId": "do"
// }
// ]
// }
loo_Json = create oleobject
// Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
li_rc = loo_Json.ConnectToNewObject("Chilkat.JsonObject")
loo_Json.UpdateString("items[0].update.name.set","commodo consectetur labore adipisicing et")
loo_Json.UpdateString("items[0].update.description.set","minim do officia commodo enim")
loo_Json.UpdateBool("items[0].update.assetId.setNull",1)
loo_Json.UpdateBool("items[0].update.externalId.setNull",1)
loo_Json.UpdateNewObject("items[0].update.metadata.set")
loo_Json.UpdateBool("items[0].update.dataSetId.setNull",0)
loo_Json.UpdateNewArray("items[0].update.columns.modify")
loo_Json.UpdateNewArray("items[0].update.columns.add")
loo_Json.UpdateNewArray("items[0].update.columns.remove")
loo_Json.UpdateInt("items[0].id",123)
loo_Json.UpdateBool("items[1].update.name.setNull",1)
loo_Json.UpdateBool("items[1].update.description.setNull",0)
loo_Json.UpdateBool("items[1].update.assetId.setNull",0)
loo_Json.UpdateString("items[1].update.externalId.set","ea non cupidatat")
loo_Json.UpdateNewObject("items[1].update.metadata.add")
loo_Json.UpdateNewArray("items[1].update.metadata.remove")
loo_Json.UpdateInt("items[1].update.dataSetId.set",-97287500)
loo_Json.UpdateNewArray("items[1].update.columns.modify")
loo_Json.UpdateNewArray("items[1].update.columns.add")
loo_Json.UpdateNewArray("items[1].update.columns.remove")
loo_Json.UpdateString("items[1].externalId","do")
loo_Http.SetRequestHeader("content-type","application/json")
loo_Http.SetRequestHeader("api-key","{{api-key}}")
loo_Resp = loo_Http.PostJson3("https://domain.com/api/v1/projects/{{project}}/sequences/update","application/json",loo_Json)
if loo_Http.LastMethodSuccess = 0 then
Write-Debug loo_Http.LastErrorText
destroy loo_Http
destroy loo_Json
return
end if
Write-Debug string(loo_Resp.StatusCode)
Write-Debug loo_Resp.BodyStr
destroy loo_Resp
destroy loo_Http
destroy loo_Json
Curl Command
curl -X POST
-H "api-key: {{api-key}}"
-H "content-type: application/json"
-d '{
"items": [
{
"update": {
"name": {
"set": "commodo consectetur labore adipisicing et"
},
"description": {
"set": "minim do officia commodo enim"
},
"assetId": {
"setNull": true
},
"externalId": {
"setNull": true
},
"metadata": {
"set": {}
},
"dataSetId": {
"setNull": false
},
"columns": {
"modify": [],
"add": [],
"remove": []
}
},
"id": 2341818327837744
},
{
"update": {
"name": {
"setNull": true
},
"description": {
"setNull": false
},
"assetId": {
"setNull": false
},
"externalId": {
"set": "ea non cupidatat"
},
"metadata": {
"add": {},
"remove": []
},
"dataSetId": {
"set": -97287500
},
"columns": {
"modify": [],
"add": [],
"remove": []
}
},
"externalId": "do"
}
]
}'
https://domain.com/api/v1/projects/{{project}}/sequences/update
Postman Collection Item JSON
{
"id": "updateSequences",
"name": "Update sequences",
"request": {
"url": {
"host": "{{baseUrl}}",
"path": [
"api",
"v1",
"projects",
"{{project}}",
"sequences",
"update"
],
"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": "Update one or more sequences. Fields that are not included in the request, are not changed.",
"body": {
"mode": "raw",
"raw": "{\n \"items\": [\n {\n \"update\": {\n \"name\": {\n \"set\": \"commodo consectetur labore adipisicing et\"\n },\n \"description\": {\n \"set\": \"minim do officia commodo enim\"\n },\n \"assetId\": {\n \"setNull\": true\n },\n \"externalId\": {\n \"setNull\": true\n },\n \"metadata\": {\n \"set\": {}\n },\n \"dataSetId\": {\n \"setNull\": false\n },\n \"columns\": {\n \"modify\": [],\n \"add\": [],\n \"remove\": []\n }\n },\n \"id\": 2341818327837744\n },\n {\n \"update\": {\n \"name\": {\n \"setNull\": true\n },\n \"description\": {\n \"setNull\": false\n },\n \"assetId\": {\n \"setNull\": false\n },\n \"externalId\": {\n \"set\": \"ea non cupidatat\"\n },\n \"metadata\": {\n \"add\": {},\n \"remove\": []\n },\n \"dataSetId\": {\n \"set\": -97287500\n },\n \"columns\": {\n \"modify\": [],\n \"add\": [],\n \"remove\": []\n }\n },\n \"externalId\": \"do\"\n }\n ]\n}"
}
}
}