Demandbase · Schema

CreateApiKeyRequest

Account-Based MarketingAdvertisingAI AgentsB2B MarketingData EnrichmentIntent DataPersonalizationSales Intelligence

Properties

Name Type Description
name string Descriptive name for the API key set
scopes array API scopes to authorize
View JSON Schema on GitHub

JSON Schema

demandbase-createapikeyrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateApiKeyRequest",
  "title": "CreateApiKeyRequest",
  "type": "object",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Descriptive name for the API key set"
    },
    "scopes": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "API scopes to authorize"
    }
  }
}