Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.vh3.ai/llms.txt

Use this file to discover all available pages before exploring further.

Contacts

The Contacts endpoints provide access to the people associated with your operation — engineers, customers, site contacts, and other stakeholders enriched from your FMS and connected systems.

GET /contacts/feed

Returns a paginated feed of contacts for your company. Query parameters:
ParamTypeRequiredDescription
company_idstringYesYour tenant identifier
api_keystringYesYour tenant API key
page_sizeintegerNoResults per page
page_numberintegerNoPage number
qstringNoSearch query (name, reference)
contact_idstringNoFilter by specific contact
referencestringNoFilter by contact reference
contact_group_idstringNoFilter by contact group
account_statusstringNoFilter by account status
compactbooleanNoReturn compact response
Example:
curl -G "https://api.vh3connect.io/api:kP8T1CK7/contacts/feed" \
  --data-urlencode "company_id=your-company-id" \
  --data-urlencode "api_key=your-api-key" \
  --data-urlencode "page_size=20" \
  --data-urlencode "q=tesco"

GET /contacts/

Returns the full contact record including associated jobs, sites, and AI-generated summary. Path parameters:
ParamTypeRequiredDescription
contact_idstringYesThe contact identifier
Query parameters:
ParamTypeRequiredDescription
company_idstringYesYour tenant identifier
api_keystringYesYour tenant API key
include_summarybooleanNoInclude AI-generated contact summary
compactbooleanNoReturn compact response
Example:
curl -G "https://api.vh3connect.io/api:kP8T1CK7/contacts/456" \
  --data-urlencode "company_id=your-company-id" \
  --data-urlencode "api_key=your-api-key" \
  --data-urlencode "include_summary=true"