curl --request POST \
--url https://api.replyke.com/api/v6/:projectId/api/v7/spaces/:spaceId/join{
"message": "<string>",
"membership": {
"id": "<string>",
"spaceId": "<string>",
"userId": "<string>",
"role": "<string>",
"status": "<string>",
"joinedAt": "<string>"
}
}Join a space or submit a membership request
curl --request POST \
--url https://api.replyke.com/api/v6/:projectId/api/v7/spaces/:spaceId/join{
"message": "<string>",
"membership": {
"id": "<string>",
"spaceId": "<string>",
"userId": "<string>",
"role": "<string>",
"status": "<string>",
"joinedAt": "<string>"
}
}requireJoinApproval: true, the membership is created with status: "pending" until approved. Otherwise it is immediately active.
Space Not Found — 404
{ "error": "Space not found.", "code": "space/not-found" }
Banned — 403
{ "error": "You are banned from this space.", "code": "space/banned" }
Already a Member — 409
{ "error": "You are already a member of this space.", "code": "space/already-member" }