Return last 100 user notifications filtered by given parameters.

GET /data/user/notifications

Query parameters

  • after string(date)

    Filter notifications after this date

  • before string(date)

    Filter notifications before this date

  • task_type_id string(uuid)

    Filter by task type ID

  • task_status_id string(uuid)

    Filter by task status ID

  • type string

    Filter by notification type

  • read boolean

    Filter by read status

  • watching boolean

    Filter by watching status

Responses

  • 200 application/json

    100 last user notifications

GET /data/user/notifications
curl \
 --request GET 'http://api.example.com/data/user/notifications' \
 --header "Authorization: $API_KEY"
Response examples (200)
[
  {}
]