Neon · Schema

ApiKeyCreateResponse

Response containing the newly created API key

DatabasesServerlessPostgresInfrastructureAuthenticationEdge

Properties

Name Type Description
id integer The API key ID
key string The full API key value. This is only returned once at creation and cannot be retrieved again.
View JSON Schema on GitHub

JSON Schema

neon-apikeycreateresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ApiKeyCreateResponse",
  "title": "ApiKeyCreateResponse",
  "type": "object",
  "description": "Response containing the newly created API key",
  "properties": {
    "id": {
      "type": "integer",
      "format": "int64",
      "description": "The API key ID"
    },
    "key": {
      "type": "string",
      "description": "The full API key value. This is only returned once at creation and cannot be retrieved again."
    }
  }
}