POST me/sidrequests/send
send a sid request to school admin for verify for the input network_id is required scope is an enum 0-school,1-intramural,2-fitness,3-club , you should send the request with the appropriate scope. for example : if member should send a sid request when creat team in a intramural sport ,so the scope is 1, and when creat team in a club sport ,the scope should be 2. value is the student id or the email the user input
Request Information
Parameters
Name | Description | Additional information |
---|---|---|
inDto |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{ "network_id": "sample string 1", "scope": 0, "value": "sample string 2" }
application/xml, text/xml
Sample:
<SIDRequestInDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/imLeagues.Web.API.Models.Input"> <network_id>sample string 1</network_id> <scope>School</scope> <value>sample string 2</value> </SIDRequestInDto>
application/x-www-form-urlencoded
Sample:
Sample not available.