> ## 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 Contact



## OpenAPI

````yaml put /api/v1/contacts/{id}
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/contacts/{id}:
    put:
      tags:
        - Contacts
      summary: Update Contact
      operationId: handleUpdateContact
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      requestBody:
        description: Contact update details
        required: true
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                first_name:
                  type: string
                  description: Contact's first name
                last_name:
                  type: string
                  description: Contact's last name
                email:
                  type: string
                  format: email
                  description: Contact's email address
                phone_number:
                  type: string
                  description: Contact's phone number
                phone_number_country_code:
                  type: string
                  description: ISO country code
                country:
                  type: string
                  description: Contact's country as an ISO 3166-1 alpha-2 code
                  example: US
                files:
                  type: string
                  format: binary
                  description: New avatar image file to upload
                avatar_url:
                  type: string
                  description: >-
                    URL of the contact's avatar image. Pass a valid image URL to
                    update, pass null to remove the avatar, or pass the existing
                    value to keep it unchanged.
                  nullable: true
                enabled:
                  type: boolean
                  description: Whether the contact is enabled
              required:
                - email
                - first_name
      responses:
        '200':
          description: Contact updated successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ContactResponse'
        '401':
          description: Unauthorized
        '500':
          description: Internal server error
      security:
        - basicAuth: []
        - tokenAuth: []
components:
  schemas:
    ContactResponse:
      type: object
      properties:
        status:
          type: string
          example: success
        data:
          $ref: '#/components/schemas/Contact'
    Contact:
      type: object
      properties:
        id:
          type: integer
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
        first_name:
          type: string
        last_name:
          type: string
        email:
          type: string
          format: email
        type:
          type: string
        availability_status:
          type: string
        avatar_url:
          type: string
          nullable: true
        phone_number:
          type: string
          nullable: true
        phone_number_country_code:
          type: string
          nullable: true
        custom_attributes:
          type: object
          nullable: true
        enabled:
          type: boolean
        last_active_at:
          type: string
          format: date-time
          nullable: true
        last_login_at:
          type: string
          format: date-time
          nullable: true
        roles:
          type: array
          items:
            type: string
          nullable: true
        permissions:
          type: array
          items:
            type: string
          nullable: true
        teams:
          type: array
          items:
            type: object
        api_key:
          type: string
          nullable: true
        api_key_last_used_at:
          type: string
          format: date-time
          nullable: true
  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`

````