action biapi_get_incidents { label: "Get incidents logs." description: "By default, provide all incidents. Results are paginated. Some filters can be set via query parameters.

" provider: biapi method: GET path: "/incidents" encoding: json input: { type: "object" properties: { end_date: { type: "string" } id: { type: "integer" } page: { type: "integer" } size: { type: "integer" } start_date: { type: "string" } state: { type: "string" } weboob_id: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }