Webhooks
Get All Webhooks
Webhooks
Get All Webhooks
Retrieve a list of all webhooks for the current workspace
GET
/
webhooks
curl --request GET \
--url https://app.activecalculator.com/api/v1/webhooks \
--header 'x-ac-api-key: <api-key>'
"{\n \"data\": [\n {\n \"id\": \"webhook123\",\n \"name\": \"Webhook One\",\n \"createdAt\": \"2024-01-15T10:30:00.000Z\",\n \"updatedAt\": \"2024-01-15T11:45:00.000Z\",\n \"url\": \"https://example.com/webhook1\",\n \"source\": \"user\",\n \"workspaceId\": \"workspace456\",\n \"calculators\": [\n {\n \"id\": \"calc789\",\n \"name\": \"Calculator A\"\n },\n {\n \"id\": \"calc101\",\n \"name\": \"Calculator B\"\n },\n {\n \"id\": \"calc202\",\n \"name\": \"Calculator C\"\n }\n ],\n \"triggers\": [\n {\n \"type\": \"newSubmission\",\n \"webhookId\": \"webhook123\"\n }\n ]\n },\n {\n \"id\": \"webhook456\",\n \"name\": \"Webhook Two\",\n \"createdAt\": \"2024-01-20T14:20:00.000Z\",\n \"updatedAt\": \"2024-01-20T14:20:00.000Z\",\n \"url\": \"https://example.com/webhook2\",\n \"source\": \"user\",\n \"workspaceId\": \"workspace456\",\n \"calculators\": [\n {\n \"id\": \"calc789\",\n \"name\": \"Calculator A\"\n }\n ],\n \"triggers\": [\n {\n \"type\": \"newSubmission\",\n \"webhookId\": \"webhook456\"\n }\n ]\n }\n ]\n}"
Authorizations
Response
200
application/json
200
Was this page helpful?
curl --request GET \
--url https://app.activecalculator.com/api/v1/webhooks \
--header 'x-ac-api-key: <api-key>'
"{\n \"data\": [\n {\n \"id\": \"webhook123\",\n \"name\": \"Webhook One\",\n \"createdAt\": \"2024-01-15T10:30:00.000Z\",\n \"updatedAt\": \"2024-01-15T11:45:00.000Z\",\n \"url\": \"https://example.com/webhook1\",\n \"source\": \"user\",\n \"workspaceId\": \"workspace456\",\n \"calculators\": [\n {\n \"id\": \"calc789\",\n \"name\": \"Calculator A\"\n },\n {\n \"id\": \"calc101\",\n \"name\": \"Calculator B\"\n },\n {\n \"id\": \"calc202\",\n \"name\": \"Calculator C\"\n }\n ],\n \"triggers\": [\n {\n \"type\": \"newSubmission\",\n \"webhookId\": \"webhook123\"\n }\n ]\n },\n {\n \"id\": \"webhook456\",\n \"name\": \"Webhook Two\",\n \"createdAt\": \"2024-01-20T14:20:00.000Z\",\n \"updatedAt\": \"2024-01-20T14:20:00.000Z\",\n \"url\": \"https://example.com/webhook2\",\n \"source\": \"user\",\n \"workspaceId\": \"workspace456\",\n \"calculators\": [\n {\n \"id\": \"calc789\",\n \"name\": \"Calculator A\"\n }\n ],\n \"triggers\": [\n {\n \"type\": \"newSubmission\",\n \"webhookId\": \"webhook456\"\n }\n ]\n }\n ]\n}"