Skip to main content
POST
/
api
/
v1
/
spaces
/
{space_id}
/
session
/
join
Join Session
curl --request POST \
  --url https://api.example.com/api/v1/spaces/{space_id}/session/join
{
  "is_owner": true
}

Join Space Session

Join the real-time session for a space. This registers your presence and allows you to receive space events.

Authentication

Requires a valid user JWT token.

Path Parameters

space_id
string
required
UUID of the space. Use me for your own space: POST /api/v1/spaces/me/session/join.

Response

is_owner
boolean
Whether the joining user owns the space.

Example

curl -X POST https://api.ama2.me/api/v1/spaces/me/session/join \
  -H "Authorization: Bearer YOUR_JWT_TOKEN"