Chilkat Online Tools

delphiDll / Cognite API v1 / Legacy update of a project

Back to Collection Items

var
http: HCkHttp;
success: Boolean;
json: HCkJsonObject;
sbRequestBody: HCkStringBuilder;
resp: HCkHttpResponse;

begin
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

http := CkHttp_Create();

// Use this online tool to generate code from sample JSON: Generate Code to Create JSON

// The following JSON is sent in the request body.

// {
//   "authentication": {
//     "protocol": "oauth2",
//     "oAuth2Configuration": {
//       "loginUrl": "veniam",
//       "logoutUrl": "anim sit",
//       "tokenUrl": "laboris enim Ut quis cillum",
//       "clientId": "Ut",
//       "clientSecret": "sit do dolore"
//     },
//     "validDomains": [
//     ],
//     "applicationDomains": [
//     ]
//   },
//   "name": "fugiat do",
//   "defaultGroupId": 14203386
// }

json := CkJsonObject_Create();
CkJsonObject_UpdateString(json,'authentication.protocol','oauth2');
CkJsonObject_UpdateString(json,'authentication.oAuth2Configuration.loginUrl','veniam');
CkJsonObject_UpdateString(json,'authentication.oAuth2Configuration.logoutUrl','anim sit');
CkJsonObject_UpdateString(json,'authentication.oAuth2Configuration.tokenUrl','laboris enim Ut quis cillum');
CkJsonObject_UpdateString(json,'authentication.oAuth2Configuration.clientId','Ut');
CkJsonObject_UpdateString(json,'authentication.oAuth2Configuration.clientSecret','sit do dolore');
CkJsonObject_UpdateNewArray(json,'authentication.validDomains');
CkJsonObject_UpdateNewArray(json,'authentication.applicationDomains');
CkJsonObject_UpdateString(json,'name','fugiat do');
CkJsonObject_UpdateInt(json,'defaultGroupId',14203386);

CkHttp_SetRequestHeader(http,'content-type','application/json');
CkHttp_SetRequestHeader(http,'api-key','{{api-key}}');

sbRequestBody := CkStringBuilder_Create();
CkJsonObject_EmitSb(json,sbRequestBody);

resp := CkHttp_PTextSb(http,'PUT','https://domain.com/api/v1/projects/{{project}}',sbRequestBody,'utf-8','application/json',False,False);
if (CkHttp_getLastMethodSuccess(http) = False) then
  begin
    Memo1.Lines.Add(CkHttp__lastErrorText(http));
    Exit;
  end;

Memo1.Lines.Add(IntToStr(CkHttpResponse_getStatusCode(resp)));
Memo1.Lines.Add(CkHttpResponse__bodyStr(resp));
CkHttpResponse_Dispose(resp);

CkHttp_Dispose(http);
CkJsonObject_Dispose(json);
CkStringBuilder_Dispose(sbRequestBody);

Curl Command

curl -X PUT
	-H "api-key: {{api-key}}"
	-H "content-type: application/json"
	-d '{
    "authentication": {
        "protocol": "oauth2",
        "oAuth2Configuration": {
            "loginUrl": "veniam",
            "logoutUrl": "anim sit",
            "tokenUrl": "laboris enim Ut quis cillum",
            "clientId": "Ut",
            "clientSecret": "sit do dolore"
        },
        "validDomains": [],
        "applicationDomains": []
    },
    "name": "fugiat do",
    "defaultGroupId": 14203386
}'
https://domain.com/api/v1/projects/{{project}}

Postman Collection Item JSON

{
  "id": "putProject",
  "name": "Legacy update of a project",
  "request": {
    "url": {
      "host": "{{baseUrl}}",
      "path": [
        "api",
        "v1",
        "projects",
        "{{project}}"
      ],
      "query": [
      ],
      "variable": [
      ]
    },
    "method": "PUT",
    "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": "Updates the project configuration. **Warning:** This endpoint does not support partial updates, so all fields must be set when updating the project, otherwise the existing values will be lost. Ensure you set validDomains and applicationDomains correctly. If you set applicationDomains to be empty,  any domains previously set will be removed, and you may lock yourself out of your project.\n",
    "body": {
      "mode": "raw",
      "raw": "{\n    \"authentication\": {\n        \"protocol\": \"oauth2\",\n        \"oAuth2Configuration\": {\n            \"loginUrl\": \"veniam\",\n            \"logoutUrl\": \"anim sit\",\n            \"tokenUrl\": \"laboris enim Ut quis cillum\",\n            \"clientId\": \"Ut\",\n            \"clientSecret\": \"sit do dolore\"\n        },\n        \"validDomains\": [],\n        \"applicationDomains\": []\n    },\n    \"name\": \"fugiat do\",\n    \"defaultGroupId\": 14203386\n}"
    }
  }
}