Every endpoint of the Supovia REST API, generated from the API itself.
All endpoints are relative to https://api.supovia.com. Create an API key in your Supovia dashboard, then authenticate every request with it.
apiKey — HTTP Basic auth carrying only the API key secret: Authorization: Basic base64(<key secret>).
accessToken — Operator session token issued by the Supovia dashboard: Authorization: Token <access token>.
Download the OpenAPI specification for use with your own tooling.
Read several organization resources in one request
Executes a bounded batch of collection reads and returns an object keyed by each operation's alias. Only explicitly allow-listed, organization-scoped collections can be queried.
| Name | In | Type | Description |
|---|---|---|---|
| API-Version | header | string (1) | Compatibility version. Omit to select version 1. |
| Status | Meaning |
|---|---|
| 200 | Results keyed by operation alias |
List conversations
Lists the conversations of your organization, newest first when sorted by lastEditTime. Requires the conversations:read scope.
| Name | In | Type | Description |
|---|---|---|---|
| websiteId | query | string | |
| customerId | query | string | |
| limit | query | integer | |
| skip | query | integer | |
| sortField | query | string | |
| sortDirection | query | string (ASC | DESC) | |
| resolved | query | boolean | |
| fields | query | string | Comma-separated projection of fields to return |
| API-Version | header | string (1) | Compatibility version. Omit to select version 1. |
| Status | Meaning |
|---|---|
| 200 | Array of conversations |
| 401 | Missing or invalid credentials |
| 403 | API key is missing the conversations:read scope |
| 429 | API key rate limit exceeded |
Get a conversation
Returns a single conversation by id. Conversations belonging to another organization respond 404. Requires the conversations:read scope.
| Name | In | Type | Description |
|---|---|---|---|
| conversationIdrequired | path | string | |
| API-Version | header | string (1) | Compatibility version. Omit to select version 1. |
| Status | Meaning |
|---|---|
| 200 | The conversation |
| 404 | Not found (or owned by another organization) |
List customers
Requires the customers:read scope.
| Name | In | Type | Description |
|---|---|---|---|
| websiteId | query | string | |
| query | string | ||
| userId | query | string | Your own user id set via the widget setUserId |
| fields | query | string | Comma-separated projection of fields to return |
| API-Version | header | string (1) | Compatibility version. Omit to select version 1. |
| Status | Meaning |
|---|---|
| 200 | Array of customers |
Create a customer
Creates a customer on a website. Emits the customer.created webhook event. Requires the customers:write scope.
| Name | In | Type | Description |
|---|---|---|---|
| API-Version | header | string (1) | Compatibility version. Omit to select version 1. |
| Field | Type | Description |
|---|---|---|
| string | ||
| nickname | string | |
| phone | string | |
| language | string |
| Status | Meaning |
|---|---|
| 200 | The created customer |
| 403 | API key is missing the customers:write scope |
Get a customer
Returns a single customer by id. Customers belonging to another organization respond 404. Requires the customers:read scope.
| Name | In | Type | Description |
|---|---|---|---|
| customerIdrequired | path | string | |
| API-Version | header | string (1) | Compatibility version. Omit to select version 1. |
| Status | Meaning |
|---|---|
| 200 | The customer |
| 404 | Not found (or owned by another organization) |
Update a customer
Requires the customers:write scope.
| Name | In | Type | Description |
|---|---|---|---|
| customerIdrequired | path | string | |
| API-Version | header | string (1) | Compatibility version. Omit to select version 1. |
| Status | Meaning |
|---|---|
| 200 | The updated customer |
Search documents
Semantic (vector) search over your published help documents. Requires the documents:read scope.
| Name | In | Type | Description |
|---|---|---|---|
| queryrequired | query | string | |
| websiteId | query | string | |
| locale | query | string | |
| API-Version | header | string (1) | Compatibility version. Omit to select version 1. |
| Status | Meaning |
|---|---|
| 200 | Array of matching documents, best match first |
List documents
Requires the documents:read scope. For stable traversal, set pagination=cursor; the response becomes {items, nextCursor} and is ordered by ascending _id. Pass nextCursor back as cursor until it is null. Existing array responses and offset pagination remain available when cursor pagination is not requested.
| Name | In | Type | Description |
|---|---|---|---|
| websiteId | query | string | |
| locale | query | string | |
| documentId | query | string | Exact document id |
| category | query | string | |
| published | query | boolean | |
| search | query | string | Plain-text title search |
| pagination | query | string (cursor) | Set to cursor for a stable page envelope |
| cursor | query | string | Opaque nextCursor from the preceding cursor page |
| limit | query | integer | Optional bounded page size (maximum 500 and default 100 in cursor mode; 0 returns everything otherwise) |
| skip | query | integer | |
| fields | query | string | Comma-separated projection of fields to return |
| API-Version | header | string (1) | Compatibility version. Omit to select version 1. |
| Status | Meaning |
|---|---|
| 200 | Array of documents, or {items, nextCursor} in cursor mode |
List messages
Lists messages, usually filtered by conversationId. Requires the messages:read scope.
| Name | In | Type | Description |
|---|---|---|---|
| conversationId | query | string | |
| limit | query | integer | |
| skip | query | integer | |
| sortField | query | string | |
| sortDirection | query | string (ASC | DESC) | |
| fields | query | string | Comma-separated projection of fields to return |
| API-Version | header | string (1) | Compatibility version. Omit to select version 1. |
| Status | Meaning |
|---|---|
| 200 | Array of messages |
Create a message
Appends a message to a conversation. from is operator for replies sent on behalf of your team and customer for messages on behalf of the visitor. Emits the message.created webhook event. Requires the messages:write scope.
| Name | In | Type | Description |
|---|---|---|---|
| API-Version | header | string (1) | Compatibility version. Omit to select version 1. |
| Idempotency-Key | header | string | Unique retry key retained for 24 hours (maximum 255 characters). Authenticated callers only. |
| Field | Type | Description |
|---|---|---|
| conversationIdrequired | string | |
| contentrequired | string | |
| fromrequired | string (operator | customer) |
| Status | Meaning |
|---|---|
| 200 | The created message |
| 403 | API key is missing the messages:write scope |
Get a message by id
Returns one message to an authenticated operator or API key. A key requires the messages:read scope. Anonymous chat sessions cannot use this route. Messages belonging to another organization, or to a different Website than a Website-pinned key, respond 404.
| Name | In | Type | Description |
|---|---|---|---|
| messageIdrequired | path | string | |
| API-Version | header | string (1) | Compatibility version. Omit to select version 1. |
| Status | Meaning |
|---|---|
| 200 | The message |
| 404 | Not found (or outside the authenticated tenant) |
Mark a protected customer reply as read
| Name | In | Type | Description |
|---|---|---|---|
| API-Version | header | string (1) | Compatibility version. Omit to select version 1. |
| Status | Meaning |
|---|---|
| 200 | The receipt is read (including an idempotent retry) |
Rate an agent or operator reply
Records how the visitor rated one reply, as rating and ratingTime on that message. Called by the embedded chat surfaces with the visitor's chat-session credentials; there is no API-key or operator-token path, because the rating is the customer's own answer and nobody else may author it. Re-rating the same message overwrites the previous value. Emits MESSAGE_UPDATED_EVENT to the dashboard.
| Name | In | Type | Description |
|---|---|---|---|
| API-Version | header | string (1) | Compatibility version. Omit to select version 1. |
| Field | Type | Description |
|---|---|---|
| websiteIdrequired | string | |
| ratingrequired | string (unhappy | neutral | happy) |
| Status | Meaning |
|---|---|
| 200 | The rated message |
| 400 | Unrecognised rating value |
| 404 | No such rateable message for this chat session |
Read sandbox help-center documents without authentication
Returns a fixed set of demonstration help-center documents in the same {title, locale} shape as authenticated document reads. No account, credential, or key is required, so agents can evaluate the API before onboarding. Responses carry the standard RateLimit response headers and the anonymous pacing limit applies.
| Name | In | Type | Description |
|---|---|---|---|
| API-Version | header | string (1) | Compatibility version. Omit to select version 1. |
| Status | Meaning |
|---|---|
| 200 | Demonstration help-center documents. |
| 429 | Anonymous rate limit exceeded; retry after Retry-After seconds. |
Start a demonstration asynchronous document-summary job
Demonstrates the API's asynchronous-job pattern without authentication. The response is 202 Accepted with a Location header pointing at the job resource and a body carrying the job _id and status. Poll the Location URL until the status is succeeded, then read the summary from the job body. The job is deterministic fixture work that completes about two seconds after creation.
| Name | In | Type | Description |
|---|---|---|---|
| API-Version | header | string (1) | Compatibility version. Omit to select version 1. |
| Status | Meaning |
|---|---|
| 202 | Job accepted; poll the Location URL for the result. |
| 429 | Anonymous rate limit exceeded; retry after Retry-After seconds. |
Poll a demonstration document-summary job
Reads the status of a demonstration job started at POST /api/sandbox/documentsummaryjobs. While the job runs the status is running; afterwards it is succeeded and the body carries the document summary. No authentication is required.
| Name | In | Type | Description |
|---|---|---|---|
| jobIdrequired | path | string | |
| API-Version | header | string (1) | Compatibility version. Omit to select version 1. |
| Status | Meaning |
|---|---|
| 200 | Current job state. |
| 404 | Unknown job id. |
List webhook subscriptions
Webhook subscriptions deliver message.created, conversation.created and customer.created events to your server as signed POST requests (X-Supovia-Signature: t=<timestamp>,v1=<hex HMAC-SHA256 of "timestamp.body">). An endpoint failing 20 times in a row is disabled automatically. Subscriptions are managed with an operator access token; the secret is only returned once, on create.
| Name | In | Type | Description |
|---|---|---|---|
| API-Version | header | string (1) | Compatibility version. Omit to select version 1. |
| Status | Meaning |
|---|---|
| 200 | Array of webhook subscriptions (without secrets) |
Create a webhook subscription
The response includes the signing secret exactly once — store it; it cannot be retrieved again.
| Name | In | Type | Description |
|---|---|---|---|
| API-Version | header | string (1) | Compatibility version. Omit to select version 1. |
| Field | Type | Description |
|---|---|---|
| websiteIdrequired | string | |
| urlrequired | string | |
| events | array (message.created | conversation.created | customer.created) | Empty array subscribes to all events |
| Status | Meaning |
|---|---|
| 200 | The created subscription, including its secret |
Update a webhook subscription
url, events and active are editable; the secret and website are immutable. Re-enabling an auto-disabled endpoint is done by setting active back to true.
| Name | In | Type | Description |
|---|---|---|---|
| webhookSubscriptionIdrequired | path | string | |
| API-Version | header | string (1) | Compatibility version. Omit to select version 1. |
| Status | Meaning |
|---|---|
| 200 | The updated subscription (without secret) |
Delete a webhook subscription
| Name | In | Type | Description |
|---|---|---|---|
| webhookSubscriptionIdrequired | path | string | |
| API-Version | header | string (1) | Compatibility version. Omit to select version 1. |
| Status | Meaning |
|---|---|
| 200 | Deleted |
List websites
Lists the websites (projects) of your organization. Requires the websites:read scope.
| Name | In | Type | Description |
|---|---|---|---|
| API-Version | header | string (1) | Compatibility version. Omit to select version 1. |
| Status | Meaning |
|---|---|
| 200 | Array of websites |
Get a website by name
Requires the websites:read scope.
| Name | In | Type | Description |
|---|---|---|---|
| websiteNamerequired | path | string | |
| API-Version | header | string (1) | Compatibility version. Omit to select version 1. |
| Status | Meaning |
|---|---|
| 200 | The website |
| 404 | Not found |