Delete Distribution Page of App
DELETE
https://deploygate.com/api/distributions/{DISTRIBUTION_KEY}
Path Params
Name | Type | Required | Description |
---|---|---|---|
DISTRIBUTION_KEY | string | true | The unique key of distribution page. This is last 40 hex digits of URL path afterhttps://deploygate.com/distributions/ |
Example
curl \
--url "https://deploygate.com/api/distributions/${DISTRIBUTION_KEY}" \
-H "Authorization: Bearer ${TOKEN}" \
-X DELETE
Result 200
{
"error": false,
"results": {
"message": "deleted"
}
}