Notifications

Resource Notifications

Beta
GET

This endpoint is in beta and is subject to change. It is provided for early access and testing purposes only.
The Resource Notifications endpoint returns a list of notifications for a saved entity.

Path parameters

idstringRequired
Unique identifier of the resource

Query parameters

limitintegerOptional
Limit total notifications in the response. Defaults to 100.
offsetintegerOptional
Offset which notifications are returned. Defaults to 0.

Response

This endpoint returns an object
offset
integer
limit
integer
next
boolean
data
list of objects
GET
1curl -G https://api.sayari.com/v1/notifications/resources/03ePyj \
2 -H "Authorization: Bearer <token>" \
3 -d limit=20
200
Retrieved
1{
2 "offset": 0,
3 "limit": 20,
4 "next": false,
5 "data": [
6 {
7 "saved_resource_id": "03ePyj",
8 "project_id": "0oZnoG",
9 "entity_id": "wxwqZshCF4trlrmOa2eu9w",
10 "type": "risk",
11 "field": "forced_labor_sheffield_hallam_university_reports_origin_subtier",
12 "value": "3",
13 "date": "2024-02-15T00:00:00.000Z"
14 }
15 ]
16}