アプリにユーザーを招待する
POST
https://deploygate.com/api/users/{OWNER_NAME}/platforms/{PLATFORM_TYPE}/apps/{APP_ID}/members
ユーザーが所有するアプリに別のユーザーを招待できます。(グループは専用のAPIをご利用ください)
Path Params
Name | Type | Required | Description |
---|---|---|---|
OWNER_NAME | string | true | アプリを所有するユーザー名 |
PLATFORM_TYPE | string | true | ios もしくは android |
APP_ID | string | true | アプリのパッケージ名 (例: com.deploygate.android) |
Body
Name | Type | Required | Description |
---|---|---|---|
users | string | true | ユーザー名もしくはメールアドレス、カンマ(,)区切りで複数指定可能 |
role | string | true | 開発者として追加する場合1 (旧Free/Lite/Pro/Bizプランのみ)、 テスターとして追加する場合は2を指定してください |
Example
curl \
--url "https://deploygate.com/api/users/_your_name_/platforms/android/apps/com.deploygate.sample/members" \
-H "Authorization: Bearer ${TOKEN}" \
-X GET \
--form-string "users=${USERS}" \
--form-string "role=${ROLE}"
Result 200
{
"error": false,
"results": {
"invite": "member invite success",
"added": [
{
"name": "existing_user",
"role": 2
}
],
"invited": [
{
"email": "new_user@example.com"
}
]
}
}