Swift
Swift
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 Swift Downloads
func chilkatTest() {
var success: Bool = false
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let http = CkoHttp()!
// Adds the "Authorization: Bearer <access_token>" header.
http.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
let sb = CkoStringBuilder()!
success = http.quickGetSb(url: "https://preprod-api.myinvois.hasil.gov.my/api/v1.0/documenttypes", sbContent: sb)
if success == false {
print("\(http.lastErrorText!)")
return
}
var statusCode: Int = http.lastStatus.intValue
print("response status code = \(statusCode)")
if statusCode != 200 {
// Failed.
print("\(sb.getAsString()!)")
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
let json = CkoJsonObject()!
json.loadSb(sb: sb)
var id: Int
var invoiceTypeCode: Int
var description: String?
var activeFrom: String?
var activeTo: String?
var j: Int
var count_j: Int
var name: String?
var versionNumber: String?
var status: String?
var i: Int = 0
var count_i: Int = json.size(ofArray: "result").intValue
while i < count_i {
json.i = i
id = json.int(of: "result[i].id").intValue
invoiceTypeCode = json.int(of: "result[i].invoiceTypeCode").intValue
description = json.string(of: "result[i].description")
activeFrom = json.string(of: "result[i].activeFrom")
activeTo = json.string(of: "result[i].activeTo")
j = 0
count_j = json.size(ofArray: "result[i].documentTypeVersions").intValue
while j < count_j {
json.j = j
id = json.int(of: "result[i].documentTypeVersions[j].id").intValue
name = json.string(of: "result[i].documentTypeVersions[j].name")
description = json.string(of: "result[i].documentTypeVersions[j].description")
activeFrom = json.string(of: "result[i].documentTypeVersions[j].activeFrom")
activeTo = json.string(of: "result[i].documentTypeVersions[j].activeTo")
versionNumber = json.string(of: "result[i].documentTypeVersions[j].versionNumber")
status = json.string(of: "result[i].documentTypeVersions[j].status")
j = j + 1
}
i = i + 1
}
}