WSO2 · JSON Structure

Admin Api Application Update Request Structure

Request body to update application attributes

Type: object Properties: 2
API ManagementGatewaysOpen SourceAPI LifecycleGraphQLSOAPREST

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

Properties

owner tokenType

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/admin-api-application-update-request-structure.json",
  "name": "ApplicationUpdateRequest",
  "description": "Request body to update application attributes",
  "type": "object",
  "properties": {
    "owner": {
      "type": "string",
      "description": "The new owner of the application"
    },
    "tokenType": {
      "type": "string",
      "description": "The type of token for the application (e.g., JWT)",
      "enum": [
        "JWT"
      ]
    }
  }
}