---
title: "Add a participant to a talk chat"
method: POST
path: "/service_agents/talk_chats/{id}/participants"
tags: ["Service Agent"]
---

# Add a participant to a talk chat

`POST /service_agents/talk_chats/{id}/participants`

Adds a new participant to a specific talk chat.

## Path parameters

- `id` string, required

## Request body

- object
  - `owner_type` string, required — Type of the owner (agent, customer, etc.).
  - `owner_id` string, required — ID of the owner to add as participant.

## Response `200`

Participant added successfully.

- TalkManagerParticipant
  - `id` string, uuid — The unique identifier of the participant.
  - `customer_id` string, uuid — The unique identifier of the customer. Returned from the `GET /customers` response.
  - `owner_type` string — Resource's owner type.
  - `owner_id` string, uuid — The unique identifier of the participant owner. Returned from the corresponding owner resource endpoint.
  - `chat_id` string, uuid — The unique identifier of the talk this participant belongs to. Returned from the `GET /service_agents/talk_chats` response.
  - `tm_joined` string, date-time — Timestamp when the participant joined the talk.

## Other responses

- `400` — Invalid request (INVALID_ARGUMENT).
- `401` — Authentication required (UNAUTHENTICATED).
- `403` — Insufficient permission (PERMISSION_DENIED).
- `404` — Resource not found (NOT_FOUND).
- `500` — Internal error (INTERNAL).

---

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