Invite a new member to the workspace. Only owners and managers can invite members.
curl --request POST \
--url https://app.mavera.io/api/v1/workspaces/{id}/members \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"email": "jsmith@example.com",
"role": "viewer"
}
'{
"id": "<string>",
"object": "workspace.invitation",
"workspace_id": "<string>",
"email": "jsmith@example.com",
"role": "owner",
"status": "pending",
"invited_by": "<string>",
"expires_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z"
}Documentation Index
Fetch the complete documentation index at: https://docs.mavera.io/llms.txt
Use this file to discover all available pages before exploring further.
API key prefixed with mvra_live_. Create keys at Settings > Developer > API Keys.
Workspace ID
Invitation sent
workspace.invitation Role of a workspace member
owner, manager, analyst, viewer, editor, creative_specialist, client_viewer, department_admin pending, accepted, expired, declined curl --request POST \
--url https://app.mavera.io/api/v1/workspaces/{id}/members \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"email": "jsmith@example.com",
"role": "viewer"
}
'{
"id": "<string>",
"object": "workspace.invitation",
"workspace_id": "<string>",
"email": "jsmith@example.com",
"role": "owner",
"status": "pending",
"invited_by": "<string>",
"expires_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z"
}