WSO2 · JSON Structure

Devportal Api Consumer Secret Structure

ConsumerSecret schema from WSO2 API Manager

Type: object Properties: 3
API ManagementGatewaysOpen SourceAPI LifecycleGraphQLSOAPREST

ConsumerSecret is a JSON Structure definition published by WSO2, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

secretId secretValue additionalProperties

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-consumer-secret-structure.json",
  "name": "ConsumerSecret",
  "description": "ConsumerSecret schema from WSO2 API Manager",
  "type": "object",
  "properties": {
    "secretId": {
      "type": "string",
      "description": "Unique identifier for the secret",
      "example": "sec_123456"
    },
    "secretValue": {
      "type": "string",
      "description": "The actual secret string",
      "example": "***r3tV@lu3"
    },
    "additionalProperties": {
      "type": "object",
      "description": "Additional dynamic properties for the secret creation request.",
      "additionalProperties": {
        "type": "object"
      },
      "example": {
        "expiresAt": 1761568483,
        "description": "pizza application secret"
      }
    }
  }
}