We are trying to retrieve a list of maintenance windows from APM that contain a specific string in the title / schedule name using the API.
We're able to retrieve a single schedule id based on the title / name but not multiple. We tried using a regex and wildcard but they do not return any results. Is there a way to do this via API?
We are using this documentation:
There is no "regex" as such, you can use contains to achieve the same thing:
{
"fieldDescription":"Title",
"field":"scheduleName",
"value":"TEST",
"condition":"contains"
}