Add Member to Workspace
POST
https://deploygate.com/api/enterprises/{WORKSPACE_NAME}/users
Add a new member's account to your Workspace.
Path Params
Name | Type | Required | Description |
---|---|---|---|
WORKSPACE_NAME | string | true | Name of Workspace |
Body
Name | Type | Required | Description |
---|---|---|---|
user | string | true | Mail Address |
Example
curl \
-X POST \
--url "https://deploygate.com/api/enterprises/${WORKSPACE_NAME}/users" \
-H "Accept: application/json" \
-H "Authorization: Bearer ${API_TOKEN}" \
--form-string "user=${EMAIL}"
Result 201