v32

latestOpenAPI 3.1.0raw.githubusercontent.com2026-05-151,1412,2144.5 MB
Everywhere Inference

Create inference registry credential

post/cloud/v3/inference/{project_id}/registry_credentials

Path parameters

project_idinteger required

Project ID

Example:1

Project ID

Request body

namestring required

Registry credential name.

passwordstring required

Registry password.

registry_urlstring required

Registry URL.

usernamestring required

Registry username.

Example request

{
  "name": "docker-io",
  "password": "password",
  "registry_url": "registry.example.com",
  "username": "username"
}

Response

OK

namestring required

Registry credential name.

project_idinteger required

Project ID to which the inference registry credentials belongs.

registry_urlstring required

Registry URL.

usernamestring required

Registry username.

Example response

{
  "name": "docker-io",
  "project_id": 1,
  "registry_url": "registry.example.com",
  "username": "username"
}