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_dc| Name | 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": "2026-02-05T04:15:57.5487938+00:00",
"FromEndDate": "2026-02-05T04:15:57.5487938+00:00",
"ToStartDate": "2026-02-05T04:15:57.5487938+00:00",
"ToEndDate": "2026-02-05T04:15:57.5487938+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>2026-02-05T04:15:57.5487938+00:00</FromEndDate> <FromStartDate>2026-02-05T04:15:57.5487938+00:00</FromStartDate> <ShowInCalendar>true</ShowInCalendar> <ToEndDate>2026-02-05T04:15:57.5487938+00:00</ToEndDate> <ToStartDate>2026-02-05T04:15:57.5487938+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>