WSO2 · JSON Structure

Devportal Api Apiapi Key Info Structure

APIAPIKeyInfo schema from WSO2 API Manager

Type: object Properties: 6
API ManagementGatewaysOpen SourceAPI LifecycleGraphQLSOAPREST

API Key details to invoke APIs is a JSON Structure definition published by WSO2, describing 6 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

keyUUID keyName associatedApp issuedOn validityPeriod lastUsed

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/wso2/refs/heads/main/json-structure/devportal-api-apiapi-key-info-structure.json",
  "name": "API Key details to invoke APIs",
  "description": "APIAPIKeyInfo schema from WSO2 API Manager",
  "type": "object",
  "properties": {
    "keyUUID": {
      "type": "string",
      "description": "The UUID of the API key"
    },
    "keyName": {
      "type": "string",
      "description": "API Key name",
      "example": "Test_Key"
    },
    "associatedApp": {
      "type": "string",
      "description": "Associated application",
      "example": "DefaultApplication"
    },
    "issuedOn": {
      "type": "int64",
      "description": "Created Time",
      "example": "2026-02-06 23:45:07"
    },
    "validityPeriod": {
      "type": "int64",
      "example": 3600
    },
    "lastUsed": {
      "type": "int64",
      "description": "Last used time as epoch milliseconds.",
      "example": "2026-02-06 23:45:07"
    }
  }
}