Chats
List Chat Members
Returns the restricted chat’s audience. Chat members are distinct from project members: audience membership only narrows who can read the chat and never grants project access. Only users who can update the chat may read its audience.
GET
Error
Authorizations
Personal Access Token, sent verbatim as pat_<32 chars>. PATs are
minted from the Chief settings UI.
Headers
Project identifier scoping the request. Required on every
project-scoped public endpoint. Missing or malformed values respond
with HTTP 400 and code publicapi.tenancy.project.missing.
Pattern:
^project_[a-z0-9]{20}$Path Parameters
Chat identifier.
Pattern:
^chat_[a-z0-9]{20}$Response
The chat's audience.
Previous
Add Chat MemberAdds one user to the restricted chat's audience by email. The email
must resolve to a current member of the chat's project — a newly
invited user becomes addable only after accepting the invitation.
Unknown emails are rejected with code
`publicapi.chats.members.add.email.unknown` and nothing changes.
Idempotent: re-adding an existing audience member succeeds without
change. Requires the chat's visibility to be `restricted`; other
levels respond `409`.
Next
Error