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 <access_token>" header.
    http.put_AuthToken(L"<access_token>");
    CkHttpResponseW resp;
    success = http.HttpNoBody(L"PUT",L"https://domain.com/receiving_transactions/:id/void?fields=[\"id\"]",resp);
    if (success == false) {
        wprintf(L"%s\n",http.lastErrorText());
        return;
    }
    wprintf(L"%d\n",resp.get_StatusCode());
    wprintf(L"%s\n",resp.bodyStr());
    }
        Curl Command
        curl -X PUT
	-H "Authorization: Bearer <access_token>"
https://domain.com/receiving_transactions/:id/void?fields=["id"]
        Postman Collection Item JSON
        {
  "name": "Void Receipts using ID",
  "request": {
    "method": "PUT",
    "header": [
    ],
    "url": {
      "raw": "{{URL}}/receiving_transactions/:id/void?fields=[\"id\"]",
      "host": [
        "{{URL}}"
      ],
      "path": [
        "receiving_transactions",
        ":id",
        "void"
      ],
      "query": [
        {
          "key": "fields",
          "value": "[\"id\"]"
        }
      ],
      "variable": [
        {
          "key": "id",
          "value": "5033"
        }
      ]
    }
  },
  "response": [
  ]
}