---
title: "Create Support Message"
method: POST
path: "/api/v1/support/messages"
tags: ["support"]
---

# Create Support Message

`POST /api/v1/support/messages`

## Request body

- CreateSupportMessageRequest
  - `id` string, uuid, required
  - `kind` 'message' | 'bug_report', required
  - `body` string, required
  - `context` BugReportContext
    - `replay_url` string, nullable
    - `page_url` string, nullable
    - `project_id` string, uuid, nullable
    - `web_sha` string, nullable
    - `api_sha` string, nullable
    - `user_agent` string, nullable

## Response `201`

Successful Response

- SupportMessage
  - `id` string, uuid, required
  - `sender` 'user' | 'operator', required
  - `kind` 'message' | 'bug_report', required
  - `body` string, required
  - `context` BugReportContext
    - `replay_url` string, nullable
    - `page_url` string, nullable
    - `project_id` string, uuid, nullable
    - `web_sha` string, nullable
    - `api_sha` string, nullable
    - `user_agent` string, nullable
  - `delivered` boolean, required
  - `created_at` string, date-time, required

## Other responses

- `4XX` — Client Error
- `5XX` — Server Error

---

[API](https://skmtc.dev/rudus/apis/rudus-api.md) · [All operations](https://skmtc.dev/rudus/apis/rudus-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/rudus/rudus-api/revisions/f149124a4d80/schema)
