Chilkat Online Tools

unicodeCpp / Anypoint Platform APIs / Reset client secret for consumer app

Back to Collection Items

#include <CkHttpW.h>
#include <CkHttpResponseW.h>

void ChilkatSample(void)
    {
    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    CkHttpW http;
    bool success;

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

    CkHttpResponseW *resp = http.QuickRequest(L"POST",L"https://domain.com/exchange/api/v1/organizations/{{organization_id}}/applications/895851/secret/reset");
    if (http.get_LastMethodSuccess() == false) {
        wprintf(L"%s\n",http.lastErrorText());
        return;
    }

    wprintf(L"%d\n",resp->get_StatusCode());
    wprintf(L"%s\n",resp->bodyStr());
    delete resp;
    }

Curl Command

curl -X POST
	-H "Authorization: Bearer {{token}}"
	-H "Content-Type: application/json"
https://domain.com/exchange/api/v1/organizations/{{organization_id}}/applications/895851/secret/reset

Postman Collection Item JSON

{
  "name": "Reset client secret for consumer app",
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Authorization",
        "value": "Bearer {{token}}"
      },
      {
        "key": "Content-Type",
        "value": "application/json"
      }
    ],
    "url": {
      "raw": "{{url}}/exchange/api/v1/organizations/{{organization_id}}/applications/895851/secret/reset",
      "host": [
        "{{url}}"
      ],
      "path": [
        "exchange",
        "api",
        "v1",
        "organizations",
        "{{organization_id}}",
        "applications",
        "895851",
        "secret",
        "reset"
      ]
    }
  },
  "response": [
  ]
}