I have a rule that i’ve created that uses the every: specific: reference: Midnight, offset ...
trigger and when trying to submit the rule to the api (via create or update) it returns an “unrecoverable error”. However, when I update it to use a reference of “Noon” with a different offset for the same time, it works perfectly fine. Has anyone else noticed an issue when using the “Midnight” reference?
Here is what errors out -
"every": {
"specific": {
"reference": "Midnight",
"offset": {
"value": {
"integer": -30
},
"unit": "Minute"
}
},
"actions": [ ...
Here is what works without issue -
"every": {
"specific": {
"reference": "Noon",
"offset": {
"value": {
"integer": 690
},
"unit": "Minute"
}
},
"actions": [ ...