GET me/views/networks/{id}/menu
Get the menu view model for a member in school
Request Information
Parameters
Name | Description | Additional information |
---|---|---|
id | school id |
Define this parameter in the request URI. |
Response Information
Response body formats
application/json, text/json
Sample:
{ "show_edit_game_score": true, "show_send_message": true, "show_add_player": true }
application/xml, text/xml
Sample:
<MenuVMDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/imLeagues.Web.API.Models.Output"> <show_add_player>true</show_add_player> <show_edit_game_score>true</show_edit_game_score> <show_send_message>true</show_send_message> </MenuVMDto>
multipart/form-data
Sample:
--MultipartDataMediaFormatterBoundary1q2w3e Content-Disposition: form-data; name="show_edit_game_score" True --MultipartDataMediaFormatterBoundary1q2w3e Content-Disposition: form-data; name="show_send_message" True --MultipartDataMediaFormatterBoundary1q2w3e Content-Disposition: form-data; name="show_add_player" True --MultipartDataMediaFormatterBoundary1q2w3e--