GET api/User/GetMenu?USERID={USERID}

Documentation for 'GetMenu'.

Request Information

Parameters

NameDescriptionAdditional information
USERID
Documentation for 'USERID'.

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "success": true,
  "message": "sample string 2",
  "data": [
    {
      "MENUNAME": "sample string 1",
      "MENUID": "sample string 2",
      "PAGENAME": "sample string 3",
      "PAGEURL": "sample string 4",
      "BASEURL": "sample string 5",
      "MENUFONTCOLOR": "sample string 6",
      "MENUBACKCOLOR": "sample string 7",
      "MENUICONURL": "sample string 8",
      "SUBMENU": true
    },
    {
      "MENUNAME": "sample string 1",
      "MENUID": "sample string 2",
      "PAGENAME": "sample string 3",
      "PAGEURL": "sample string 4",
      "BASEURL": "sample string 5",
      "MENUFONTCOLOR": "sample string 6",
      "MENUBACKCOLOR": "sample string 7",
      "MENUICONURL": "sample string 8",
      "SUBMENU": true
    },
    {
      "MENUNAME": "sample string 1",
      "MENUID": "sample string 2",
      "PAGENAME": "sample string 3",
      "PAGEURL": "sample string 4",
      "BASEURL": "sample string 5",
      "MENUFONTCOLOR": "sample string 6",
      "MENUBACKCOLOR": "sample string 7",
      "MENUICONURL": "sample string 8",
      "SUBMENU": true
    }
  ]
}

application/xml, text/xml

Sample:
<BindMenu xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VCLCYL.API.Models">
  <data>
    <lstMenu>
      <BASEURL>sample string 5</BASEURL>
      <MENUBACKCOLOR>sample string 7</MENUBACKCOLOR>
      <MENUFONTCOLOR>sample string 6</MENUFONTCOLOR>
      <MENUICONURL>sample string 8</MENUICONURL>
      <MENUID>sample string 2</MENUID>
      <MENUNAME>sample string 1</MENUNAME>
      <PAGENAME>sample string 3</PAGENAME>
      <PAGEURL>sample string 4</PAGEURL>
      <SUBMENU>true</SUBMENU>
    </lstMenu>
    <lstMenu>
      <BASEURL>sample string 5</BASEURL>
      <MENUBACKCOLOR>sample string 7</MENUBACKCOLOR>
      <MENUFONTCOLOR>sample string 6</MENUFONTCOLOR>
      <MENUICONURL>sample string 8</MENUICONURL>
      <MENUID>sample string 2</MENUID>
      <MENUNAME>sample string 1</MENUNAME>
      <PAGENAME>sample string 3</PAGENAME>
      <PAGEURL>sample string 4</PAGEURL>
      <SUBMENU>true</SUBMENU>
    </lstMenu>
    <lstMenu>
      <BASEURL>sample string 5</BASEURL>
      <MENUBACKCOLOR>sample string 7</MENUBACKCOLOR>
      <MENUFONTCOLOR>sample string 6</MENUFONTCOLOR>
      <MENUICONURL>sample string 8</MENUICONURL>
      <MENUID>sample string 2</MENUID>
      <MENUNAME>sample string 1</MENUNAME>
      <PAGENAME>sample string 3</PAGENAME>
      <PAGEURL>sample string 4</PAGEURL>
      <SUBMENU>true</SUBMENU>
    </lstMenu>
  </data>
  <message>sample string 2</message>
  <success>true</success>
</BindMenu>