Names

Name availability checks for new registries

This tag groups all operations for names.

Get container registry name availability

head

Validate that the name is suitable to use for a new registry:

  • it uses only the characters "a-z", "0-9", or "-"

  • and starts with a letter and ends with a letter or number

  • and is between 3 to 63 characters in length

  • and is available

Authorizations
Path parameters
namestringRequired

The desired registry name

Pattern: ^[a-z][-a-z0-9]{1,61}[a-z0-9]$
Responses
200
OK. The registry name is valid but already in use
head
HEAD /containerregistries/names/{name} HTTP/1.1
Host: api.ionos.com
Authorization: Basic username:password
Accept: */*

No content

Was this helpful?