Add
- POST
- /workspaces
- /:workspace
- /members
Adds a user to the workspace. Restricted to administrators only.
Request
REQUIRED SCOPES
WORKSPACE
URL PARAMETERS
workspacerequired string
The workspace name.POST PARAMETERS
emailrequired string
Email address of the user.Last modified on Apr 8, 2025
Example:
curl -X POST "https://api.buddy.works/workspaces/:workspace/members" \
-H "Authorization: Bearer <YOUR-TOKEN>" \
-H "Content-Type: application/json" \
-d '{
"email": "mike.benson@buddy.works"
}'EXAMPLE RESPONSE{ "url": "https://api.buddy.works/workspaces/buddy/member/1", "html_url": "https://app.buddy.works/buddy/profile/1", "id": 1, "avatar_url": "https://app.buddy.works/image-server/user/0/0/0/0/0/0/1/171d78a3db9dc63368319ef4c9af9d9c/w/32/32/AVATAR.png", "admin": false, "workspace_owner": false }
STATUS201 Created
LIMITSX-Rate-Limit-Limit: 1 X-Rate-Limit-Remaining: 999