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:
{
  "b1a3c6ac-1953-4e26-9f8a-df58547d6ede": "sample string 2",
  "f0251126-e151-4d3e-815f-90f2005ad59f": "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>b1a3c6ac-1953-4e26-9f8a-df58547d6ede</Key>
    <Value>sample string 2</Value>
  </KeyValueOfguidstring>
  <KeyValueOfguidstring>
    <Key>f0251126-e151-4d3e-815f-90f2005ad59f</Key>
    <Value>sample string 4</Value>
  </KeyValueOfguidstring>
</ArrayOfKeyValueOfguidstring>