---
title: "Save summaries"
method: POST
path: "/v6/summaries"
tags: ["Summaries"]
---

# Save summaries

`POST /v6/summaries`

Save new (or update existing) summaries

## Request body

- MultiParamSummaryPostDto
  - `data` SummaryPostDto[], required
    - `id` string — Id of the summary, required when updating an existing summary
    - `summary` string, required — Content of the summary
    - `date` string, date, required — Date of the summary (must be first of the month)
    - `status` 'ACTIVE' | 'INACTIVE' | 'REMOVED' — Status of the summary

## Response `200`

Success

- ResponseListMultiResponseSummaryGetDto
  - `result` 'SUCCESS' | 'FAILURE' — The result of the action performed.
  - `data` MultiResponseSummaryGetDto[] — The data generated by the action performed.
    - `result` 'SUCCESS' | 'FAILURE' — The result of the action performed.
    - `statusCode` 200 | 400 | 401 | 403 | 404 | 500 — The HTTP status code for the action performed.
    - `data` SummaryGetDto — The data generated by the action performed.
      - `id` string, required — Id of the summary, required when updating an existing summary
      - `summary` string, required — Content of the summary
      - `date` string, date, required — Date of the summary (must be first of the month)
      - `status` 'ACTIVE' | 'INACTIVE' | 'REMOVED', required — Status of the summary
      - `conversation` ConversationExpanded, nullable, required — The conversation associated with this entity
        - `id` string, required — Id of the conversation
        - `readStatus` 'READ' | 'UNREAD' — Read status of the conversation for the authenticated user
      - `company` CompanyExpanded, required — Company associated with this conversation
        - `id` string, required — Id of the company
        - `name` string — Name of the company
    - `error` ErrorItem[]
      - `type` 'UNKNOWN_ERROR' | 'INVALID_TOKEN' | 'EXPIRED_TOKEN' | 'FORBIDDEN' | 'BAD_REQUEST' | 'JSON_ERROR' | 'DUPLICATE' | 'REQUIRED' | 'INVALID_VALUE' | 'NOT_MODIFIABLE' | 'INVALID_FORMAT' | 'NOT_FOUND' — The type of the error. Safe for programmatic use.
      - `message` string — A human-readable message providing more details about the error. Safe for displaying to a user.
      - `param` string — If the error is parameter-specific, the parameter related to the error. This can be used to display a message near the correct form field.
  - `error` ErrorItem[]
    - `type` 'UNKNOWN_ERROR' | 'INVALID_TOKEN' | 'EXPIRED_TOKEN' | 'FORBIDDEN' | 'BAD_REQUEST' | 'JSON_ERROR' | 'DUPLICATE' | 'REQUIRED' | 'INVALID_VALUE' | 'NOT_MODIFIABLE' | 'INVALID_FORMAT' | 'NOT_FOUND' — The type of the error. Safe for programmatic use.
    - `message` string — A human-readable message providing more details about the error. Safe for displaying to a user.
    - `param` string — If the error is parameter-specific, the parameter related to the error. This can be used to display a message near the correct form field.

## Other responses

- `207` — Some summaries failed to save. See response body for error details.
- `400` — All summaries failed to save.
- `401` — Not authenticated
- `403` — Not authorized
- `404` — Endpoint not found
- `500` — Internal server error

---

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