The REST API swagger for Acknowledge has this as the payload:
{
"alertObjectIds": [
0
],
"notes": "string"
}
but when I send a payload with that format,
{
"alertObjectIds": [11111],
"notes": "testing from rest client"
}
the API ignores "notes". When I query the AlertObject I get this:
"AcknowledgedNote": null
Is this just how it is and the docs are incorrect?