Skip to content

Retrieve Master Data

Ks Tan edited this page Nov 7, 2018 · 12 revisions

After you login the api, you can use the api token to fetch master list from simbiz. The sample nvp (name-value pair) api url as below:

http(s)://simbiz_system_url/office6/simit/simbiz/api.php?uid=uid&module=accounting&action=getcurrencies&token=apitoken

The sample result as below:

{
    "status":"OK",
    "msg":"",
    "data":
    {
	    "GBP":{"currency_code":"GBP"},
	    "MYR":{"currency_code":"MYR"},
	    "SGD":{"currency_code":"SGD"},
	    "TWD":{"currency_code":"TWD"},
	    "USD":{"currency_code":"USD"}
    }
}

To retrieve others info, we can substitute module and action to others parameter as below table:

module action description
accounting getcountries Get list of countries

Clone this wiki locally