POST api/EventMaster/CreateEvent
Request Information
URI Parameters
None.
Body Parameters
EventDetailsMasterBindingModel| Name | Description | Type | Additional information |
|---|---|---|---|
| EventId | integer |
None. |
|
| EventName | string |
None. |
|
| EventType | string |
None. |
|
| EventImage | string |
None. |
|
| EventDescription | string |
None. |
|
| EventDate | date |
None. |
|
| EventRegistrationStartDate | date |
None. |
|
| EventRegistrationEndDate | date |
None. |
|
| PlatformFeePercentage | decimal number |
None. |
|
| IsActive | boolean |
None. |
|
| PaymentGatewayPercent | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{
"EventId": 1,
"EventName": "sample string 2",
"EventType": "sample string 3",
"EventImage": "sample string 4",
"EventDescription": "sample string 5",
"EventDate": "2026-01-02T22:01:56.3978419+05:30",
"EventRegistrationStartDate": "2026-01-02T22:01:56.3978419+05:30",
"EventRegistrationEndDate": "2026-01-02T22:01:56.3978419+05:30",
"PlatformFeePercentage": 1.1,
"IsActive": true,
"PaymentGatewayPercent": 1.1
}
application/xml, text/xml
Sample:
<EventDetailsMasterBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/kcm_api_portal.Models"> <EventDate>2026-01-02T22:01:56.3978419+05:30</EventDate> <EventDescription>sample string 5</EventDescription> <EventId>1</EventId> <EventImage>sample string 4</EventImage> <EventName>sample string 2</EventName> <EventRegistrationEndDate>2026-01-02T22:01:56.3978419+05:30</EventRegistrationEndDate> <EventRegistrationStartDate>2026-01-02T22:01:56.3978419+05:30</EventRegistrationStartDate> <EventType>sample string 3</EventType> <IsActive>true</IsActive> <PaymentGatewayPercent>1.1</PaymentGatewayPercent> <PlatformFeePercentage>1.1</PlatformFeePercentage> </EventDetailsMasterBindingModel>
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.