アプリの配布ページを削除する
DELETE
https://deploygate.com/api/distributions/{DISTRIBUTION_KEY}
Path Params
Name | Type | Required | Description |
---|---|---|---|
DISTRIBUTION_KEY | string | true | 配布ページのURL最後部に表示される配布ページ固有の値。https://deploygate.com/distributions/ に続いて表示される16進数表記の40文字の値です。 |
Example
curl \
--url "https://deploygate.com/api/distributions/${DISTRIBUTION_KEY}" \
-H "Authorization: Bearer ${TOKEN}" \
-X DELETE
Result 200
{
"error": false,
"results": {
"message": "deleted"
}
}