Getting StartedAPI Reference
Getting StartedAPI Reference
  1. Webhoook Ops
  • Users
    • Get User
      GET
    • Onboard Business
      POST
    • Authenticate User
      GET
    • Delete User or Business
      DELETE
  • Wallet
    • Get Wallet Details
      GET
    • Topup wallet
      POST
  • Seed
    • Seed Leads
      POST
  • Campaign
    • Toggle Campaign Status
      PUT
  • Webhooks
    • Webhook Delivery
    • Events
      • website.eligibility
      • prospect.created
    • Webhoook Ops
      • Get all webhooks
        GET
      • Create Webhook Listener
        POST
      • Update Webhook Listener
        PATCH
      • Delete Webhook Listener
        DELETE
Getting StartedAPI Reference
Getting StartedAPI Reference
  1. Webhoook Ops

Get all webhooks

Developing
GET
/webhook

Request

Authorization
API Key
Add parameter in header
x-api-key
Example:
x-api-key: ********************
or

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://app.inboundiq.ai/api/v1/webhook' \
--header 'x-api-key: <api-key>'
Response Response Example
{
    "status": 200,
    "message": "Website is eligible",
    "data": [
        {
            "id": "we_unique-id",
            "destination": "https://example.com/webhook",
            "listenTo": [
                "website.eligibility",
                "prospect.created"
            ]
        }
    ]
}
Modified at 2025-12-09 23:10:36
Previous
prospect.created
Next
Create Webhook Listener
Built with