Update repeated timer
PATCHhttps://api.apparyllis.com/v1/timer/repeated/:docId
Update an Repeated Timer by Id
Request
Path Parameters
docId stringrequired
String Id of the Repeated Timer
- application/json
Bodyrequired
namestring
Name of the reminder
messagestring
Message the reminder sends
dayIntervalinteger
Day interval between the reminders are sent
time object
startTime object
Responses
- 200
- 404
OK
NOT FOUND
Authorization: Authorization
name: Authorizationtype: apiKeyin: header
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Patch, "https://api.apparyllis.com/v1/timer/repeated/:docId");
request.Headers.Add("Authorization", "<Authorization>");
var content = new StringContent("{\n \"name\": \"string\",\n \"message\": \"string\",\n \"dayInterval\": 0,\n \"time\": {\n \"hour\": 0,\n \"minute\": 0\n },\n \"startTime\": {\n \"year\": 0,\n \"month\": 0,\n \"day\": 0\n }\n}", null, "application/json");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
ResponseClear