POST
api/v1/edit-calendar-events
Request Information
Body Parameters
CalendarEvent| Name | Description | Type | Additional information |
|---|---|---|---|
| EventID | integer |
None. |
|
| Title | string |
None. |
|
| Description | string |
None. |
|
| Start | date |
None. |
|
| End | date |
None. |
|
| ISFullDay | boolean |
None. |
|
| ClientID | integer |
None. |
|
| CreatedBy | integer |
None. |
|
| ModifiedBy | integer |
None. |
|
| CreatedOn | date |
None. |
|
| ModifiedOn | date |
None. |
|
| Flag | integer |
None. |
|
| UserTypeId | integer |
None. |
|
| ChildSellerId | integer |
None. |
|
| UserName | string |
None. |
Request Formats
application/json, text/json
{
"EventID": 1,
"Title": "sample string 2",
"Description": "sample string 3",
"Start": "2026-02-04T17:13:52.2514376+00:00",
"End": "2026-02-04T17:13:52.2514376+00:00",
"ISFullDay": true,
"ClientID": 5,
"CreatedBy": 6,
"ModifiedBy": 1,
"CreatedOn": "2026-02-04T17:13:52.2514376+00:00",
"ModifiedOn": "2026-02-04T17:13:52.2514376+00:00",
"Flag": 8,
"UserTypeId": 9,
"ChildSellerId": 10,
"UserName": "sample string 11"
}
text/html
{"EventID":1,"Title":"sample string 2","Description":"sample string 3","Start":"2026-02-04T17:13:52.2514376+00:00","End":"2026-02-04T17:13:52.2514376+00:00","ISFullDay":true,"ClientID":5,"CreatedBy":6,"ModifiedBy":1,"CreatedOn":"2026-02-04T17:13:52.2514376+00:00","ModifiedOn":"2026-02-04T17:13:52.2514376+00:00","Flag":8,"UserTypeId":9,"ChildSellerId":10,"UserName":"sample string 11"}
application/xml, text/xml
<CalendarEvent xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.Calendar"> <ChildSellerId>10</ChildSellerId> <ClientID>5</ClientID> <CreatedBy>6</CreatedBy> <CreatedOn>2026-02-04T17:13:52.2514376+00:00</CreatedOn> <Description>sample string 3</Description> <End>2026-02-04T17:13:52.2514376+00:00</End> <EventID>1</EventID> <Flag>8</Flag> <ISFullDay>true</ISFullDay> <ModifiedBy>1</ModifiedBy> <ModifiedOn>2026-02-04T17:13:52.2514376+00:00</ModifiedOn> <Start>2026-02-04T17:13:52.2514376+00:00</Start> <Title>sample string 2</Title> <UserName>sample string 11</UserName> <UserTypeId>9</UserTypeId> </CalendarEvent>
application/x-www-form-urlencoded
Sample not available.
Response Information
Description:
Return type: boolean
Response Formats
application/json, text/json, text/html
true
application/xml, text/xml
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>
