Webex · Schema

UserDetailsResponseDTO

The response object containing detailed user information.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string Unique ID of the user
firstName string First name of the user
lastName string Last name of the user
email string Email address of the user
View JSON Schema on GitHub

JSON Schema

webex-userdetailsresponsedto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserDetailsResponseDTO",
  "title": "UserDetailsResponseDTO",
  "type": "object",
  "description": "The response object containing detailed user information.",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique ID of the user",
      "example": "123e4567-e89b-12d3-a456-426614174000"
    },
    "firstName": {
      "type": "string",
      "description": "First name of the user",
      "example": "John"
    },
    "lastName": {
      "type": "string",
      "description": "Last name of the user",
      "example": "Doe"
    },
    "email": {
      "type": "string",
      "description": "Email address of the user",
      "example": "[email protected]"
    }
  }
}