---
title: "List event notifications"
url: "https://docs.unified.to/unified/notification/List_event_notifications"
description: "API reference for List event notifications. Launch multiple pre-built Notification integrations today with zero maintenance — all through a single API."
---
# List event notifications

 GET/unified/notification

## Parameters

**limit**number  default=100

**offset**number  default=0

**updated\_gte**date 

Return only results whose updated date is equal or greater to this value (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)

**sort** enum

name

updated\_at

created\_at

**order** enum

asc

desc

## Returns

[Notification](/unified/notification/model)array

A notification of an event that occurred in you account.

**id**string  read-only 

Unique identifier for this notification object

**created\_at**date  read-only 

The date that this integration object was created (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)

**updated\_at**date 

(ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)

**workspace\_id**string  read-only 

(reference to KmsSpace)

**description**string 

Longer description of this notification

**user\_id**string 

(reference to HrisEmployee)

**user\_name**string 

**workspace\_name**string 

**webhook\_id**string 

**connection\_id**string 

**integration\_type**string 

**integration\_name**string 

**sent\_at**date 

(ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)

**event** enum

Valid values:

 "USER\_CREATED" 

 "USER\_DELETED" 

 "CONNECTION\_HEALTHY" 

 "CONNECTION\_UNHEALTHY" 

 "CONNECTION\_CREATED" 

## Code Samples

### Node.js SDK

```
import { UnifiedTo } from '@unified-api/typescript-sdk';

const sdk = new UnifiedTo({
    security: {
        jwt: '<YOUR_API_KEY_HERE>',
    },
});

const results = await sdk.unified.listUnifiedNotifications({ 
    limit: 50,
    offset: 0,
    updated_gte: '2026-08-21T09:10:32.406Z',
    sort: 'updated_at',
    order: 'asc',
 });
```

### Node.js (axios)

```
const options = {
  method: 'GET',
  url: 'https://api.unified.to/unified/notification',
  headers: {
    authorization: 'bearer .....'
  },
  params: {
    limit: 50,
    offset: 0,
    updated_gte: '2026-08-21T09:10:32.406Z',
    sort: 'updated_at',
    order: 'asc',
  }
};

const results = await axios.request(options);
```

### Java

```
AsyncHttpClient client = new DefaultAsyncHttpClient();

client.prepare("GET", "https://api.unified.to/unified/notification?limit=50&offset=0&updated_gte=2026-08-21T09:10:32.406Z&sort=updated_at&order=asc")
  .setHeader("accept", "application/json")
  .setHeader("authorization", ".....")
  .execute()
  .toCompletableFuture()
  .thenAccept(System.out::println)
  .join();

client.close();
```

### Go

```
import (
	"fmt"
	"net/http"
	"io/ioutil"
)

url := `https://api.unified.to/unified/notification?limit=50&offset=0&updated_gte=2026-08-21T09:10:32.406Z&sort=updated_at&order=asc

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("accept", "application/json")
req.Header.Add("authorization", ".....")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)
```

### Python

```
import requests

url = "https://api.unified.to/unified/notification?limit=50&offset=0&updated_gte=2026-08-21T09:10:32.406Z&sort=updated_at&order=asc"

headers = {
    "accept": "application/json",
    "authorization": "....."
}

response = requests.get(url, headers=headers)
```

### PHP

```
$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "https://api.unified.to/unified/notification?limit=50&offset=0&updated_gte=2026-08-21T09:10:32.406Z&sort=updated_at&order=asc",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "GET",
  CURLOPT_HTTPHEADER => [
    "accept: application/json",
    "authorization: ....."
  ],
]);
```

### Ruby

```
require 'uri'
require 'net/http'
require 'openssl'

url = URI("https://api.unified.to/unified/notification?limit=50&offset=0&updated_gte=2026-08-21T09:10:32.406Z&sort=updated_at&order=asc")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["accept"] = 'application/json'
request["authorization"] = '....'

response = http.request(request)
puts response.read_body
```

### cURL

```
curl --request GET \
  --url 'https://api.unified.to/unified/notification?limit=50&offset=0&updated_gte=2026-08-21T09:10:32.406Z&sort=updated_at&order=asc' \
  --header 'accept: application/json' \
  --header 'authorization: .....'
```
