In the /cases/{caseSystemId}/auditEvents endpoint how does one get all events?

Options

Supplying a empty or {} body returns nothing.
{"filter":null} seems to work. Can you confirm that returns all
events.

Best Answer

  • brian.bourgault
    Answer ✓

    Hi @Fran Dugger,

    The documentation is a good place to start for questions

    The enumerations are documented, use swagger and in the YAML schema (lines #3306 & #565) v2.0.

    e.g. actionType=='ASSIGN_CASE'

    OR

    actionType=in=('ASSIGN_CASE', 'NEW_MATCH')

    No actionType will assume all actions.

    Hope this helps,

    Brian