debian-mirror-gitlab/doc/api/dependency_proxy.md

32 lines
1.1 KiB
Markdown
Raw Normal View History

2021-01-29 00:20:46 +05:30
---
stage: Package
group: Package
2021-02-22 17:27:13 +05:30
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments
2021-01-29 00:20:46 +05:30
---
# Dependency Proxy API
2020-04-22 19:07:51 +05:30
## Purge the dependency proxy for a group
2021-01-29 00:20:46 +05:30
> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/11631) in GitLab 12.10.
> - [Moved](https://gitlab.com/gitlab-org/gitlab/-/issues/273655) to [GitLab Core](https://about.gitlab.com/pricing/) in GitLab 13.6.
2020-04-22 19:07:51 +05:30
2021-02-22 17:27:13 +05:30
Deletes the cached manifests and blobs for a group. This endpoint requires group admin access.
2020-04-22 19:07:51 +05:30
2021-02-22 17:27:13 +05:30
WARNING:
2021-01-29 00:20:46 +05:30
[A bug exists](https://gitlab.com/gitlab-org/gitlab/-/issues/277161) for this API.
2020-04-22 19:07:51 +05:30
```plaintext
DELETE /groups/:id/dependency_proxy/cache
```
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `id` | integer/string | yes | The ID or [URL-encoded path of the group](README.md#namespaced-path-encoding) owned by the authenticated user |
Example request:
```shell
curl --request DELETE --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/groups/5/dependency_proxy/cache"
```