Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(PHP ActiveX) MyInvois Malaysia Get Document TypesSee more Malaysia MyInvois ExamplesThere are multiple types of documents supported by MyInvois, and this API retrieves their definitions through API call. For more information, see https://sdk.myinvois.hasil.gov.my/api/03-get-document-types/
<?php // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. // For versions of Chilkat < 10.0.0, use new COM('Chilkat_9_5_0.Chilkat.Http') $http = new COM("Chilkat.Http"); // 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 // For versions of Chilkat < 10.0.0, use new COM('Chilkat_9_5_0.Chilkat.StringBuilder') $sb = new COM("Chilkat.StringBuilder"); $success = $http->QuickGetSb('https://preprod-api.myinvois.hasil.gov.my/api/v1.0/documenttypes',$sb); if ($success == 0) { print $http->LastErrorText . "\n"; exit; } $statusCode = $http->LastStatus; print 'response status code = ' . $statusCode . "\n"; if ($statusCode != 200) { // Failed. print $sb->getAsString() . "\n"; 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 // For versions of Chilkat < 10.0.0, use new COM('Chilkat_9_5_0.Chilkat.JsonObject') $json = new COM("Chilkat.JsonObject"); $json->LoadSb($sb); $i = 0; $count_i = $json->SizeOfArray('result'); while ($i < $count_i) { $json->I = $i; $id = $json->IntOf('result[i].id'); $invoiceTypeCode = $json->IntOf('result[i].invoiceTypeCode'); $description = $json->stringOf('result[i].description'); $activeFrom = $json->stringOf('result[i].activeFrom'); $activeTo = $json->stringOf('result[i].activeTo'); $j = 0; $count_j = $json->SizeOfArray('result[i].documentTypeVersions'); while ($j < $count_j) { $json->J = $j; $id = $json->IntOf('result[i].documentTypeVersions[j].id'); $name = $json->stringOf('result[i].documentTypeVersions[j].name'); $description = $json->stringOf('result[i].documentTypeVersions[j].description'); $activeFrom = $json->stringOf('result[i].documentTypeVersions[j].activeFrom'); $activeTo = $json->stringOf('result[i].documentTypeVersions[j].activeTo'); $versionNumber = $json->stringOf('result[i].documentTypeVersions[j].versionNumber'); $status = $json->stringOf('result[i].documentTypeVersions[j].status'); $j = $j + 1; } $i = $i + 1; } ?> |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.