Sample code for 30+ languages & platforms
Unicode C++

Xero Delete Account

See more Xero Examples

Deletes an account in a Xero company (Accounting API).

Chilkat Unicode C++ Downloads

Unicode C++
#include <CkHttpW.h>
#include <CkJsonObjectW.h>
#include <CkHttpResponseW.h>

void ChilkatSample(void)
    {
    bool success = false;

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

    CkHttpW http;

    CkJsonObjectW jsonToken;
    success = jsonToken.LoadFile(L"qa_data/tokens/xero-access-token.json");
    if (success == false) {
        wprintf(L"%s\n",jsonToken.lastErrorText());
        return;
    }

    http.put_AuthToken(jsonToken.stringOf(L"access_token"));

    // Replace the value here with an actual tenant ID obtained from this example:
    // Get Xero Tenant IDs
    http.SetRequestHeader(L"Xero-tenant-id",L"83299b9e-5747-4a14-a18a-a6c94f824eb7");

    http.put_Accept(L"application/json");

    const wchar_t *url = L"https://api.xero.com/api.xro/2.0/Accounts/54ddab14-4a8d-45cf-86be-076c99a0cea0";

    CkHttpResponseW resp;
    success = http.HttpNoBody(L"DELETE",url,resp);
    if (success == false) {
        wprintf(L"%s\n",http.lastErrorText());
        return;
    }

    // A 200 status code indicates success.
    wprintf(L"Response Status Code: %d\n",resp.get_StatusCode());
    wprintf(L"Response Body:\n");
    wprintf(L"%s\n",resp.bodyStr());
    }