POST api/EventDateChange/{EventId}/{type}
Update Event Date
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
EventId | integer |
Required |
|
type | string |
Required |
Body Parameters
Event Profile Quota Information(Mandatory)
EventDateChange_dcName | Description | Type | Additional information |
---|---|---|---|
EventDateChangeId | integer |
None. |
|
EventId | integer |
None. |
|
FromStartDate | date |
None. |
|
FromEndDate | date |
None. |
|
ToStartDate | date |
None. |
|
ToEndDate | date |
None. |
|
ShowInCalendar | boolean |
None. |
|
Comments | string |
None. |
|
Type | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "EventDateChangeId": 1, "EventId": 1, "FromStartDate": "2025-07-18T16:04:54.9097955+00:00", "FromEndDate": "2025-07-18T16:04:54.9097955+00:00", "ToStartDate": "2025-07-18T16:04:54.9097955+00:00", "ToEndDate": "2025-07-18T16:04:54.9097955+00:00", "ShowInCalendar": true, "Comments": "sample string 2", "Type": "sample string 3" }
application/xml, text/xml
Sample:
<EventDateChange_dc xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplicationITTF1.Controllers"> <Comments>sample string 2</Comments> <EventDateChangeId>1</EventDateChangeId> <EventId>1</EventId> <FromEndDate>2025-07-18T16:04:54.9097955+00:00</FromEndDate> <FromStartDate>2025-07-18T16:04:54.9097955+00:00</FromStartDate> <ShowInCalendar>true</ShowInCalendar> <ToEndDate>2025-07-18T16:04:54.9097955+00:00</ToEndDate> <ToStartDate>2025-07-18T16:04:54.9097955+00:00</ToStartDate> <Type>sample string 3</Type> </EventDateChange_dc>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
integerResponse Formats
application/json, text/json
Sample:
1
application/xml, text/xml
Sample:
<int xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</int>