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

Update Webhook Listener

Developing
PATCH
/webhook/{id}

Request

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

Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PATCH 'https://app.inboundiq.ai/api/v1/webhook/we_unique-id' \
--header 'x-api-key: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "destination": "string",
    "listenTo": [
        "website.eligibility"
    ]
}'
Response Response Example
{
    "status": 200,
    "message": "Webhook was updated",
    "data": [
        {
            "id": "we_unique-id",
            "destination": "https://example.com/webhook",
            "listenTo": [
                "website.eligibility",
                "prospect.created"
            ]
        }
    ]
}
Modified at 2025-12-09 23:24:06
Previous
Create Webhook Listener
Next
Delete Webhook Listener
Built with