---
title: "Join a talk chat"
method: POST
path: "/service_agents/talk_chats/{id}/join"
tags: ["Service Agent"]
---

# Join a talk chat

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

Allows the authenticated agent to join a "talk" type chat (public channel).
This is a convenience endpoint that automatically adds the agent as a participant.
Only works for "talk" type chats - for group/direct chats, use the participants endpoint.

## Path parameters

- `id` string, required

## Response `200`

Successfully joined the chat.

- 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/versions/79e779080bcc/schema)
