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

ワークスペースに共有チームを追加する

POST https://deploygate.com/api/enterprises/{WORKSPACE_NAME}/shared_teams

新しい共有チームを作成し、ワークスペースに追加します。


Path Params

NameTypeRequiredDescription
WORKSPACE_NAMEstringtrueワークスペース名

Body

NameTypeRequiredDescription
namestringtrue共有チーム名
descriptionstringfalse共有チーム概要

Example

curl \
-X POST \
--url "https://deploygate.com/api/enterprises/${WORKSPACE_NAME}/shared_teams" \
-H "Accept: application/json" \
-H "Authorization: Bearer ${API_TOKEN}" \
--form-string "name=${SHARED_TEAM_NAME}" \
--form-string "description=this is the description of the new shared team"

Result 201