Session Participants
Session participants represent the clients and other entities that are connected to a session. This read-only resource tracks who is participating in a session.
Session Participants object
Attributes
object
StringString representing the object's type
id
StringUnique session participant identifier
type
StringNullableParticipant type
name
StringNullableDisplay name
description
StringNullableDescription
metadata
ObjectNullableCustom key-value pairs
session_id
StringParent session ID
created_at
DateTimestamp when created
updated_at
DateTimestamp when last updated
{"object": "session.participant","id": "spt_5eFgHjKlMnPqRsTu","type": "client","name": "Claude Desktop","description": "Claude desktop client connection","metadata": {"client_version": "1.2.3"},"session_id": "ses_4dEfGhJkLmNpQrSt","created_at": "2025-09-15T10:30:00.000Z","updated_at": "2026-01-10T14:45:00.000Z"}
List session participants
Returns a paginated list of participants in a session.
URL Parameters
session_id
StringThe unique identifier for the session
Query Parameters
limit
NumberOptionalMaximum number of items to return (1-100)
after
StringOptionalReturn items after this ID
before
StringOptionalReturn items before this ID
cursor
StringOptionalPagination cursor from a previous response
order
EnumOptionalSort order for results
type
StringOptionalFilter by participant type
curl -X GET "https://api.metorial.com/sessions/ses_Rm4Mnheq2bfEPhBhP7SY/participants" \-H "Authorization: Bearer metorial_sk_..."
Get session participant
Retrieves a specific participant in a session.
URL Parameters
session_id
StringThe unique identifier for the session
session_participant_id
StringThe unique identifier for the session_participant
curl -X GET "https://api.metorial.com/sessions/ses_Rm4Mnheq2bfEPhBhP7SY/participants/ses_Rm4Mnheq2bfEPhBhP7SY" \-H "Authorization: Bearer metorial_sk_..."