POST
/
v1
/
workspaces
/
{workspace_id}
/
members
/
join
curl --request POST \
  --url https://api.ziplink.click/v1/workspaces/{workspace_id}/members/join \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "token": "tDCVsHnzeOj278GIT85xU0s_"
}'
{
  "is_verified": true,
  "token": "tDCVsHnzeOj278GIT85xU0s_"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

workspace_id
string
required

ID of the workspace.

Example:

"ab782971-4d79-47ab-8685-77cf5a34b2bb"

Body

application/json
Join a workspace.
token
string
required

Token to verify

Example:

"tDCVsHnzeOj278GIT85xU0s_"

Response

200
application/json
OK
is_verified
boolean
required

The verification result.

Example:

true

token
string
required

The token sent for verification.

Example:

"tDCVsHnzeOj278GIT85xU0s_"