POST api/EventMaster/CreateEvent

Request Information

URI Parameters

None.

Body Parameters

EventMasterBindingModel
NameDescriptionTypeAdditional information
EventId

integer

None.

EventName

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",
  "EventDescription": "sample string 3",
  "EventDate": "2025-12-29T17:30:17.0982639+05:30",
  "EventRegistrationStartDate": "2025-12-29T17:30:17.0991771+05:30",
  "EventRegistrationEndDate": "2025-12-29T17:30:17.0991771+05:30",
  "PlatformFeePercentage": 1.1,
  "IsActive": true,
  "PaymentGatewayPercent": 1.1
}

application/xml, text/xml

Sample:
<EventMasterBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/kcm_api_portal.Models">
  <EventDate>2025-12-29T17:30:17.0982639+05:30</EventDate>
  <EventDescription>sample string 3</EventDescription>
  <EventId>1</EventId>
  <EventName>sample string 2</EventName>
  <EventRegistrationEndDate>2025-12-29T17:30:17.0991771+05:30</EventRegistrationEndDate>
  <EventRegistrationStartDate>2025-12-29T17:30:17.0991771+05:30</EventRegistrationStartDate>
  <IsActive>true</IsActive>
  <PaymentGatewayPercent>1.1</PaymentGatewayPercent>
  <PlatformFeePercentage>1.1</PlatformFeePercentage>
</EventMasterBindingModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.