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:
{
  "85c58a06-7c7f-41d2-807b-f24fe48f0973": "sample string 2",
  "0c2a8fa5-70be-4efd-b78d-74a9771f54bc": "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>85c58a06-7c7f-41d2-807b-f24fe48f0973</Key>
    <Value>sample string 2</Value>
  </KeyValueOfguidstring>
  <KeyValueOfguidstring>
    <Key>0c2a8fa5-70be-4efd-b78d-74a9771f54bc</Key>
    <Value>sample string 4</Value>
  </KeyValueOfguidstring>
</ArrayOfKeyValueOfguidstring>