Hide

RegistryUI Documentation

Display
Print

/udr/v1api/taginfo (delete)

EndpointMethodDescription
/udr/v1api/taginfoDELETERemoves a named tag.

Authentication

Basic Authorization header required. The specified user must have administrator privileges.

Query String Arguments

ArgumentTypeDescription
repositorystringDefines the full path of the repository where a tag is removed.
tagNamestringDefines the name of the tag to remove.

Response

A JSON object is returned. If an error occurs, the "error" field will contain a descriptive error message (see Standard API Response).

FieldTypeDescription
databoolContains true indicating that the tag has been removed.

Example

curl -u username:usertoken -X DELETE https://registry.yoursite.com/udr/v1api/taginfo?repository=alpine&tagname=latest

Response:
{
    "error": null,
    "data": true
}