GET me/views/networks/{id}/sendmessage
Get send message view model
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:
{ "reply_to_list": [ "sample string 1", "sample string 2", "sample string 3" ], "enable_email": true, "enable_text": true, "enable_facebook": true, "enable_twitter": true }
application/xml, text/xml
Sample:
<SendMessageVMDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/imLeagues.Web.API.Models.Output"> <enable_email>true</enable_email> <enable_facebook>true</enable_facebook> <enable_text>true</enable_text> <enable_twitter>true</enable_twitter> <reply_to_list xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:string>sample string 1</d2p1:string> <d2p1:string>sample string 2</d2p1:string> <d2p1:string>sample string 3</d2p1:string> </reply_to_list> </SendMessageVMDto>