You can view the details of all webhook endpoints registered for your workspace via the API.

To view all webhooks registered for your workspace, send a GET request to https://api.copy.ai/api/webhook.

You will receive a response with the details for all webhooks.

For example:

{
    "total": 2,
    "data":
    [
        {
            "id": "<webhook_id>",
            "url": "<https://mywebsite.com/webhook>",
            "eventType": "workflowRun.completed",
            "workflowId": "<workflow_id>"
        },
        {
            "id": "<webhook_id>",
            "url": "<https://mywebsite.com/webhook>",
            "eventType": "workflowRun.started",
            "workflowId": null
        }
    ]
}

Language
Authorization
Header
Click Try It! to start a request and see the response here!