Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Team management, membership, and entity scoping
company_id
api_key
purpose
search
page
per_page
curl -G "https://api.vh3connect.io/api:kP8T1CK7/teams/list" \ --data-urlencode "company_id=your-company-id" \ --data-urlencode "api_key=your-api-key"
name
description
metadata
actor_type
user
system
actor_id
curl -X POST "https://api.vh3connect.io/api:kP8T1CK7/teams/create" \ -H "Content-Type: application/json" \ -d '{ "company_id": "your-company-id", "api_key": "your-api-key", "name": "North Region", "description": "Engineers and accounts in the northern region" }'
curl -G "https://api.vh3connect.io/api:kP8T1CK7/teams/team-001" \ --data-urlencode "company_id=your-company-id" \ --data-urlencode "api_key=your-api-key"
is_active
curl -X PATCH "https://api.vh3connect.io/api:kP8T1CK7/teams/team-001" \ -H "Content-Type: application/json" \ -d '{ "company_id": "your-company-id", "api_key": "your-api-key", "name": "North Region, HVAC" }'
curl -G "https://api.vh3connect.io/api:kP8T1CK7/teams/team-001/members" \ --data-urlencode "company_id=your-company-id" \ --data-urlencode "api_key=your-api-key"
user_id
role
member
admin
is_default_team
curl -X POST "https://api.vh3connect.io/api:kP8T1CK7/teams/team-001/members" \ -H "Content-Type: application/json" \ -d '{ "company_id": "your-company-id", "api_key": "your-api-key", "user_id": 42, "role": "member" }'
curl -X DELETE "https://api.vh3connect.io/api:kP8T1CK7/teams/team-001/members/membership-99" \ -H "Content-Type: application/json" \ -d '{ "company_id": "your-company-id", "api_key": "your-api-key" }'
type
curl -G "https://api.vh3connect.io/api:kP8T1CK7/teams/team-001/entities" \ --data-urlencode "company_id=your-company-id" \ --data-urlencode "api_key=your-api-key"
entity_type
customer
site
job_type
entity_id
label
context
curl -X POST "https://api.vh3connect.io/api:kP8T1CK7/teams/team-001/entities" \ -H "Content-Type: application/json" \ -d '{ "company_id": "your-company-id", "api_key": "your-api-key", "entity_type": "customer", "entity_id": "contact-456" }'
curl -X DELETE "https://api.vh3connect.io/api:kP8T1CK7/teams/team-001/entities/link-77" \ -H "Content-Type: application/json" \ -d '{ "company_id": "your-company-id", "api_key": "your-api-key" }'
q
curl -G "https://api.vh3connect.io/api:kP8T1CK7/teams/search" \ --data-urlencode "company_id=your-company-id" \ --data-urlencode "api_key=your-api-key" \ --data-urlencode "q=north region"
curl -G "https://api.vh3connect.io/api:kP8T1CK7/entities/customer/contact-456/teams" \ --data-urlencode "company_id=your-company-id" \ --data-urlencode "api_key=your-api-key"
curl -G "https://api.vh3connect.io/api:kP8T1CK7/users/42/teams" \ --data-urlencode "company_id=your-company-id" \ --data-urlencode "api_key=your-api-key"
Was this page helpful?
Suggestions