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

Create Webhook Listener

Developing
POST
/webhook

Request

Authorization
API Key
Add parameter in header
x-api-key
Example:
x-api-key: ********************
or
Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://app.inboundiq.ai/api/v1/webhook' \
--header 'x-api-key: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "destinationUrl": "string",
    "listenTo": [
        "website.eligibility"
    ]
}'
Response Response Example
{
    "status": 200,
    "message": "Webhook created",
    "data": {
        "id": "we_unique-id",
        "destinationUrl": "https://example.com/webhook",
        "listenTo": [
            "website.eligibility"
        ]
    }
}
Modified at 2025-12-11 08:48:30
Previous
Get all webhooks
Next
Update Webhook Listener
Built with