Back to Collection Items
IncludeFile "CkJsonObject.pb"
IncludeFile "CkHttp.pb"
IncludeFile "CkHttpResponse.pb"
Procedure ChilkatExample()
; This example assumes the Chilkat API to have been previously unlocked.
; See Global Unlock Sample for sample code.
http.i = CkHttp::ckCreate()
If http.i = 0
Debug "Failed to create object."
ProcedureReturn
EndIf
success.i
; Use this online tool to generate code from sample JSON: Generate Code to Create JSON
; The following JSON is sent in the request body.
; {
; "add": [
; {
; "groupId": "bc6c7bb9-87c7-4220-833b-40509c780dd4",
; "assetId": "baking-common",
; "version": "1.0.1"
; }
; ],
; "remove": [
; {
; "groupId": "bc6c7bb9-87c7-4220-833b-40509c780dd4",
; "assetId": "baking-common",
; "version": "1.0.0"
; }
; ]
; }
json.i = CkJsonObject::ckCreate()
If json.i = 0
Debug "Failed to create object."
ProcedureReturn
EndIf
CkJsonObject::ckUpdateString(json,"add[0].groupId","bc6c7bb9-87c7-4220-833b-40509c780dd4")
CkJsonObject::ckUpdateString(json,"add[0].assetId","baking-common")
CkJsonObject::ckUpdateString(json,"add[0].version","1.0.1")
CkJsonObject::ckUpdateString(json,"remove[0].groupId","bc6c7bb9-87c7-4220-833b-40509c780dd4")
CkJsonObject::ckUpdateString(json,"remove[0].assetId","baking-common")
CkJsonObject::ckUpdateString(json,"remove[0].version","1.0.0")
CkHttp::ckSetRequestHeader(http,"X-OWNER-ID","{{owner_id}}")
CkHttp::ckSetRequestHeader(http,"X-ANYPNT-ENV-ID","{{environment-id}}")
; Adds the "Authorization: Bearer 96b384f7-a6d2-43f9-a14b-652f60048b17" header.
CkHttp::setCkAuthToken(http, "96b384f7-a6d2-43f9-a14b-652f60048b17")
CkHttp::ckSetRequestHeader(http,"Content-Type","application/json")
CkHttp::ckSetRequestHeader(http,"X-ANYPNT-ORG-ID","{{org-id}}")
resp.i = CkHttp::ckPostJson3(http,"https://domain.com/designcenter/api-designer/projects/{{project_id}}/branches/{{branch_name}}/exchange/dependencies","application/json",json)
If CkHttp::ckLastMethodSuccess(http) = 0
Debug CkHttp::ckLastErrorText(http)
CkHttp::ckDispose(http)
CkJsonObject::ckDispose(json)
ProcedureReturn
EndIf
Debug Str(CkHttpResponse::ckStatusCode(resp))
Debug CkHttpResponse::ckBodyStr(resp)
CkHttpResponse::ckDispose(resp)
CkHttp::ckDispose(http)
CkJsonObject::ckDispose(json)
ProcedureReturn
EndProcedure
Curl Command
curl -X POST
-H "Authorization: Bearer 96b384f7-a6d2-43f9-a14b-652f60048b17"
-H "X-ANYPNT-ENV-ID: {{environment-id}}"
-H "X-ANYPNT-ORG-ID: {{org-id}}"
-H "Content-Type: application/json"
-H "X-OWNER-ID: {{owner_id}}"
-d '{
"add": [
{
"groupId": "bc6c7bb9-87c7-4220-833b-40509c780dd4",
"assetId": "baking-common",
"version": "1.0.1"
}
],
"remove": [
{
"groupId": "bc6c7bb9-87c7-4220-833b-40509c780dd4",
"assetId": "baking-common",
"version": "1.0.0"
}
]
}'
https://domain.com/designcenter/api-designer/projects/{{project_id}}/branches/{{branch_name}}/exchange/dependencies
Postman Collection Item JSON
{
"name": "Update depency from asset",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var jsonData = pm.response.json();",
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "Authorization",
"value": "Bearer 96b384f7-a6d2-43f9-a14b-652f60048b17"
},
{
"key": "X-ANYPNT-ENV-ID",
"type": "text",
"value": "{{environment-id}}"
},
{
"key": "X-ANYPNT-ORG-ID",
"type": "text",
"value": "{{org-id}}"
},
{
"key": "Content-Type",
"name": "Content-Type",
"type": "text",
"value": "application/json"
},
{
"key": "X-OWNER-ID",
"value": "{{owner_id}}",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"add\": [\n {\n \"groupId\": \"bc6c7bb9-87c7-4220-833b-40509c780dd4\",\n \"assetId\": \"baking-common\",\n \"version\": \"1.0.1\"\n }\n ],\n \"remove\": [\n {\n \"groupId\": \"bc6c7bb9-87c7-4220-833b-40509c780dd4\",\n \"assetId\": \"baking-common\",\n \"version\": \"1.0.0\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/designcenter/api-designer/projects/{{project_id}}/branches/{{branch_name}}/exchange/dependencies",
"host": [
"{{url}}"
],
"path": [
"designcenter",
"api-designer",
"projects",
"{{project_id}}",
"branches",
"{{branch_name}}",
"exchange",
"dependencies"
]
}
},
"response": [
]
}