# Fetch the program user's notifications. (deprecated) Fetches multiple inbox notification records at a time. Endpoint: GET /v2/assistant/notifications Version: v2 Security: oauth2_as_a_user ## Query parameters: - `filter.unacknowledged` (boolean) Get only unacknowledged notifications - `filter.ids` (array) Filter notifications by IDs - `page.size` (integer) Return ``. Default is 1, resulting in the first page being retrieved - `page.number` (integer) Using classical pagination, the page number to return. Default is 1 ## Response 200 fields (application/json): - `data` (array, required) - `data.id` (integer) Example: 1 - `data.category` (string) Example: "category_type" - `data.acknowledged` (boolean) - `data.text` (string) Example: "text" - `data.label` (string) Example: "Label name" - `data.details` (object) - `data.details.url` (string) Example: "url" - `data.created_at` (string) Example: "2022-07-06T07:15:46.121Z" - `data.updated_at` (string) Example: "2022-07-06T07:15:46.121Z"