Chilkat Online Tools

unicodeC / Salesforce Platform APIs / Delete Credential

Back to Collection Items

#include <C_CkHttpW.h>
#include <C_CkJsonObjectW.h>
#include <C_CkStringBuilderW.h>
#include <C_CkHttpResponseW.h>

void ChilkatSample(void)
    {
    HCkHttpW http;
    BOOL success;
    HCkJsonObjectW json;
    HCkStringBuilderW sbRequestBody;
    HCkHttpResponseW resp;

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

    http = CkHttpW_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.

    // {
    //   "externalCredential": "SampleExternalCredential",
    //   "principalType": "NamedPrincipal",
    //   "principalName": "SamplePrincipal"
    // }

    json = CkJsonObjectW_Create();
    CkJsonObjectW_UpdateString(json,L"externalCredential",L"SampleExternalCredential");
    CkJsonObjectW_UpdateString(json,L"principalType",L"NamedPrincipal");
    CkJsonObjectW_UpdateString(json,L"principalName",L"SamplePrincipal");

    // Adds the "Authorization: Bearer <access_token>" header.
    CkHttpW_putAuthToken(http,L"<access_token>");

    sbRequestBody = CkStringBuilderW_Create();
    CkJsonObjectW_EmitSb(json,sbRequestBody);

    resp = CkHttpW_PTextSb(http,L"DELETE",L"https://domain.com/services/data/v{{version}}/named-credentials/credential",sbRequestBody,L"utf-8",L"application/json",FALSE,FALSE);
    if (CkHttpW_getLastMethodSuccess(http) == FALSE) {
        wprintf(L"%s\n",CkHttpW_lastErrorText(http));
        CkHttpW_Dispose(http);
        CkJsonObjectW_Dispose(json);
        CkStringBuilderW_Dispose(sbRequestBody);
        return;
    }

    wprintf(L"%d\n",CkHttpResponseW_getStatusCode(resp));
    wprintf(L"%s\n",CkHttpResponseW_bodyStr(resp));
    CkHttpResponseW_Dispose(resp);


    CkHttpW_Dispose(http);
    CkJsonObjectW_Dispose(json);
    CkStringBuilderW_Dispose(sbRequestBody);

    }

Curl Command

curl -X DELETE
	-H "Authorization: Bearer <access_token>"
	-d '{
    "externalCredential": "SampleExternalCredential",
    "principalType": "NamedPrincipal",
    "principalName": "SamplePrincipal"
}'
https://domain.com/services/data/v{{version}}/named-credentials/credential

Postman Collection Item JSON

{
  "name": "Delete Credential",
  "request": {
    "method": "DELETE",
    "header": [
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n    \"externalCredential\": \"SampleExternalCredential\",\n    \"principalType\": \"NamedPrincipal\",\n    \"principalName\": \"SamplePrincipal\"\n}",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{_endpoint}}/services/data/v{{version}}/named-credentials/credential",
      "host": [
        "{{_endpoint}}"
      ],
      "path": [
        "services",
        "data",
        "v{{version}}",
        "named-credentials",
        "credential"
      ]
    },
    "description": "Delete a credential."
  },
  "response": [
  ]
}