Confirm an organization invite

Confirm an organization invite by providing the organization ID and the invite token.

GET

Parameters

Path Parameters

OrganizationId
REQUIRED
Unique identifier of the organization

Query Parameters

Token
REQUIRED
The invite token.
Member_id
REQUIRED
The member ID.
Status codeDescription
200Successfully retrieved the organization details.
400Bad request error - the request contains invalid parameters or malformed data
500Internal server error - an unexpected error occurred on the server
cURL
curl -L \
"https://blockv-labs.io/organizations/{organizationId}/invite?token={token}&member_id={member_id}" \
-H 'Accept: application/json'
Response
{
"access_token": "string",
"refresh_token": "string"
}
json
{
"type": "object",
"required": [
"access_token",
"refresh_token"
],
"properties": {
"access_token": {
"type": "string"
},
"refresh_token": {
"type": "string"
}
}
}