Chilkat Online Tools

C / Anypoint Platform APIs / Edit consumer app information

Back to Collection Items

#include <C_CkHttp.h>
#include <C_CkJsonObject.h>
#include <C_CkStringBuilder.h>
#include <C_CkHttpResponse.h>

void ChilkatSample(void)
    {
    HCkHttp http;
    BOOL success;
    HCkJsonObject json;
    HCkStringBuilder sbRequestBody;
    HCkHttpResponse resp;

    // 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.

    // {
    //   "name": "myapp2",
    //   "description": "abcdefghijklmnopqrstuvwxyz",
    //   "url": "http://google.cd",
    //   "redirectUri": [
    //   ],
    //   "grantTypes": [
    //   ],
    //   "apiEndpoints": false
    // }

    json = CkJsonObject_Create();
    CkJsonObject_UpdateString(json,"name","myapp2");
    CkJsonObject_UpdateString(json,"description","abcdefghijklmnopqrstuvwxyz");
    CkJsonObject_UpdateString(json,"url","http://google.cd");
    CkJsonObject_UpdateNewArray(json,"redirectUri");
    CkJsonObject_UpdateNewArray(json,"grantTypes");
    CkJsonObject_UpdateBool(json,"apiEndpoints",FALSE);

    // Adds the "Authorization: Bearer {{token}}" header.
    CkHttp_putAuthToken(http,"{{token}}");
    CkHttp_SetRequestHeader(http,"Content-Type","application/json");

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

    resp = CkHttp_PTextSb(http,"PATCH","https://domain.com/exchange/api/v1/organizations/{{organization_id}}/applications/895851",sbRequestBody,"utf-8","application/json",FALSE,FALSE);
    if (CkHttp_getLastMethodSuccess(http) == FALSE) {
        printf("%s\n",CkHttp_lastErrorText(http));
        CkHttp_Dispose(http);
        CkJsonObject_Dispose(json);
        CkStringBuilder_Dispose(sbRequestBody);
        return;
    }

    printf("%d\n",CkHttpResponse_getStatusCode(resp));
    printf("%s\n",CkHttpResponse_bodyStr(resp));
    CkHttpResponse_Dispose(resp);


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

    }

Curl Command

curl -X PATCH
	-H "Authorization: Bearer {{token}}"
	-H "Content-Type: application/json"
	-d '{
    "name":"myapp2",
    "description":"abcdefghijklmnopqrstuvwxyz",
    "url":"http://google.cd",
    "redirectUri":[],
    "grantTypes":[],
    "apiEndpoints":false
}'
https://domain.com/exchange/api/v1/organizations/{{organization_id}}/applications/895851

Postman Collection Item JSON

{
  "name": "Edit consumer app information",
  "request": {
    "method": "PATCH",
    "header": [
      {
        "key": "Authorization",
        "value": "Bearer {{token}}"
      },
      {
        "key": "Content-Type",
        "value": "application/json"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\r\n    \"name\":\"myapp2\",\r\n    \"description\":\"abcdefghijklmnopqrstuvwxyz\",\r\n    \"url\":\"http://google.cd\",\r\n    \"redirectUri\":[],\r\n    \"grantTypes\":[],\r\n    \"apiEndpoints\":false\r\n}"
    },
    "url": {
      "raw": "{{url}}/exchange/api/v1/organizations/{{organization_id}}/applications/895851",
      "host": [
        "{{url}}"
      ],
      "path": [
        "exchange",
        "api",
        "v1",
        "organizations",
        "{{organization_id}}",
        "applications",
        "895851"
      ]
    }
  },
  "response": [
  ]
}