Skip to main content

Get Shared Team list in Enterprise

GET https://deploygate.com/api/enterprises/{ENTERPRISE_NAME}/shared_teams

Get shared team list of Enterprise.


Path Params

NameTypeRequiredDescription
ENTERPRISE_NAMEstringtrueName of Enterprise

Example

curl \
-X GET \
--url "https://deploygate.com/api/enterprises/${ENTERPRISE_NAME}/shared_teams" \
-H "Accept: application/json" \
-H "Authorization: Bearer ${API_TOKEN}"

Result 200

{
"error": false,
"teams": [
{
"name": "Owner",
"role": "owner",
"member_count": 1
}
]
}