v1

latestOpenAPI 3.0.1MIT2026-07-2638658.5 KB
Webhook

List Webhook Endpoints

Retrieve a list of all webhook endpoints configured for your account. Webhooks allow you to receive real-time notifications about events in your JoggAI workspace.

get/v2/endpoints

Response

Success

codeinteger required

Business status code:

  • 0 - Success
  • 10104 - Record not found
  • 10105 - Invalid API key
  • 18020 - Insufficient credit
  • 18025 - No permission to call APIs
  • 40000 - Parameter error
  • 50000 - System error
msgstring required

Response message

Example response

{
  "msg": "Success",
  "data": {
    "endpoints": [
      {
        "endpoint_id": "wh_123456789",
        "url": "https://your-domain.com/webhook",
        "secret": "whsec_abc123xyz",
        "status": "enabled",
        "events": [
          "generated_avatar_video_success",
          "generated_avatar_video_failed"
        ],
        "username": "johndoe",
        "created_at": 1732806631
      }
    ]
  }
}