Chilkat Online Tools

unicodeCpp / Bond APIs / update webhook

Back to Collection Items

#include <CkHttpW.h>
#include <CkJsonObjectW.h>
#include <CkStringBuilderW.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;

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

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

    // {
    //   "action": "add_events",
    //   "events": [
    //     "kyc.verification.success",
    //     "kyc.verification.failure",
    //     "kyc.verification.error",
    //     "kyc.verification.timeout",
    //     "kyc.verification.kba"
    //   ],
    //   "callback_url": "",
    //   "description": ""
    // }

    CkJsonObjectW json;
    json.UpdateString(L"action",L"add_events");
    json.UpdateString(L"events[0]",L"kyc.verification.success");
    json.UpdateString(L"events[1]",L"kyc.verification.failure");
    json.UpdateString(L"events[2]",L"kyc.verification.error");
    json.UpdateString(L"events[3]",L"kyc.verification.timeout");
    json.UpdateString(L"events[4]",L"kyc.verification.kba");
    json.UpdateString(L"callback_url",L"");
    json.UpdateString(L"description",L"");

    http.SetRequestHeader(L"Identity",L"{{identity}}");
    http.SetRequestHeader(L"Authorization",L"{{authorization}}");

    CkStringBuilderW sbRequestBody;
    json.EmitSb(sbRequestBody);

    CkHttpResponseW *resp = http.PTextSb(L"PATCH",L"https://{{environment}}.bond.tech/api/v0/webhooks/:webhook_id",sbRequestBody,L"utf-8",L"application/json",false,false);
    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 PATCH
	-H "Identity: {{identity}}"
	-H "Authorization: {{authorization}}"
	-d '{
    "action": "add_events",
    "events": [
        "kyc.verification.success",
        "kyc.verification.failure",
        "kyc.verification.error",
        "kyc.verification.timeout",
        "kyc.verification.kba"
    ],
    "callback_url": "",
    "description": ""
}'
https://{{environment}}.bond.tech/api/v0/webhooks/:webhook_id

Postman Collection Item JSON

{
  "name": "update webhook",
  "request": {
    "method": "PATCH",
    "header": [
      {
        "key": "Identity",
        "value": "{{identity}}",
        "type": "text"
      },
      {
        "key": "Authorization",
        "value": "{{authorization}}",
        "type": "text"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n    \"action\": \"add_events\",\n    \"events\": [\n        \"kyc.verification.success\",\n        \"kyc.verification.failure\",\n        \"kyc.verification.error\",\n        \"kyc.verification.timeout\",\n        \"kyc.verification.kba\"\n    ],\n    \"callback_url\": \"\",\n    \"description\": \"\"\n}",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "https://{{environment}}.bond.tech/api/v0/webhooks/:webhook_id",
      "protocol": "https",
      "host": [
        "{{environment}}",
        "bond",
        "tech"
      ],
      "path": [
        "api",
        "v0",
        "webhooks",
        ":webhook_id"
      ],
      "variable": [
        {
          "key": "webhook_id",
          "value": null
        }
      ]
    }
  },
  "response": [
    {
      "name": "example",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "key": "Identity",
            "value": "{{identity}}",
            "type": "text"
          },
          {
            "key": "Authorization",
            "value": "{{authorization}}",
            "type": "text"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"action\": \"add_events\",\n    \"events\": [\n        \"kyc.verification.success\",\n        \"kyc.verification.failure\",\n        \"kyc.verification.error\",\n        \"kyc.verification.timeout\",\n        \"kyc.verification.kba\"\n    ],\n    \"callback_url\": \"http://bond.tech\",\n    \"description\": \"KYC Event listener\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "https://{{environment}}.bond.tech/api/v0/webhooks/:webhook_id",
          "protocol": "https",
          "host": [
            "{{environment}}",
            "bond",
            "tech"
          ],
          "path": [
            "api",
            "v0",
            "webhooks",
            ":webhook_id"
          ],
          "variable": [
            {
              "key": "webhook_id",
              "value": null
            }
          ]
        }
      },
      "_postman_previewlanguage": "json",
      "header": null,
      "cookie": [
      ],
      "body": "{\n  \"date_created\": \"2020-11-17T11:13:06.568119\",\n  \"webhook_id\": \"522e9ec7-b17d-4d92-8270-c2e1741dd6e0\",\n  \"callback_url\": \"https://hostname.com/webhook/route\",\n  \"description\": \"KYC state changes.\",\n  \"events\": [\n    \"kyc.verification.success\",\n    \"kyc.verification.failure\",\n    \"kyc.verification.kba\",\n    \"kyc.verification.error\",\n    \"kyc.verification.timeout\"\n  ],\n  \"status\": \"enabled\",\n  \"secret\": \"whsec_XqTEJtniwuEhp0A1c1cTJNsmpR/qgOfB\"\n}"
    }
  ]
}