ImportApiKeysRequest

The POST request to import API keys from an external source, such as a CSV-formatted file.

APIs.ioEngineeringPlatform

Properties

Name Type Description
body object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-importapikeysrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ImportApiKeysRequest",
  "title": "ImportApiKeysRequest",
  "type": "object",
  "required": [
    "body"
  ],
  "properties": {
    "body": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Blob"
        },
        {
          "description": "The payload of the POST request to import API keys. For the payload format, see API Key File Format."
        }
      ]
    }
  },
  "description": "The POST request to import API keys from an external source, such as a CSV-formatted file."
}