curl --request PUT \
--url https://api.example.com/room/share/:room_id{
"signature": "<string>"
}curl --request PUT \
--url https://api.example.com/room/share/:room_id{
"signature": "<string>"
}Authorization header. User must have access to the private room.
401 - Unauthorized (no token provided)403 - Forbidden (user does not have access to this private room)500 - Internal server errorcurl -X PUT https://api.planttogether.com/room/share/550e8400-e29b-41d4-a716-446655440000 \
-H "Authorization: YOUR_AUTH_TOKEN"
{
"signature": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
}
curl "https://api.planttogether.com/room/private/user-123/room-name?signature=SIGNATURE_TOKEN" \
-H "Authorization: THEIR_AUTH_TOKEN"
express/src/index.ts:154-169