Vapi · Schema

Oauth2AuthenticationSession

AIVoiceAgentsRealtimeCPaaS

Properties

Name Type Description
accessToken string This is the OAuth2 access token.
expiresAt string This is the OAuth2 access token expiration.
refreshToken string This is the OAuth2 refresh token.
View JSON Schema on GitHub

JSON Schema

vapi-oauth2authenticationsession-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Oauth2AuthenticationSession",
  "title": "Oauth2AuthenticationSession",
  "type": "object",
  "properties": {
    "accessToken": {
      "type": "string",
      "description": "This is the OAuth2 access token."
    },
    "expiresAt": {
      "format": "date-time",
      "type": "string",
      "description": "This is the OAuth2 access token expiration."
    },
    "refreshToken": {
      "type": "string",
      "description": "This is the OAuth2 refresh token."
    }
  }
}