POST api/activity/event/eventSignout
Request Information
URI Parameters
None.
Body Parameters
EventSignIn| Name | Description | Type | Additional information |
|---|---|---|---|
| eventId | integer |
None. |
|
| userId | integer |
None. |
|
| PlayerPool | integer |
None. |
|
| playingMode | string |
None. |
|
| createdBy | integer |
None. |
|
| PaymentAmount | integer |
None. |
|
| PaymentReceived | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"eventId": 1,
"userId": 2,
"PlayerPool": 3,
"playingMode": "sample string 4",
"createdBy": 5,
"PaymentAmount": 6,
"PaymentReceived": true
}
application/xml, text/xml
Sample:
<EventSignIn xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SportClub.DTO"> <PaymentAmount>6</PaymentAmount> <PaymentReceived>true</PaymentReceived> <PlayerPool>3</PlayerPool> <createdBy>5</createdBy> <eventId>1</eventId> <playingMode>sample string 4</playingMode> <userId>2</userId> </EventSignIn>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.