Back to Collection Items
func chilkatTest() {
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let http = CkoHttp()!
var success: Bool
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "update": {
// "name": {
// "set": "irur"
// },
// "defaultGroupId": {
// "setNull": false
// },
// "validDomains": {
// "add": [
// ],
// "remove": [
// ]
// },
// "applicationDomains": {
// "add": [
// ],
// "remove": [
// ]
// },
// "authenticationProtocol": {
// "set": "pariatur Lorem veniam"
// },
// "azureADConfiguration": {
// "set": {
// "appId": "",
// "appSecret": "sit exercitation e",
// "tenantId": "qui",
// "appResourceId": "deserunt nulla commodo aute"
// }
// },
// "oAuth2Configuration": {
// "setNull": false
// },
// "oidcConfiguration": {
// "setNull": false
// }
// }
// }
let json = CkoJsonObject()!
json.update("update.name.set", value: "irur")
json.updateBool("update.defaultGroupId.setNull", value: false)
json.updateNewArray("update.validDomains.add")
json.updateNewArray("update.validDomains.remove")
json.updateNewArray("update.applicationDomains.add")
json.updateNewArray("update.applicationDomains.remove")
json.update("update.authenticationProtocol.set", value: "pariatur Lorem veniam")
json.update("update.azureADConfiguration.set.appId", value: "")
json.update("update.azureADConfiguration.set.appSecret", value: "sit exercitation e")
json.update("update.azureADConfiguration.set.tenantId", value: "qui")
json.update("update.azureADConfiguration.set.appResourceId", value: "deserunt nulla commodo aute")
json.updateBool("update.oAuth2Configuration.setNull", value: false)
json.updateBool("update.oidcConfiguration.setNull", value: false)
http.setRequestHeader("content-type", value: "application/json")
http.setRequestHeader("api-key", value: "{{api-key}}")
var resp: CkoHttpResponse? = http.postJson3("https://domain.com/api/v1/projects/{{project}}/update", contentType: "application/json", json: json)
if http.lastMethodSuccess == false {
print("\(http.lastErrorText!)")
return
}
print("\(resp!.statusCode.intValue)")
print("\(resp!.bodyStr!)")
resp = nil
}
Curl Command
curl -X POST
-H "api-key: {{api-key}}"
-H "content-type: application/json"
-d '{
"update": {
"name": {
"set": "irur"
},
"defaultGroupId": {
"setNull": false
},
"validDomains": {
"add": [],
"remove": []
},
"applicationDomains": {
"add": [],
"remove": []
},
"authenticationProtocol": {
"set": "pariatur Lorem veniam"
},
"azureADConfiguration": {
"set": {
"appId": "",
"appSecret": "sit exercitation e",
"tenantId": "qui",
"appResourceId": "deserunt nulla commodo aute"
}
},
"oAuth2Configuration": {
"setNull": false
},
"oidcConfiguration": {
"setNull": false
}
}
}'
https://domain.com/api/v1/projects/{{project}}/update
Postman Collection Item JSON
{
"id": "updateProject",
"name": "Update a project",
"request": {
"url": {
"host": "{{baseUrl}}",
"path": [
"api",
"v1",
"projects",
"{{project}}",
"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": "Updates the project configuration.",
"body": {
"mode": "raw",
"raw": "{\n \"update\": {\n \"name\": {\n \"set\": \"irur\"\n },\n \"defaultGroupId\": {\n \"setNull\": false\n },\n \"validDomains\": {\n \"add\": [],\n \"remove\": []\n },\n \"applicationDomains\": {\n \"add\": [],\n \"remove\": []\n },\n \"authenticationProtocol\": {\n \"set\": \"pariatur Lorem veniam\"\n },\n \"azureADConfiguration\": {\n \"set\": {\n \"appId\": \"\",\n \"appSecret\": \"sit exercitation e\",\n \"tenantId\": \"qui\",\n \"appResourceId\": \"deserunt nulla commodo aute\"\n }\n },\n \"oAuth2Configuration\": {\n \"setNull\": false\n },\n \"oidcConfiguration\": {\n \"setNull\": false\n }\n }\n}"
}
}
}