POST api/v1/membergames/member/setpicks
Sets the member picks. Can set pick1, 2 or 3 separately. Beta 8/24: enforced no dupes start / end date
Request Information
URI Parameters
None.
Body Parameters
MemberGamePicksModel| Name | Description | Type | Additional information |
|---|---|---|---|
| MemberGameId | integer |
Required |
|
| MemberAliasId | integer |
Required |
|
| Pick1 | integer |
None. |
|
| Pick2 | integer |
None. |
|
| Pick3 | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"memberGameId": 1,
"memberAliasId": 2,
"pick1": 1,
"pick2": 1,
"pick3": 1
}
text/html, text/plain
Sample:
{"memberGameId":1,"memberAliasId":2,"pick1":1,"pick2":1,"pick3":1}
application/xml, text/xml
Sample:
<MemberGamePicksModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Last2Left.Services.Models"> <MemberAliasId>2</MemberAliasId> <MemberGameId>1</MemberGameId> <Pick1>1</Pick1> <Pick2>1</Pick2> <Pick3>1</Pick3> </MemberGamePicksModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, text/html, text/plain, application/xml, text/xml
Sample:
Sample not available.