CreateUsagePlanKeyRequest

The POST request to create a usage plan key for adding an existing API key to a usage plan.

APIs.ioEngineeringPlatform

Properties

Name Type Description
keyId object
keyType object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-createusageplankeyrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateUsagePlanKeyRequest",
  "title": "CreateUsagePlanKeyRequest",
  "type": "object",
  "required": [
    "keyId",
    "keyType"
  ],
  "properties": {
    "keyId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The identifier of a UsagePlanKey resource for a plan customer."
        }
      ]
    },
    "keyType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The type of a UsagePlanKey resource for a plan customer."
        }
      ]
    }
  },
  "description": "The POST request to create a usage plan key for adding an existing API key to a usage plan."
}