Notifications

Get all notifications

Retrieve a list of notifications with optional filtering and pagination

GET
/api/notifications

Authorization

Authorization
header
string
required

Enter the project access token with the Bearer prefix, e.g. "Bearer project_access_token"

Query Parameters

object_id
string

Filter by object ID

webhook_id
string

Filter by webhook ID

events
string[]

Filter by events

Available options:
job.completedjob.failedjob.cancelledupload.completedupload.failedupload.expired
response_status_code.eq
integer

Filter by exact response status code

Required range: 100 <= x <= 599
response_status_code.gte
integer

Filter by response status code greater than or equal

Required range: 100 <= x <= 599
response_status_code.lte
integer

Filter by response status code less than or equal

Required range: 100 <= x <= 599
offset
default: 0
integer

Pagination offset

Required range: x >= 0
limit
default: 100
integer

Pagination limit (max 100)

Required range: 1 <= x <= 100
created.gte
integer
epoch

Filter by creation date greater than or equal (UNIX epoch time)

Required range: x >= 0
Examples:
1764238404
created.lte
integer
epoch

Filter by creation date less than or equal (UNIX epoch time)

Required range: x >= 0
Examples:
1764238404
created.sort
default: "asc"
string

Sort by creation date (asc/desc)

Available options:
ascdesc

Responses

application/json
data
object[]
required

Data contains the paginated notification items

limit
integer
required

Limit indicates the maximum number of items in the current response

offset
integer
required

Offset indicates the offset of the first item in the current response

status
"success"
string
required

Status indicates the response status "success"

total
integer
required

Total indicates the total number of items

OK