Skip to main content
The Trigger Links API lets you create, retrieve, update, delete, and search trigger links in your HoopAI Platform sub-account. A trigger link is a special trackable URL that fires a workflow automation when a contact clicks it, making it a powerful tool for behavioral-based marketing and engagement tracking.

Base URL

https://services.leadconnectorhq.com

Authentication

Every request must include a bearer token in the Authorization header and the API version in the Version header.
Authorization: Bearer <access_token>
Version: 2021-07-28
Use an access token generated for a Sub-Account user type, or a Private Integration Token scoped to the sub-account.

OAuth scopes

ScopeAccess
links.readonlyRead trigger link configurations
links.writeCreate, update, and delete trigger links

Quick start

Retrieve all trigger links for a location:
curl -X GET "https://services.leadconnectorhq.com/links/?locationId=ve9EPM428h8vShlRW1KT" \
  -H "Authorization: Bearer <access_token>" \
  -H "Version: 2021-07-28"

Endpoints

MethodPathDescription
GET/links/Get Links
POST/links/Create Link
GET/links/id/{linkId}Get Link by ID
PUT/links/{linkId}Update Link
DELETE/links/{linkId}Delete Link
GET/links/searchSearch Trigger Links
Last modified on March 4, 2026