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:
{
  "171c9324-ee85-45df-aeb2-81c4ba5e99fa": "sample string 2",
  "da0e3364-dddd-4956-9df0-1eb97934df40": "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>171c9324-ee85-45df-aeb2-81c4ba5e99fa</Key>
    <Value>sample string 2</Value>
  </KeyValueOfguidstring>
  <KeyValueOfguidstring>
    <Key>da0e3364-dddd-4956-9df0-1eb97934df40</Key>
    <Value>sample string 4</Value>
  </KeyValueOfguidstring>
</ArrayOfKeyValueOfguidstring>