(Unicode C++) Xero Delete Account
Deletes an account in a Xero company (Accounting API). For more information, see https://developer.xero.com/documentation/api/accounts#DELETE
#include <CkHttpW.h>
#include <CkJsonObjectW.h>
#include <CkHttpResponseW.h>
void ChilkatSample(void)
{
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkHttpW http;
CkJsonObjectW jsonToken;
bool 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 = http.QuickRequest(L"DELETE",url);
if (http.get_LastMethodSuccess() != true) {
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());
delete resp;
}
|