アプリの配布ページを配布ページの名前で削除する
DELETE
https://deploygate.com/api/users/{OWNER_NAME}/platforms/{PLATFORM_TYPE}/apps/{APP_ID}/distributions
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 |
---|---|---|---|
distribution_name | string | true | 配布ページの名前 (配布ページのタイトル) 同じ名前の配布ページが2つ以上存在する場合ステータスコード400を返して失敗します |
Example
curl \
--url "https://deploygate.com/api/users/${OWNER_NAME}/platforms/${PLATFORM_TYPE}/apps/${APP_ID}/distributions" \
-H "Authorization: Bearer ${TOKEN}" \
-X DELETE \
--form-string "distribution_name=${DISTRIBUTION_NAME}"
Result 200
{
"error": false,
"results": {
"message": "deleted successfully"
}
}
Result 404
{
"error": true,
"message": "not found",
"because": "not found"
}