Skip to content

/registry-credentials (POST)

POST
/registry-credentials
curl --request POST \
--url https://example.com/api/v1/registry-credentials \
--header 'Content-Type: application/json' \
--data '{ "registryUrl": "example", "username": "example", "password": "example" }'
Media type application/json
object
registryUrl
required
string
>= 1 characters <= 255 characters
username
required
string
>= 1 characters <= 255 characters
password
required
string
>= 1 characters <= 4096 characters
Example generated
{
"registryUrl": "example",
"username": "example",
"password": "example"
}

Default Response

Media type application/json
object
id
required
string
registryUrl
required
string
username
required
string
createdAt
required
string format: date-time
Example generated
{
"id": "example",
"registryUrl": "example",
"username": "example",
"createdAt": "2026-04-15T12:00:00Z"
}

Default Response

Media type application/json
object
type
required
string
title
required
string
status
required
integer
code
required
string
detail
string
instance
string
errors
Array<object>
object
path
required
string
message
required
string
Example generated
{
"type": "example",
"title": "example",
"status": 1,
"code": "example",
"detail": "example",
"instance": "example",
"errors": [
{
"path": "example",
"message": "example"
}
]
}