Getting StartedAPI Reference
Getting StartedAPI Reference
  1. Users
  • 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. Users

Authenticate User

Developing
GET
/user/login
Authenticates the user by email and website signed up to InboundIQ. Logs in directly to the website's leads page.

Request

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

Responses

🟢200Success
application/json
Body

🟠404Record Not Found
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://app.inboundiq.ai/api/v1/user/login?email=john.doe@example.com&websiteUrl=https://example.com' \
--header 'x-api-key: <api-key>'
Response Response Example
200 - Success
{
    "status": 200,
    "message": "Login Successfully",
    "data": {
        "userId": "usr_9180b333-4874-4785-a380-a62d626b55fc",
        "loginUrl": "https://app.inboundiq.ai/api/v1/auth/wildcard-partner?auth_token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9"
    }
}
Modified at 2025-12-12 13:10:00
Previous
Onboard Business
Next
Delete User or Business
Built with