Retrieves the recurrence with the specified key
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult
recurrence| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier |
Required |
| settings |
settings |
string |
Max length: 4000 |
| selected_days |
selected_days |
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": "09cd24f8-7fd3-4253-82ca-5cb902cfece6",
"settings": "sample string 2",
"selected_days": "sample string 3",
"modified_dateutc": "2026-01-12T00:24:56.9795478+00:00"
}
application/xml, text/xml
Sample:
<recurrence xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <id>09cd24f8-7fd3-4253-82ca-5cb902cfece6</id> <modified_dateutc>2026-01-12T00:24:56.979Z</modified_dateutc> <selected_days>sample string 3</selected_days> <settings>sample string 2</settings> </recurrence>