Vapi · Schema

ExportChatDTO

AIVoiceAgentsRealtimeCPaaS

Properties

Name Type Description
id string This is the unique identifier for the chat to filter by.
assistantId string This is the unique identifier for the assistant that will be used for the chat.
assistantIdAny string Filter by multiple assistant IDs. Provide as comma-separated values.
squadId string This is the unique identifier for the squad that will be used for the chat.
sessionId string This is the unique identifier for the session that will be used for the chat.
previousChatId string This is the unique identifier for the previous chat to filter by.
columns string Columns to include in the CSV export
email string This is the email address to send the export to. Required if userId is not available in the request context.
format string This is the format of the export. @default csv
page number This is the page number to return. Defaults to 1.
sortOrder string This is the sort order for pagination. Defaults to 'DESC'.
sortBy string This is the column to sort by. Defaults to 'createdAt'.
limit number This is the maximum number of items to return. Defaults to 100.
createdAtGt string This will return items where the createdAt is greater than the specified value.
createdAtLt string This will return items where the createdAt is less than the specified value.
createdAtGe string This will return items where the createdAt is greater than or equal to the specified value.
createdAtLe string This will return items where the createdAt is less than or equal to the specified value.
updatedAtGt string This will return items where the updatedAt is greater than the specified value.
updatedAtLt string This will return items where the updatedAt is less than the specified value.
updatedAtGe string This will return items where the updatedAt is greater than or equal to the specified value.
updatedAtLe string This will return items where the updatedAt is less than or equal to the specified value.
View JSON Schema on GitHub

JSON Schema

vapi-exportchatdto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExportChatDTO",
  "title": "ExportChatDTO",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "This is the unique identifier for the chat to filter by."
    },
    "assistantId": {
      "type": "string",
      "description": "This is the unique identifier for the assistant that will be used for the chat."
    },
    "assistantIdAny": {
      "type": "string",
      "description": "Filter by multiple assistant IDs. Provide as comma-separated values.",
      "example": "assistant-1,assistant-2,assistant-3"
    },
    "squadId": {
      "type": "string",
      "description": "This is the unique identifier for the squad that will be used for the chat."
    },
    "sessionId": {
      "type": "string",
      "description": "This is the unique identifier for the session that will be used for the chat."
    },
    "previousChatId": {
      "type": "string",
      "description": "This is the unique identifier for the previous chat to filter by."
    },
    "columns": {
      "type": "string",
      "description": "Columns to include in the CSV export",
      "enum": [
        "id",
        "assistantId",
        "squadId",
        "sessionId",
        "previousChatId",
        "cost",
        "messages",
        "output",
        "createdAt",
        "updatedAt"
      ],
      "default": [
        "id",
        "assistantId",
        "squadId",
        "sessionId",
        "previousChatId",
        "cost",
        "messages",
        "output",
        "createdAt",
        "updatedAt"
      ]
    },
    "email": {
      "type": "string",
      "description": "This is the email address to send the export to.\nRequired if userId is not available in the request context."
    },
    "format": {
      "type": "string",
      "description": "This is the format of the export.\n\n@default csv",
      "enum": [
        "csv",
        "json"
      ],
      "default": "csv"
    },
    "page": {
      "type": "number",
      "description": "This is the page number to return. Defaults to 1.",
      "minimum": 1
    },
    "sortOrder": {
      "type": "string",
      "description": "This is the sort order for pagination. Defaults to 'DESC'.",
      "enum": [
        "ASC",
        "DESC"
      ]
    },
    "sortBy": {
      "type": "string",
      "description": "This is the column to sort by. Defaults to 'createdAt'.",
      "enum": [
        "createdAt",
        "duration",
        "cost"
      ]
    },
    "limit": {
      "type": "number",
      "description": "This is the maximum number of items to return. Defaults to 100.",
      "minimum": 0,
      "maximum": 1000
    },
    "createdAtGt": {
      "format": "date-time",
      "type": "string",
      "description": "This will return items where the createdAt is greater than the specified value."
    },
    "createdAtLt": {
      "format": "date-time",
      "type": "string",
      "description": "This will return items where the createdAt is less than the specified value."
    },
    "createdAtGe": {
      "format": "date-time",
      "type": "string",
      "description": "This will return items where the createdAt is greater than or equal to the specified value."
    },
    "createdAtLe": {
      "format": "date-time",
      "type": "string",
      "description": "This will return items where the createdAt is less than or equal to the specified value."
    },
    "updatedAtGt": {
      "format": "date-time",
      "type": "string",
      "description": "This will return items where the updatedAt is greater than the specified value."
    },
    "updatedAtLt": {
      "format": "date-time",
      "type": "string",
      "description": "This will return items where the updatedAt is less than the specified value."
    },
    "updatedAtGe": {
      "format": "date-time",
      "type": "string",
      "description": "This will return items where the updatedAt is greater than or equal to the specified value."
    },
    "updatedAtLe": {
      "format": "date-time",
      "type": "string",
      "description": "This will return items where the updatedAt is less than or equal to the specified value."
    }
  }
}