List webhooks
Registered endpoints.
GET
/
v1
/
webhooks
List webhooks
curl --request GET \
--url https://orchestration.flashnet.xyz/v1/webhooks \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://orchestration.flashnet.xyz/v1/webhooks', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://orchestration.flashnet.xyz/v1/webhooks"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"webhooks": [
{
"id": "<string>",
"url": "<string>",
"enabled": true,
"createdAt": "<string>"
}
]
}{
"error": {
"code": "<string>",
"message": "<string>"
}
}Was this page helpful?
⌘I
List webhooks
curl --request GET \
--url https://orchestration.flashnet.xyz/v1/webhooks \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://orchestration.flashnet.xyz/v1/webhooks', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://orchestration.flashnet.xyz/v1/webhooks"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"webhooks": [
{
"id": "<string>",
"url": "<string>",
"enabled": true,
"createdAt": "<string>"
}
]
}{
"error": {
"code": "<string>",
"message": "<string>"
}
}