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

# Update Current Agent Availability



## OpenAPI

````yaml put /api/v1/agents/me/availability
openapi: 3.0.0
info:
  title: Libredesk API
  description: >-
    REST API documentation for Libredesk helpdesk system.


    ## Authentication


    The Libredesk API supports two authentication methods:


    ### 1. Basic Authentication

    Use your API key and secret with Basic authentication:

    ```

    Authorization: Basic <base64_encoded_api_key:api_secret>

    ```


    ### 2. Token Authentication  

    Use your API key and secret with token authentication:

    ```

    Authorization: token api_key:api_secret

    ```


    To obtain API credentials, generate them from your agent profile in the
    Libredesk dashboard.
  version: 1.0.0
servers:
  - url: http://localhost:8080
    description: Local development server
security:
  - basicAuth: []
  - tokenAuth: []
paths:
  /api/v1/agents/me/availability:
    put:
      tags:
        - Agents
      summary: Update Current Agent Availability
      operationId: handleUpdateAgentAvailability
      requestBody:
        description: Availability status update
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AvailabilityRequest'
      responses:
        '200':
          description: Agent availability status updated successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AgentResponse'
        '401':
          description: Unauthorized
        '500':
          description: Internal server error
      security:
        - basicAuth: []
        - tokenAuth: []
components:
  schemas:
    AvailabilityRequest:
      type: object
      required:
        - status
      properties:
        status:
          type: string
          enum:
            - available
            - busy
            - away
            - offline
          description: Availability status
        source:
          type: string
          enum:
            - user
            - idle
          description: >-
            Origin of the status change. 'user' is a manual change by the agent
            (default); 'idle' is an automatic idle-detection driven change. Idle
            transitions do not overwrite manual away states.
          example: idle
    AgentResponse:
      type: object
      properties:
        status:
          type: string
          example: success
        data:
          $ref: '#/components/schemas/Agent'
    Agent:
      type: object
      properties:
        id:
          type: integer
          example: 1
        created_at:
          type: string
          format: date-time
          example: '2025-08-28T10:00:00Z'
        updated_at:
          type: string
          format: date-time
          example: '2025-08-28T10:00:00Z'
        first_name:
          type: string
          example: John
        last_name:
          type: string
          example: Doe
        email:
          type: string
          format: email
          example: john.doe@example.com
          nullable: true
        type:
          type: string
          example: agent
        availability_status:
          type: string
          example: online
        phone_number_country_code:
          type: string
          nullable: true
          example: US
        phone_number:
          type: string
          nullable: true
          example: '1234567890'
        avatar_url:
          type: string
          nullable: true
          example: /avatars/agent1.jpg
        enabled:
          type: boolean
          example: true
        last_active_at:
          type: string
          format: date-time
          nullable: true
          example: '2025-08-28T10:00:00Z'
        last_login_at:
          type: string
          format: date-time
          nullable: true
          example: '2025-08-28T10:00:00Z'
        roles:
          type: array
          items:
            type: string
          example:
            - admin
        permissions:
          type: array
          items:
            type: string
          example:
            - conversations:read
        custom_attributes:
          type: object
        teams:
          type: array
          items:
            $ref: '#/components/schemas/TeamCompact'
        api_key:
          type: string
          nullable: true
        api_key_last_used_at:
          type: string
          format: date-time
          nullable: true
    TeamCompact:
      type: object
      properties:
        id:
          type: integer
          example: 1
        name:
          type: string
          example: Support Team
        emoji:
          type: string
          nullable: true
          example: 🛠️
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: >-
        Basic authentication using base64 encoded API key and secret. Format:
        `Authorization: Basic <base64(api_key:api_secret)>`
    tokenAuth:
      type: apiKey
      name: Authorization
      in: header
      description: >-
        Token authentication using API key and secret. Format: `Authorization:
        token api_key:api_secret`

````