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.
Case management for multi-step operational workflows
company_id
api_key
title
type
escalation
complaint
follow_up
description
priority
low
medium
high
critical
actor_type
user
system
automation
actor_id
tags
metadata
due_date
curl -X POST "https://api.vh3connect.io/api:kP8T1CK7/cases/create" \ -H "Content-Type: application/json" \ -d '{ "company_id": "your-company-id", "api_key": "your-api-key", "title": "Repeat boiler failure at Tesco Manchester", "type": "escalation", "priority": "high", "description": "Third callout in 6 weeks for the same unit. Needs senior engineer assessment." }'
status
owner_id
search
page
per_page
curl -G "https://api.vh3connect.io/api:kP8T1CK7/cases/list" \ --data-urlencode "company_id=your-company-id" \ --data-urlencode "api_key=your-api-key" \ --data-urlencode "status=open" \ --data-urlencode "priority=high"
curl -G "https://api.vh3connect.io/api:kP8T1CK7/cases/search" \ --data-urlencode "company_id=your-company-id" \ --data-urlencode "api_key=your-api-key" \ --data-urlencode "q=boiler Manchester"
curl -G "https://api.vh3connect.io/api:kP8T1CK7/cases/case-001" \ --data-urlencode "company_id=your-company-id" \ --data-urlencode "api_key=your-api-key"
curl -X PATCH "https://api.vh3connect.io/api:kP8T1CK7/cases/case-001" \ -H "Content-Type: application/json" \ -d '{ "company_id": "your-company-id", "api_key": "your-api-key", "priority": "critical" }'
curl -X POST "https://api.vh3connect.io/api:kP8T1CK7/cases/case-001/transition" \ -H "Content-Type: application/json" \ -d '{ "company_id": "your-company-id", "api_key": "your-api-key", "status": "resolved" }'
curl -X POST "https://api.vh3connect.io/api:kP8T1CK7/cases/case-001/comments" \ -H "Content-Type: application/json" \ -d '{ "company_id": "your-company-id", "api_key": "your-api-key", "body": "Senior engineer booked for Friday. Parts on order." }'
curl -G "https://api.vh3connect.io/api:kP8T1CK7/cases/case-001/activity" \ --data-urlencode "company_id=your-company-id" \ --data-urlencode "api_key=your-api-key"
curl -X POST "https://api.vh3connect.io/api:kP8T1CK7/cases/case-001/participants" \ -H "Content-Type: application/json" \ -d '{ "company_id": "your-company-id", "api_key": "your-api-key", "user_id": "user-42" }'
curl -X POST "https://api.vh3connect.io/api:kP8T1CK7/cases/case-001/items" \ -H "Content-Type: application/json" \ -d '{ "company_id": "your-company-id", "api_key": "your-api-key", "item_type": "job", "item_id": "12345" }'
Was this page helpful?
Suggestions