Notifications

Get job notifications

Retrieve notifications for the authenticated user, filtered by notification names and/or job IDs.

POST
/notifications
AuthorizationBearer <token>

Token-based authentication using access tokens.

In: header

id_taskId Task

List of batch job IDs to check notifications for.

name_listName List

Filters for specific notification type. If a single string is given, will be converted to a list.

Response Body

Examples

curl -X POST "https://loading/notifications" \
  -H "Content-Type: application/json" \
  -d '{
    "id_task": "string",
    "name_list": "string"
  }'
[
  {
    "data": {},
    "id": 0,
    "name": "string",
    "timestamp": 0
  }
]
Empty