メインコンテンツまでスキップ

ワークスペースのグループにメンバーを追加する

POST https://deploygate.com/api/enterprises/{WORKSPACE_NAME}/organizations/{ORGANIZATION_NAME}/users

新しいユーザーをワークスペースのグループに追加します。追加するユーザーはワークスペースに所属している必要があります。


Path Params

NameTypeRequiredDescription
WORKSPACE_NAMEstringtrueワークスペース名
ORGANIZATION_NAMEstringtrueグループ名

Body

NameTypeRequiredDescription
userstringtrueユーザー名

Example

curl \
-X POST \
--url "https://deploygate.com/api/enterprises/${WORKSPACE_NAME}/organizations/${ORGANIZATION_NAME}/users" \
-H "Accept: application/json" \
-H "Authorization: Bearer ${API_TOKEN}" \
--form-string "user=${USER_NAME}"

Result 201