Lianja
Lianja
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 Lianja Downloads
llSuccess = .F.
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
loHttp = createobject("CkHttp")
// Adds the "Authorization: Bearer <access_token>" header.
loHttp.AuthToken = "<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
loSb = createobject("CkStringBuilder")
llSuccess = loHttp.QuickGetSb("https://preprod-api.myinvois.hasil.gov.my/api/v1.0/documenttypes",loSb)
if (llSuccess = .F.) then
? loHttp.LastErrorText
release loHttp
release loSb
return
endif
lnStatusCode = loHttp.LastStatus
? "response status code = " + str(lnStatusCode)
if (lnStatusCode <> 200) then
// Failed.
? loSb.GetAsString()
release loHttp
release loSb
return
endif
// 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
loJson = createobject("CkJsonObject")
loJson.LoadSb(loSb)
i = 0
lnCount_i = loJson.SizeOfArray("result")
do while i < lnCount_i
loJson.I = i
lnId = loJson.IntOf("result[i].id")
lnInvoiceTypeCode = loJson.IntOf("result[i].invoiceTypeCode")
lcDescription = loJson.StringOf("result[i].description")
lcActiveFrom = loJson.StringOf("result[i].activeFrom")
lcActiveTo = loJson.StringOf("result[i].activeTo")
j = 0
lnCount_j = loJson.SizeOfArray("result[i].documentTypeVersions")
do while j < lnCount_j
loJson.J = j
lnId = loJson.IntOf("result[i].documentTypeVersions[j].id")
lcName = loJson.StringOf("result[i].documentTypeVersions[j].name")
lcDescription = loJson.StringOf("result[i].documentTypeVersions[j].description")
lcActiveFrom = loJson.StringOf("result[i].documentTypeVersions[j].activeFrom")
lcActiveTo = loJson.StringOf("result[i].documentTypeVersions[j].activeTo")
lcVersionNumber = loJson.StringOf("result[i].documentTypeVersions[j].versionNumber")
lcStatus = loJson.StringOf("result[i].documentTypeVersions[j].status")
j = j + 1
enddo
i = i + 1
enddo
release loHttp
release loSb
release loJson