Retrieve unread notifications
curl --request GET \
--url https://closedvpn.io/auth/get-notifications \
--header 'Authorization: Bearer <token>'import requests
url = "https://closedvpn.io/auth/get-notifications"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://closedvpn.io/auth/get-notifications', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://closedvpn.io/auth/get-notifications",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://closedvpn.io/auth/get-notifications"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://closedvpn.io/auth/get-notifications")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://closedvpn.io/auth/get-notifications")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"messages": [
{
"_id": "60c72b2f5f1b2c001c8e4b1c",
"sender": {
"email": "[email protected]",
"name": "john",
"avatar": "JD"
},
"message": "Jane Owner added you to \"My Org\" as member.",
"timestamp": 1735689600000,
"read": false,
"type": "info",
"data": {
"orgId": "60c72b2f5f1b2c001c8e4b1a"
}
}
]
}{
"message": "Unauthorized"
}{
"message": "Error fetching notifications"
}Notifications
List Notifications
Retrieves the list of unread notifications for the authenticated user, sorted by timestamp descending.
GET
/
auth
/
get-notifications
Retrieve unread notifications
curl --request GET \
--url https://closedvpn.io/auth/get-notifications \
--header 'Authorization: Bearer <token>'import requests
url = "https://closedvpn.io/auth/get-notifications"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://closedvpn.io/auth/get-notifications', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://closedvpn.io/auth/get-notifications",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://closedvpn.io/auth/get-notifications"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://closedvpn.io/auth/get-notifications")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://closedvpn.io/auth/get-notifications")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"messages": [
{
"_id": "60c72b2f5f1b2c001c8e4b1c",
"sender": {
"email": "[email protected]",
"name": "john",
"avatar": "JD"
},
"message": "Jane Owner added you to \"My Org\" as member.",
"timestamp": 1735689600000,
"read": false,
"type": "info",
"data": {
"orgId": "60c72b2f5f1b2c001c8e4b1a"
}
}
]
}{
"message": "Unauthorized"
}{
"message": "Error fetching notifications"
}Authorizations
Personal Access Token (PAT) passed in the Authorization header (e.g., Bearer <pat>) for authenticated API requests. PATs are generated via /auth/generate-pat after authenticating through the magic link flow.
Response
Notifications retrieved successfully
Show child attributes
Show child attributes

