Creates or updates a recurrence rule.
Request Information
URI Parameters :
None.
Body Parameters :
recurrence| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier |
Required |
| settings |
Serialized configuration of the recurrence rule (e.g. frequency and interval), in a provider-defined format. |
string |
Max length: 4000 |
| selected_days |
Serialized list of the specific days (e.g. weekdays) the recurrence applies to. |
string |
Max length: 4000 |
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date |
Request Formats :
application/json, text/json
Sample:
{
"id": "335dac50-a9ad-49cb-a641-9da66a37051a",
"settings": "sample string 2",
"selected_days": "sample string 3",
"modified_dateutc": "2026-09-16T08:34:37.7668489+00:00"
}
application/xml, text/xml
Sample:
<recurrence xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <id>335dac50-a9ad-49cb-a641-9da66a37051a</id> <modified_dateutc>2026-09-16T08:34:37.766Z</modified_dateutc> <selected_days>sample string 3</selected_days> <settings>sample string 2</settings> </recurrence>
Response Information
Resource Description :
IHttpActionResult containing the saved recurrence rule.
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.