Merge · Schema

RegenerateAccountToken

# The RegenerateAccountToken Object ### Description The `RegenerateAccountToken` object is used to exchange an old account token for a new one. ### Usage Example Post to receive a new `RegenerateAccountToken`.

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
linked_account_id string
account_token string
View JSON Schema on GitHub

JSON Schema

merge-regenerateaccounttoken-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RegenerateAccountToken",
  "title": "RegenerateAccountToken",
  "type": "object",
  "properties": {
    "linked_account_id": {
      "type": "string"
    },
    "account_token": {
      "type": "string"
    }
  },
  "required": [
    "linked_account_id",
    "account_token"
  ],
  "description": "# The RegenerateAccountToken Object\n### Description\nThe `RegenerateAccountToken` object is used to exchange an old account token for a new one.\n\n### Usage Example\nPost to receive a new `RegenerateAccountToken`."
}