POST teams/{id}/players/{playerid}/updatesid
[Admin User Permission Required] update student id when for player in a team
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| id | team id |
Define this parameter in the request URI. |
| playerid | player id |
Define this parameter in the request URI. |
| inDto |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{
"sid": "sample string 1",
"update_id_sheet": true
}
application/xml, text/xml
Sample:
<UpdateMemberSIDInDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/imLeagues.Web.API.Models.Input"> <sid>sample string 1</sid> <update_id_sheet>true</update_id_sheet> </UpdateMemberSIDInDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
multipart/form-data
Sample:
--MultipartDataMediaFormatterBoundary1q2w3e Content-Disposition: form-data; name="sid" sample string 1 --MultipartDataMediaFormatterBoundary1q2w3e Content-Disposition: form-data; name="update_id_sheet" True --MultipartDataMediaFormatterBoundary1q2w3e--