Returns the organization structure the caller belongs to.
Notes:
curl --request GET \
--url https://api.lofty.com/v1.0/org \
--header 'Authorization: <authorization>'{
"orgType": 123,
"enterpriseInfo": {
"groupId": 123,
"groupName": "<string>",
"profileId": 123,
"profileName": "<string>",
"visibleOrgInfoList": [
{
"groupId": 123,
"groupName": "<string>",
"parentId": 123
}
]
},
"multiTeamInfo": {
"multiTeamId": 123,
"multiTeamName": "<string>"
}
}Documentation Index
Fetch the complete documentation index at: https://developer.lofty.com/llms.txt
Use this file to discover all available pages before exploring further.
Bearer [access_token]
Organization info for the caller.
Organization type
If the client is on the "Enterprise Package," the enterprise organization structure will be returned. Refer to "EnterpriseInfo."
Show child attributes
If the client is on the "Multi-Team Package," the Multi-Team info will be returned.
Show child attributes
curl --request GET \
--url https://api.lofty.com/v1.0/org \
--header 'Authorization: <authorization>'{
"orgType": 123,
"enterpriseInfo": {
"groupId": 123,
"groupName": "<string>",
"profileId": 123,
"profileName": "<string>",
"visibleOrgInfoList": [
{
"groupId": 123,
"groupName": "<string>",
"parentId": 123
}
]
},
"multiTeamInfo": {
"multiTeamId": 123,
"multiTeamName": "<string>"
}
}