GET orgStructure/get?Structure={Structure}&Token={Token}

Retrieve organization structure detail data from the system. Application privilege "View" for licensed agenda "Organizational structure" required. Data may also be restricted by record permission "View" of agenda "Organizational structure"

Request Information

Authorization

  • Authorization by token required

Availability

  • Method disabled by configuration

URI Parameters

NameDescriptionTypeAdditional information
Structure

The unique identification of the organization structure unit in the system. The format should be following: "Organization structure - Company ABC - Office 123"

string

Required

Token

The action is authorized by this token. Token should generated by calling action "POST login". Expiration time of each token is 20 seconds

globally unique identifier

Required

Body Parameters

None.

Response Information

Response Codes

Http CodeError NumberDescription
200 request succesfully done 0 Successfully done
400 bad request 1002 Entry parameter missing or parameter bindigs failed
401 unauthorized 1000 Token {0} not found
401 unauthorized 1001 Token {0} already expired
401 unauthorized 1006 Ip filter violated for ip client address [{0}]
401 unauthorized 1007 Ip filter [{0}] parsing failed
401 unauthorized 1008 Request rate policy violated for [{0}]
403 server refuses fo fulfill the request 1161 Privilege View of agenda Organizational structure violated for [{0}]
403 server refuses fo fulfill the request 1168 Record permission View of agenda Organizational structure violated for [{0}]
404 required resource does not exist on the server 1160 Organization structure [{0}] not found
415 unsupported Media Type The request entity has a media type which the server or resource does not support. Only application/json and application/xml are supported
500 internal error Server exception description

Resource Description

BaseRespOfOrgStructureGetResp
NameDescriptionTypeAdditional information
Result

RequestResult

None.

Request

OrgStructureGetResp

None.

Response Formats

application/json

Sample:
{"Structure":"Organization structure - Company ABB - Office 123","Title":"Office 123","Desc":"Short description of the organization structure unit Office 123","ParentUnit":"Organization structure - Company ABB","Type":"Offices","Shortcut":null,"TimeLastChange":"\/Date(1729228394652)\/","UdsCollection":null}

application/xml

Sample:

<Response>
  <Structure>Organization structure - Company ABB - Office 123</Structure>
  <Title>Office 123</Title>
  <Desc>Short description of the organization structure unit Office 123</Desc>
  <Type>Offices</Type>
  <TimeLastChange>2024-10-18T05:13:14.6528681Z</TimeLastChange>
</Response>

text/json

Sample:
{
  "Result": {
    "Message": "sample string 1",
    "Code": 2,
    "ModelStateErr": [
      "sample string 1",
      "sample string 2"
    ]
  },
  "Request": {
    "Structure": "sample string 1",
    "UdsCollection": [
      {
        "SystemName": "sample string 1",
        "Name": "sample string 2",
        "Value": "sample string 3",
        "IsExtern": 4,
        "DataType": "sample string 5"
      },
      {
        "SystemName": "sample string 1",
        "Name": "sample string 2",
        "Value": "sample string 3",
        "IsExtern": 4,
        "DataType": "sample string 5"
      }
    ]
  }
}

text/xml

Sample:
<Response xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Result>
    <Message>sample string 1</Message>
    <Code>2</Code>
    <ModelStateErr>
      <string>sample string 1</string>
      <string>sample string 2</string>
    </ModelStateErr>
  </Result>
  <Request>
    <Structure>sample string 1</Structure>
    <UdsCollection>
      <UdsOut>
        <SystemName>sample string 1</SystemName>
        <Name>sample string 2</Name>
        <Value>sample string 3</Value>
        <IsExtern>4</IsExtern>
        <DataType>sample string 5</DataType>
      </UdsOut>
      <UdsOut>
        <SystemName>sample string 1</SystemName>
        <Name>sample string 2</Name>
        <Value>sample string 3</Value>
        <IsExtern>4</IsExtern>
        <DataType>sample string 5</DataType>
      </UdsOut>
    </UdsCollection>
  </Request>
</Response>