Xeonr Developer Docs
API SpecificationNamespaces

IssueApiKey

POST
/containers.api.v1.NamespaceService/IssueApiKey

Authorization

BearerAuth
AuthorizationBearer <token>

A namespace-scoped API key (cpk_…) for machines, or a Xeonr Auth OIDC token for humans. The key's namespace and role are pinned server-side.

In: header

Header Parameters

Connect-Protocol-Version*number

Define the version of the Connect protocol

Value in1
Connect-Timeout-Ms?number

Define the timeout, in ms

Request Body

application/json

namespace?string
name?string
role?string

Role is the permission tier a caller holds within a namespace.

Value in"ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_OPERATOR" | "ROLE_ADMIN"
[key: string]?never

Response Body

application/json

application/json

curl -X POST "https://containers.xeonr.io/containers.api.v1.NamespaceService/IssueApiKey" \  -H "Connect-Protocol-Version: 1" \  -H "Content-Type: application/json" \  -d '{}'
{
  "key": {
    "keyId": "string",
    "namespace": "string",
    "name": "string",
    "role": "ROLE_UNSPECIFIED",
    "createdAtUnix": 0,
    "lastUsedAtUnix": 0
  },
  "plaintext": "string"
}
{
  "code": "not_found",
  "message": "string",
  "details": [
    {
      "type": "string",
      "value": "string",
      "debug": {}
    }
  ]
}