Skip to content

Get Organization

liqian-simit edited this page Sep 3, 2019 · 1 revision

Get Organization

There are two methods to retrieve the system organization from the SIMBIZ system.

This action will list out all the organization that the user can access.

  1. Using URL

http(s)://simbiz_system_url/api.php?uid=__uid__&module=simantz&action=getOrganizationList&token=__Token__

  1. Using CURL in the terminal console
curl --header "Content-Type: application/x-www-form-urlencoded" \
--request POST \
--data '
{
	"action":"getOrganizationList",
	"module":"simantz",
	"token":"simit_5d6c867398a91-75539",
	"uid":"admin"
}
' \
https://simbiz_system_url/simbiz/api.php
Clone this wiki locally