POST api/mobile/getbusinessunits

Get business units list for current user

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Dictionary(Guid.String) Business Unit List

Dictionary of globally unique identifier [key] and string [value]

Response Formats

application/json, text/json

Sample:
{
  "9023ee10-eb62-4ff7-ac01-e2e6ee22eb3d": "sample string 2",
  "1198f407-2594-4829-a0dd-368ac582b46c": "sample string 4"
}

application/xml, text/xml

Sample:
<ArrayOfKeyValueOfguidstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
  <KeyValueOfguidstring>
    <Key>9023ee10-eb62-4ff7-ac01-e2e6ee22eb3d</Key>
    <Value>sample string 2</Value>
  </KeyValueOfguidstring>
  <KeyValueOfguidstring>
    <Key>1198f407-2594-4829-a0dd-368ac582b46c</Key>
    <Value>sample string 4</Value>
  </KeyValueOfguidstring>
</ArrayOfKeyValueOfguidstring>