> ## Documentation Index
> Fetch the complete documentation index at: https://docs.poozle.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Get User



## OpenAPI

````yaml GET /v1/ticketing/{collection_id}/users/{user_id}
openapi: 3.0.0
info:
  title: Poozle
  description: The poozle API description
  version: '1.0'
  contact: {}
servers: []
security: []
tags: []
paths:
  /v1/ticketing/{collection_id}/users/{user_id}:
    get:
      tags:
        - Ticketing
      operationId: UsersController_getUserId
      parameters:
        - name: raw
          required: false
          in: query
          description: Include raw response. When you want more data from the source
          schema:
            type: boolean
        - name: collection_id
          required: true
          in: path
          schema:
            type: string
        - name: user_id
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TicketingUserResponse'
components:
  schemas:
    TicketingUserResponse:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/TicketingUser'
      required:
        - data
    TicketingUser:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        first_name:
          type: string
        last_name:
          type: string
        email:
          type: string
        photo_url:
          type: string
        updated_at:
          type: string
        created_at:
          type: string
      required:
        - id
        - name
        - first_name
        - last_name
        - email
        - photo_url
        - updated_at
        - created_at

````