Sample code for 30+ languages & platforms
Unicode C

MyInvois Malaysia Get Document Types

See more Malaysia MyInvois Examples

There are multiple types of documents supported by MyInvois, and this API retrieves their definitions through API call.

Chilkat Unicode C Downloads

Unicode C
#include <C_CkHttpW.h>
#include <C_CkStringBuilderW.h>
#include <C_CkJsonObjectW.h>

void ChilkatSample(void)
    {
    BOOL success;
    HCkHttpW http;
    HCkStringBuilderW sb;
    int statusCode;
    HCkJsonObjectW json;
    int id;
    int invoiceTypeCode;
    const wchar_t *description;
    const wchar_t *activeFrom;
    const wchar_t *activeTo;
    int j;
    int count_j;
    const wchar_t *name;
    const wchar_t *versionNumber;
    const wchar_t *status;
    int i;
    int count_i;

    success = FALSE;

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

    http = CkHttpW_Create();

    // Adds the "Authorization: Bearer <access_token>" header.
    CkHttpW_putAuthToken(http,L"<access_token>");

    // Note: The access token is valid for a short amount of time.  Perhaps 1 hour.
    // The access token is used in the "Authorization: Bearer <access_token>" header in subsequent requests until it expires.
    // Your application would then need to get a new access token, and so on..
    // To get an access token, see How to Get a MyInvois Access Token

    sb = CkStringBuilderW_Create();
    success = CkHttpW_QuickGetSb(http,L"https://preprod-api.myinvois.hasil.gov.my/api/v1.0/documenttypes",sb);
    if (success == FALSE) {
        wprintf(L"%s\n",CkHttpW_lastErrorText(http));
        CkHttpW_Dispose(http);
        CkStringBuilderW_Dispose(sb);
        return;
    }

    statusCode = CkHttpW_getLastStatus(http);
    wprintf(L"response status code = %d\n",statusCode);

    if (statusCode != 200) {
        // Failed.
        wprintf(L"%s\n",CkStringBuilderW_getAsString(sb));
        CkHttpW_Dispose(http);
        CkStringBuilderW_Dispose(sb);
        return;
    }

    // Sample response:

    // {"result":
    //       [
    //          {"id":45,
    //             "invoiceTypeCode":4,
    //             "description":"Invoice",
    //             "activeFrom":"2015-02-13T13:15:00Z",
    //             "activeTo":"2027-03-01T00:00:00Z",
    //             "documentTypeVersions":
    //             [
    //                {"id":454,
    //                 "name":"1.0",
    //                 "description":"Invoice version 1.1",
    //                 "activeFrom":"2015-02-13T13:15:00Z",
    //                 "activeTo":"2027-03-01T00:00:00Z",
    //                 "versionNumber":1.1,
    //                 "status":"published"
    //                }
    //             ]
    //           }
    //       ]
    // }

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

    json = CkJsonObjectW_Create();
    CkJsonObjectW_LoadSb(json,sb);

    i = 0;
    count_i = CkJsonObjectW_SizeOfArray(json,L"result");
    while (i < count_i) {
        CkJsonObjectW_putI(json,i);
        id = CkJsonObjectW_IntOf(json,L"result[i].id");
        invoiceTypeCode = CkJsonObjectW_IntOf(json,L"result[i].invoiceTypeCode");
        description = CkJsonObjectW_stringOf(json,L"result[i].description");
        activeFrom = CkJsonObjectW_stringOf(json,L"result[i].activeFrom");
        activeTo = CkJsonObjectW_stringOf(json,L"result[i].activeTo");
        j = 0;
        count_j = CkJsonObjectW_SizeOfArray(json,L"result[i].documentTypeVersions");
        while (j < count_j) {
            CkJsonObjectW_putJ(json,j);
            id = CkJsonObjectW_IntOf(json,L"result[i].documentTypeVersions[j].id");
            name = CkJsonObjectW_stringOf(json,L"result[i].documentTypeVersions[j].name");
            description = CkJsonObjectW_stringOf(json,L"result[i].documentTypeVersions[j].description");
            activeFrom = CkJsonObjectW_stringOf(json,L"result[i].documentTypeVersions[j].activeFrom");
            activeTo = CkJsonObjectW_stringOf(json,L"result[i].documentTypeVersions[j].activeTo");
            versionNumber = CkJsonObjectW_stringOf(json,L"result[i].documentTypeVersions[j].versionNumber");
            status = CkJsonObjectW_stringOf(json,L"result[i].documentTypeVersions[j].status");
            j = j + 1;
        }

        i = i + 1;
    }



    CkHttpW_Dispose(http);
    CkStringBuilderW_Dispose(sb);
    CkJsonObjectW_Dispose(json);

    }