Outbound destination preset catalog
curl --request GET \
--url https://app.hookie.ai/admin/api/destination-presets \
--cookie hookie_session=const options = {method: 'GET', headers: {cookie: 'hookie_session='}};
fetch('https://app.hookie.ai/admin/api/destination-presets', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.hookie.ai/admin/api/destination-presets"
headers = {"cookie": "hookie_session="}
response = requests.get(url, headers=headers)
print(response.text){
"presets": [
{
"id": "slack",
"name": "<string>",
"description": "<string>",
"url_hint": "<string>",
"headers": {},
"example_payload": {},
"docs": "<string>"
}
]
}{
"error": "<string>",
"retry_after": 123,
"upgrade_url": "<string>"
}{
"error": "<string>",
"retry_after": 123,
"upgrade_url": "<string>"
}{
"error": "<string>",
"retry_after": 123,
"upgrade_url": "<string>"
}Presets
Outbound destination preset catalog
GET
/
admin
/
api
/
destination-presets
Outbound destination preset catalog
curl --request GET \
--url https://app.hookie.ai/admin/api/destination-presets \
--cookie hookie_session=const options = {method: 'GET', headers: {cookie: 'hookie_session='}};
fetch('https://app.hookie.ai/admin/api/destination-presets', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.hookie.ai/admin/api/destination-presets"
headers = {"cookie": "hookie_session="}
response = requests.get(url, headers=headers)
print(response.text){
"presets": [
{
"id": "slack",
"name": "<string>",
"description": "<string>",
"url_hint": "<string>",
"headers": {},
"example_payload": {},
"docs": "<string>"
}
]
}{
"error": "<string>",
"retry_after": 123,
"upgrade_url": "<string>"
}{
"error": "<string>",
"retry_after": 123,
"upgrade_url": "<string>"
}{
"error": "<string>",
"retry_after": 123,
"upgrade_url": "<string>"
}Authorizations
sessionbearerAuth
The console's sealed session cookie, set by WorkOS AuthKit. Mutating requests also require the X-Requested-With CSRF header.
Response
Static, read-only catalog compiled into the Worker — identical for every workspace, with no plan or role gate. Currently: slack, datadog, email, generic.
Show child attributes
Show child attributes