REST API v1
Every resource. Read + write.
Token auth, scope-gated writes, rate-limited per token. Every response carries
X-MLC-Request-Id for support correlation.
GET
/v1/api.ashx?resource=tags
List conversation tags for the calling site. POST/PATCH/DELETE for write scope.
GET
/v1/api.ashx?resource=conversation_starters
List configured AI conversation starter prompts.
GET
/v1/api.ashx?resource=handoffs&since=&limit=
AI-to-human handoff log. Filter by date, paginate.
GET
/v1/api.ashx?resource=transcripts&sessionId=
Full chat transcript for a single session. Includes AI + human messages.
GET
/v1/api.ashx?resource=usage
AI replies served + bot tokens consumed this billing cycle.
GET
/v1/api.ashx?resource=feedback
Visitor satisfaction ratings + comments from post-chat surveys.
GETPOSTDEL
/v1/api.ashx?resource=visitors
Upsert visitor identity by stable key. Cross-references to event log + segments.
POST
/v1/api.ashx?resource=track
Record a tracked event for a visitor. Powers segment evaluation.
GETPOSTPATCHDEL
/v1/api.ashx?resource=webhook_subscriptions
Full CRUD over your webhook subscriptions, plus secret rotation.
GET
/v1/api.ashx?resource=whoami
Token introspection: site_id, scopes, request_count. No auth probing required.