POST api/Events/SignUp
Request Information
URI Parameters
None.
Body Parameters
EventParticipantName | Description | Type | Additional information |
---|---|---|---|
EventGuid | globally unique identifier |
None. |
|
EventParticipantGuid | globally unique identifier |
None. |
|
FullName | string |
Required |
|
string |
Required |
||
Mobile | string |
None. |
|
NumberOfAdults | integer |
None. |
|
NumberOfChildren | integer |
None. |
|
Comments | string |
None. |
|
CancelDateTime | date |
None. |
|
EventPlanAssociatedClubGuids | Collection of globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{ "EventGuid": "10837b62-8109-409f-a462-2388aa3918fc", "EventParticipantGuid": "9f41742a-dfbb-4bb2-8327-73e8645f185c", "FullName": "sample string 1", "Email": "sample string 2", "Mobile": "sample string 3", "NumberOfAdults": 4, "NumberOfChildren": 5, "Comments": "sample string 6", "CancelDateTime": "2024-11-21T09:52:49.5036673+01:00", "EventPlanAssociatedClubGuids": [ "8e6cfc5a-540a-4f97-9060-6c20a043f816", "d4e8965f-4885-4186-b2ca-6296ea6eda0a" ] }
application/xml, text/xml
Sample:
<EventParticipant xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApi.Models"> <CancelDateTime>2024-11-21T09:52:49.5036673+01:00</CancelDateTime> <Comments>sample string 6</Comments> <Email>sample string 2</Email> <EventGuid>10837b62-8109-409f-a462-2388aa3918fc</EventGuid> <EventParticipantGuid>9f41742a-dfbb-4bb2-8327-73e8645f185c</EventParticipantGuid> <EventPlanAssociatedClubGuids xmlns:d2p1="http://schemas.datacontract.org/2004/07/System"> <d2p1:guid>8e6cfc5a-540a-4f97-9060-6c20a043f816</d2p1:guid> <d2p1:guid>d4e8965f-4885-4186-b2ca-6296ea6eda0a</d2p1:guid> </EventPlanAssociatedClubGuids> <FullName>sample string 1</FullName> <Mobile>sample string 3</Mobile> <NumberOfAdults>4</NumberOfAdults> <NumberOfChildren>5</NumberOfChildren> </EventParticipant>
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.