Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
curl --request GET \
--url https://api.vaultcord.com/developers/webhooks \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": [
{
"id": 441,
"accId": 25204,
"url": "https://webhook.site/db95dcd7-8b4b-42a9-9d3b-bcb81e7f91c4",
"events": 6,
"secret": "978a62e45fcd4b599dbc411250e35b5382c31d2a7b6d422d8332cee2b5fcc98dd9ec7bd5cdae4ee098176e9f88684753e7eae1290bda43baacbe3fc0f4f26875",
"created_at": 1715282199
}
]
}List the REST API webhooks on your VaultCord account
curl --request GET \
--url https://api.vaultcord.com/developers/webhooks \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": [
{
"id": 441,
"accId": 25204,
"url": "https://webhook.site/db95dcd7-8b4b-42a9-9d3b-bcb81e7f91c4",
"events": 6,
"secret": "978a62e45fcd4b599dbc411250e35b5382c31d2a7b6d422d8332cee2b5fcc98dd9ec7bd5cdae4ee098176e9f88684753e7eae1290bda43baacbe3fc0f4f26875",
"created_at": 1715282199
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?