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

MYOB: Get List of Company Files

See more MYOB Examples

Gets a list of company files.

Chilkat Unicode C++ Downloads

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

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

    CkHttpW http;

    http.put_AuthToken(L"ACCESS_TOKEN");

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

    http.SetRequestHeader(L"x-myobapi-key",L"MYOB_API_KEY");
    http.SetRequestHeader(L"x-myobapi-version",L"v2");

    const wchar_t *strResp = http.quickGetStr(L"https://ar1.api.myob.com/accountright");
    if (http.get_LastMethodSuccess() != true) {
        wprintf(L"%s\n",http.lastErrorText());
        return;
    }

    wprintf(L"Response Status Code: %d\n",http.get_LastStatus());

    CkJsonObjectW jsonResponse;
    jsonResponse.Load(strResp);
    jsonResponse.put_EmitCompact(false);
    wprintf(L"%s\n",jsonResponse.emit());

    if (http.get_LastStatus() != 200) {
        wprintf(L"Failed.\n");
        return;
    }

    // Sample output...
    // (See the parsing code below..)
    // 
    // Use the this online tool to generate parsing code from sample JSON: 
    // Generate Parsing Code from JSON

    // {
    //   "Id": "d2014f64-ffdf-487b-8d12-67a20976aca6",
    //   "Name": "Internal Sandbox API",
    //   "LibraryPath": "Internal Sandbox API",
    //   "ProductVersion": "2013.0",
    //   "ProductLevel": {
    //     "Code": 20,
    //     "Name": "Standard"
    //   },
    //   "CheckedOutDate": "2013-06-11T01:47:47.0065514",
    //   "CheckedOutBy": "developers@myob.com",
    //   "Uri": "{cf_uri}",
    //   "Country": "AU"
    // }
    // 

    const wchar_t *Id = 0;
    const wchar_t *Name = 0;
    const wchar_t *LibraryPath = 0;
    const wchar_t *ProductVersion = 0;
    int ProductLevelCode;
    const wchar_t *ProductLevelName = 0;
    const wchar_t *CheckedOutDate = 0;
    const wchar_t *CheckedOutBy = 0;
    const wchar_t *Uri = 0;
    const wchar_t *Country = 0;

    Id = jsonResponse.stringOf(L"Id");
    Name = jsonResponse.stringOf(L"Name");
    LibraryPath = jsonResponse.stringOf(L"LibraryPath");
    ProductVersion = jsonResponse.stringOf(L"ProductVersion");
    ProductLevelCode = jsonResponse.IntOf(L"ProductLevel.Code");
    ProductLevelName = jsonResponse.stringOf(L"ProductLevel.Name");
    CheckedOutDate = jsonResponse.stringOf(L"CheckedOutDate");
    CheckedOutBy = jsonResponse.stringOf(L"CheckedOutBy");
    Uri = jsonResponse.stringOf(L"Uri");
    Country = jsonResponse.stringOf(L"Country");
    }