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:
{
  "fefc5443-9923-4045-96f7-5da603735f6c": "sample string 2",
  "51795c8f-7f49-4eff-9f69-3b0546a1f35a": "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>fefc5443-9923-4045-96f7-5da603735f6c</Key>
    <Value>sample string 2</Value>
  </KeyValueOfguidstring>
  <KeyValueOfguidstring>
    <Key>51795c8f-7f49-4eff-9f69-3b0546a1f35a</Key>
    <Value>sample string 4</Value>
  </KeyValueOfguidstring>
</ArrayOfKeyValueOfguidstring>