---
title: "POST /public/v1/writing-styles"
method: POST
path: "/public/v1/writing-styles"
tags: ["Writing Styles"]
---

# POST /public/v1/writing-styles

`POST /public/v1/writing-styles`

Create a new writing style (status: PENDING). Populate `dos` and `donts` now or later via `PATCH /public/v1/writing-styles/:id`. A writing style needs rules before it can be linked to a campaign.

**Required:** `workspaceId`, `name`

**Optional:** `dos`, `donts`, `connectInstructions`, `inmailInstructions`, `qna`, `templateName`, `templateFollowUpConfig`, `accessScope`

**accessScope:**
- `OWNER` (default) — private to the authenticated user
- `WORKSPACE` — shared across the workspace; only ADMIN or OWNER members can set this

## Request body

- object
  - `workspaceId` string, required — ID of the workspace to create the writing style in.
  - `name` string, required — Display name for the writing style.
  - `dos` string[] — List of things the AI should do when writing in this style.
  - `donts` string[] — List of things the AI should avoid when writing in this style.
  - `connectInstructions` string — Type any custom instructions here — tone preferences, message length guidelines, personalization rules, or any other direction for how your connect sequences should be written.
  - `inmailInstructions` string — Type any custom instructions here — tone preferences, message length guidelines, personalization rules, or any other direction for how your InMail sequences should be written.
  - `qna` object[] — Optional Q&A pairs that give the AI additional context about your tone and preferences.
    - `question` string, required
    - `answer` string, required
  - `templateName` string — Optional template label (e.g. "Executive", "Startup") used to categorise the style.
  - `templateFollowUpConfig` object — Follow-up timing config (days between touches). Keys are f_1 through f_10; use 0 to skip a step.
    - `f_1` integer
    - `f_2` integer
    - `f_3` integer
    - `f_4` integer
    - `f_5` integer
    - `f_6` integer
    - `f_7` integer
    - `f_8` integer
    - `f_9` integer
    - `f_10` integer
  - `accessScope` 'OWNER' | 'WORKSPACE' — Who can use this writing style. OWNER = private to you; WORKSPACE = shared across the workspace (ADMIN/OWNER only).

## Response `201`

Default Response

- object
  - `statusCode` number
  - `status` boolean
  - `message` string
  - `data` object
    - `writing_style` object
      - `id` string
      - `name` string
      - `status` string
      - `access_scope` string
      - `created_at` string

## Other responses

- `400` — Default Response
- `401` — Default Response
- `403` — Default Response
- `429` — Default Response
- `500` — Default Response

---

[API](https://skmtc.net/joinvalley/apis/valley-public-api.md) · [All operations](https://skmtc.net/joinvalley/apis/valley-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/joinvalley/valley-public-api/revisions/1d888a894943/schema)
