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

アプリの配布ページを配布ページの名前で削除する

DELETE https://deploygate.com/api/users/{OWNER_NAME}/platforms/{PLATFORM_TYPE}/apps/{APP_ID}/distributions


Path Params

NameTypeRequiredDescription
OWNER_NAMEstringtrueアプリを所有するユーザー名
PLATFORM_TYPEstringtrueios もしくは android
APP_IDstringtrueアプリのパッケージ名 (例: com.deploygate.android)

Body

NameTypeRequiredDescription
distribution_namestringtrue配布ページの名前 (配布ページのタイトル) 同じ名前の配布ページが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"
}