Getting StartedAPI Reference
Getting StartedAPI Reference
  1. Events
  • 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
      • Create Webhook Listener
      • Update Webhook Listener
      • Delete Webhook Listener
  1. Events

website.eligibility

Event: website.eligibility
The website.eligibility event is sent when InboundIQ completes verification to determine whether a website is suitable for outreach.
This webhook is emitted in response to a successful call to Onboard Business API and represents the final eligibility decision for the submitted website.
After receiving this event, you can safely:
Embed the returned loginUrl in your application using an iframe to enable immediate access.
{
  "id": "evt_d6f7a4c2-9c2b-4f12-a812-4a9b4d9e1c3b",
  "type": "website.eligibility",
  "createdAt": "2025-12-09T10:24:31.123Z",
  "data": {
    "userId": "usr_9180b333-4874-4785-a380-a62d626b55fc",
    "website": "https://example.com",
    "isEligible": true,
    "loginUrl": "https://app.inboundiq.ai/api/v1/auth/login-embeded?auth_token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9"
  }
}
Note
The website.eligibility event is only sent after the eligibility check has fully completed.
A value of false for isEligible indicates that outreach cannot be initiated for the website at this time.
You can show a waitlist page till we mark the business as eligible.
Modified at 2025-12-11 11:54:26
Previous
Webhook Delivery
Next
prospect.created
Built with