GET api/UserMenu
사용자 메뉴 목록 얻기
Detailed Information
No documentation available.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| filter | 요청하는 Application정보 |
Define this parameter in the request URI. |
Parameter Information
filter
| Property | Description |
|---|---|
| i_AppCode (String) |
[*CRUD]Application 코드 : 요청하는 Application(Client) |
| i_IsAllPTNAccessible (Boolean) |
전체화주 접근가능 여부[true:가능, false:불가] : 사용자가 전체화주 데이터에 접근가능한지 여부 |
| i_AccessiblePartner (String) |
접근가능화주[ID, ID...] : 사용자가 접근 가능한 화주를 ','로 구분한 값(전체화주 접근불가시에만 적용) |
| i_IsPaged (String) |
pagination 사용여부 : pagination 사용시 true |
| i_CurrentPage (Int32) |
현재 페이지 번호(pagination 사용시) |
| i_ItemsPerPage (Int32) |
페이지별 표시할 row개수(pagination 사용시) |
| i_SortColumn (String) |
정렬 필드(pagination 사용시) |
| i_SortReverse (String) |
정렬 방향(pagination 사용시) : 오름차순=false, 내림차순=true |
Response Information
반환 값:
성공
200(OK) : 사용자메뉴목록 반환 -> IEnumerable<UserMenu>
실패
400(데이터 요청시 예외발생)
403(권한없음)
Response body formats
application/json, text/json
Sample:
{
"MNU_ID": 1,
"MNU_Depth": 1,
"MNU_Name": "sample string 2",
"MNU_MNU_ID": 1,
"PAGE_Class": "sample string 3"
}
application/xml, text/xml
Sample:
<UserMenu xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MagicLamp.Model.Model.OMM"> <MNU_Depth>1</MNU_Depth> <MNU_ID>1</MNU_ID> <MNU_MNU_ID>1</MNU_MNU_ID> <MNU_Name>sample string 2</MNU_Name> <PAGE_Class>sample string 3</PAGE_Class> </UserMenu>