List inbox notifications
const options = {method: 'GET'};
fetch('http://localhost:4010/v1/atlas/notifications/notifications/inbox', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "http://localhost:4010/v1/atlas/notifications/notifications/inbox"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}curl --request GET \
--url http://localhost:4010/v1/atlas/notifications/notifications/inboximport requests
url = "http://localhost:4010/v1/atlas/notifications/notifications/inbox"
response = requests.get(url)
print(response.text){
"success": true,
"data": [
{
"id": "<string>",
"category": "<string>",
"priority": "<string>",
"title": "<string>",
"message": "<string>",
"resourceType": "<string>",
"resourceId": "<string>",
"actionUrl": "<string>",
"clickActionUrl": "<string>",
"primaryActionLabel": "<string>",
"primaryActionUrl": "<string>",
"secondaryActionLabel": "<string>",
"secondaryActionUrl": "<string>",
"read": true,
"readAt": "<string>",
"createdAt": "<string>"
}
],
"meta": {
"requestId": "<string>",
"timestamp": "<string>",
"pagination": {
"total": 123,
"pageSize": 123,
"hasMore": true
},
"unreadCount": 123
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
},
"meta": {
"requestId": "<string>",
"timestamp": "<string>"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
},
"meta": {
"requestId": "<string>",
"timestamp": "<string>"
}
}Inbox
List inbox notifications
Get user’s notification inbox with optional filtering (Atlas platform)
GET
/
v1
/
atlas
/
notifications
/
notifications
/
inbox
List inbox notifications
const options = {method: 'GET'};
fetch('http://localhost:4010/v1/atlas/notifications/notifications/inbox', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "http://localhost:4010/v1/atlas/notifications/notifications/inbox"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}curl --request GET \
--url http://localhost:4010/v1/atlas/notifications/notifications/inboximport requests
url = "http://localhost:4010/v1/atlas/notifications/notifications/inbox"
response = requests.get(url)
print(response.text){
"success": true,
"data": [
{
"id": "<string>",
"category": "<string>",
"priority": "<string>",
"title": "<string>",
"message": "<string>",
"resourceType": "<string>",
"resourceId": "<string>",
"actionUrl": "<string>",
"clickActionUrl": "<string>",
"primaryActionLabel": "<string>",
"primaryActionUrl": "<string>",
"secondaryActionLabel": "<string>",
"secondaryActionUrl": "<string>",
"read": true,
"readAt": "<string>",
"createdAt": "<string>"
}
],
"meta": {
"requestId": "<string>",
"timestamp": "<string>",
"pagination": {
"total": 123,
"pageSize": 123,
"hasMore": true
},
"unreadCount": 123
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
},
"meta": {
"requestId": "<string>",
"timestamp": "<string>"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
},
"meta": {
"requestId": "<string>",
"timestamp": "<string>"
}
}Query Parameters
Filter by notification scope: "user" (notifications where current user is subject), "users" (all user-scoped notifications), "organization" (organization-scoped), "all" (no scope filter)
Available options:
user, users, organization, all Was this page helpful?