GET api/dashboard/get-user-menu

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of MenuDTO
NameDescriptionTypeAdditional information
Id

integer

None.

SubScreenId

integer

None.

Code

string

None.

Name

string

None.

ImagePath

string

None.

NavigationPath

string

None.

IsSubModule

boolean

None.

CanAdd

boolean

None.

CanDelete

boolean

None.

CanEdit

boolean

None.

CanPrint

boolean

None.

CanExport

boolean

None.

CanUpload

boolean

None.

CanView

boolean

None.

IsModuleAccess

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "SubScreenId": 1,
    "Code": "sample string 2",
    "Name": "sample string 3",
    "ImagePath": "sample string 4",
    "NavigationPath": "sample string 5",
    "IsSubModule": true,
    "CanAdd": true,
    "CanDelete": true,
    "CanEdit": true,
    "CanPrint": true,
    "CanExport": true,
    "CanUpload": true,
    "CanView": true,
    "IsModuleAccess": true
  },
  {
    "Id": 1,
    "SubScreenId": 1,
    "Code": "sample string 2",
    "Name": "sample string 3",
    "ImagePath": "sample string 4",
    "NavigationPath": "sample string 5",
    "IsSubModule": true,
    "CanAdd": true,
    "CanDelete": true,
    "CanEdit": true,
    "CanPrint": true,
    "CanExport": true,
    "CanUpload": true,
    "CanView": true,
    "IsModuleAccess": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfMenuDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SUM.Prod.RS.Common.Components.DTO.Dashboard">
  <MenuDTO>
    <CanAdd>true</CanAdd>
    <CanDelete>true</CanDelete>
    <CanEdit>true</CanEdit>
    <CanExport>true</CanExport>
    <CanPrint>true</CanPrint>
    <CanUpload>true</CanUpload>
    <CanView>true</CanView>
    <Code>sample string 2</Code>
    <Id>1</Id>
    <ImagePath>sample string 4</ImagePath>
    <IsModuleAccess>true</IsModuleAccess>
    <IsSubModule>true</IsSubModule>
    <Name>sample string 3</Name>
    <NavigationPath>sample string 5</NavigationPath>
    <SubScreenId>1</SubScreenId>
  </MenuDTO>
  <MenuDTO>
    <CanAdd>true</CanAdd>
    <CanDelete>true</CanDelete>
    <CanEdit>true</CanEdit>
    <CanExport>true</CanExport>
    <CanPrint>true</CanPrint>
    <CanUpload>true</CanUpload>
    <CanView>true</CanView>
    <Code>sample string 2</Code>
    <Id>1</Id>
    <ImagePath>sample string 4</ImagePath>
    <IsModuleAccess>true</IsModuleAccess>
    <IsSubModule>true</IsSubModule>
    <Name>sample string 3</Name>
    <NavigationPath>sample string 5</NavigationPath>
    <SubScreenId>1</SubScreenId>
  </MenuDTO>
</ArrayOfMenuDTO>