Merge · Schema

RemoteKeyForRegenerationRequest

# The RemoteKeyForRegeneration Object ### Description The `RemoteKeyForRegeneration` object is used to exchange an old remote key for a new one ### Usage Example Post a `RemoteKeyForRegeneration` to swap out an old remote key for a new one

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
name string The name of the remote key
View JSON Schema on GitHub

JSON Schema

merge-remotekeyforregenerationrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RemoteKeyForRegenerationRequest",
  "title": "RemoteKeyForRegenerationRequest",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the remote key"
    }
  },
  "required": [
    "name"
  ],
  "description": "# The RemoteKeyForRegeneration Object\n### Description\nThe `RemoteKeyForRegeneration` object is used to exchange an old remote key for a new one\n\n### Usage Example\nPost a `RemoteKeyForRegeneration` to swap out an old remote key for a new one"
}