POST
/
workspaces
/
{wid}
/
members
curl --request POST \
  --url https://api.gologin.com/workspaces/{wid}/members \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "emails": [
    "<string>"
  ],
  "limitedAccess": true,
  "role": "owner",
  "folders": [
    {
      "name": "<string>",
      "role": {}
    }
  ],
  "workspaceName": "<string>"
}'

Authorizations

Authorization
string
header
required

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

Path Parameters

wid
string
required

Workspace ID

Body

application/json