Send a test notification
curl --request POST \
--url https://aquila.attaxr.com/api/notification-channels/{id}/test \
--cookie better-auth.session_token=const options = {method: 'POST', headers: {cookie: 'better-auth.session_token='}};
fetch('https://aquila.attaxr.com/api/notification-channels/{id}/test', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://aquila.attaxr.com/api/notification-channels/{id}/test"
headers = {"cookie": "better-auth.session_token="}
response = requests.post(url, headers=headers)
print(response.text){
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}Notification Channels
Send a test notification
Fires a one-off test at exactly this channel. It never appears in the bell.
POST
/
api
/
notification-channels
/
{id}
/
test
Send a test notification
curl --request POST \
--url https://aquila.attaxr.com/api/notification-channels/{id}/test \
--cookie better-auth.session_token=const options = {method: 'POST', headers: {cookie: 'better-auth.session_token='}};
fetch('https://aquila.attaxr.com/api/notification-channels/{id}/test', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://aquila.attaxr.com/api/notification-channels/{id}/test"
headers = {"cookie": "better-auth.session_token="}
response = requests.post(url, headers=headers)
print(response.text){
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}
