Couchbase · Schema

ApiKeyCreateResponse

Response after creating an API key

AnalyticsApp ServicesBackupCapellaCloudDatabaseDBaaSEventingFull-Text SearchGatewayJSONMobileNoSQLReplicationSQL++SyncVector SearchXDCR

Properties

Name Type Description
id string API key UUID
token string The API key secret token (only returned once at creation time)
View JSON Schema on GitHub

JSON Schema

couchbase-apikeycreateresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ApiKeyCreateResponse",
  "title": "ApiKeyCreateResponse",
  "type": "object",
  "description": "Response after creating an API key",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "description": "API key UUID"
    },
    "token": {
      "type": "string",
      "description": "The API key secret token (only returned once at creation time)"
    }
  }
}