On this Work Structure Organization page you can use the method :
1. GET
- Get List of Organizations based on active parameter
Objective : To get a list of company organizations based on active parameters
Method : GET
API Endpoint : [[baseurl]]/api/integration/v1/organizations?active=[[value]]
๐Notes Parameter [[value]] filled with “true” If the company's organizational data is active or “false” If the company's organizational data is not active.
HEADER
X-TenantID: [[tenantid]]
Authorization: Bearer [[accesstoken]]
CONSUME VIA CURL
curl --location --request GET '[[baseurl]]/api/integration/v1/organizations?active=[[value]]'
--header 'X-TenantID: [[tenantid]]'
--header 'Authorization: Bearer [[accesstoken]]'
๐Notes To find out [[baseurl]], And [[tenantid]], You can learn about it on the page Integration Credential. And for [[accesstoken]] can be studied on the page Authorization Token.
API Response :
[
{
"id": "5dc75430-a05c-11ec-b8ff-560003594849",
"name": "Area Operation - Jakarta",
"description": "Area Operation - Jakarta",
"parentId": "5dc71f29-a05c-11ec-b8ff-560003594849",
"parentName": "Operation Division",
"organizationLevelId": "5dc6bb61-a05c-11ec-b8ff-560003594849",
"organizationLevelName": "Department",
"active": true
},
{
"id": "5dc75892-a05c-11ec-b8ff-560003594849",
"name": "Area Operation - Tangerang",
"description": "Area Operation - Tangerang",
"parentId": "5dc71f29-a05c-11ec-b8ff-560003594849",
"parentName": "Operation Division",
"organizationLevelId": "5dc6bb61-a05c-11ec-b8ff-560003594849",
"organizationLevelName": "Department",
"active": true
}
]