Sample code for 30+ languages & platforms
Tcl

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 Tcl Downloads

Tcl

load ./chilkat.dll

set success 0

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

set http [new_CkHttp]

# Adds the "Authorization: Bearer <access_token>" header.
CkHttp_put_AuthToken $http "<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

set sb [new_CkStringBuilder]

set success [CkHttp_QuickGetSb $http "https://preprod-api.myinvois.hasil.gov.my/api/v1.0/documenttypes" $sb]
if {$success == 0} then {
    puts [CkHttp_lastErrorText $http]
    delete_CkHttp $http
    delete_CkStringBuilder $sb
    exit
}

set statusCode [CkHttp_get_LastStatus $http]
puts "response status code = $statusCode"

if {$statusCode != 200} then {
    # Failed.
    puts [CkStringBuilder_getAsString $sb]
    delete_CkHttp $http
    delete_CkStringBuilder $sb
    exit
}

# 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

set json [new_CkJsonObject]

CkJsonObject_LoadSb $json $sb

set i 0
set count_i [CkJsonObject_SizeOfArray $json "result"]
while {$i < $count_i} {
    CkJsonObject_put_I $json $i
    set id [CkJsonObject_IntOf $json "result[i].id"]
    set invoiceTypeCode [CkJsonObject_IntOf $json "result[i].invoiceTypeCode"]
    set description [CkJsonObject_stringOf $json "result[i].description"]
    set activeFrom [CkJsonObject_stringOf $json "result[i].activeFrom"]
    set activeTo [CkJsonObject_stringOf $json "result[i].activeTo"]
    set j 0
    set count_j [CkJsonObject_SizeOfArray $json "result[i].documentTypeVersions"]
    while {$j < $count_j} {
        CkJsonObject_put_J $json $j
        set id [CkJsonObject_IntOf $json "result[i].documentTypeVersions[j].id"]
        set name [CkJsonObject_stringOf $json "result[i].documentTypeVersions[j].name"]
        set description [CkJsonObject_stringOf $json "result[i].documentTypeVersions[j].description"]
        set activeFrom [CkJsonObject_stringOf $json "result[i].documentTypeVersions[j].activeFrom"]
        set activeTo [CkJsonObject_stringOf $json "result[i].documentTypeVersions[j].activeTo"]
        set versionNumber [CkJsonObject_stringOf $json "result[i].documentTypeVersions[j].versionNumber"]
        set status [CkJsonObject_stringOf $json "result[i].documentTypeVersions[j].status"]
        set j [expr $j + 1]
    }
    set i [expr $i + 1]
}

delete_CkHttp $http
delete_CkStringBuilder $sb
delete_CkJsonObject $json