Retrieves the recurrence rule with the specified key.
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The recurrence rule id. |
globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the recurrence rule, or 404 Not Found if it doesn't exist.
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 |
Response Formats
application/json, text/json
Sample:
{
"id": "4293ebc9-770c-4e8c-a33b-b6de80c7a4f0",
"settings": "sample string 2",
"selected_days": "sample string 3",
"modified_dateutc": "2026-09-16T11:02:48.0238579+00:00"
}
application/xml, text/xml
Sample:
<recurrence xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <id>4293ebc9-770c-4e8c-a33b-b6de80c7a4f0</id> <modified_dateutc>2026-09-16T11:02:48.023Z</modified_dateutc> <selected_days>sample string 3</selected_days> <settings>sample string 2</settings> </recurrence>