Skip to main content

Get Users of App

GET https://deploygate.com/api/users/{OWNER_NAME}/platforms/{PLATFORM_TYPE}/apps/{APP_ID}/members


Caution

App's owner itself isn't contained in the response data.

Path Params

NameTypeRequiredDescription
OWNER_NAMEstringtrueApp owner's user name
PLATFORM_TYPEstringtrueios or android
APP_IDstringtrueApp's package name (Example: com.deploygate.android)

Example

curl \
--url "https://deploygate.com/api/users/${OWNER_NAME}/platforms/${PLATFORM_TYPE}/apps/${APP_ID}" \
-H "Authorization: Bearer ${TOKEN}" \
-X GET

Result 200

{
"error": false,
"results": {
"usage": {
"used": 2,
"max": 1000
},
"users": [
{
"name": "existing_user",
"role": 2
},
{
"name": "another_user",
"role": 2
}
]
}
}