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

# Update Context

> Updates the name and the two free-form description fields (about the company and about the user) of an existing Context. Changes take effect immediately — the next comment or DM generation uses the updated text.



## OpenAPI

````yaml https://api.goextrovert.com/client/v2/docs-json patch /client/v2/context/{id}
openapi: 3.0.0
info:
  title: Extrovert Client API
  description: >-
    Public API for Extrovert platform integration. Use your API key for
    authentication.
  version: '1.0'
  contact: {}
servers:
  - url: https://api.goextrovert.com/
    description: API Server
security: []
tags: []
paths:
  /client/v2/context/{id}:
    patch:
      tags:
        - Contexts
      summary: Update Context
      description: >-
        Updates the name and the two free-form description fields (about the
        company and about the user) of an existing Context. Changes take effect
        immediately — the next comment or DM generation uses the updated text.
      operationId: UserContextClientApiController_update
      parameters:
        - name: id
          required: true
          in: path
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateRequestDto5'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UpdateResponseDto5'
        '401':
          description: Invalid or missing API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ClientApiErrorResponseDto'
      security:
        - api-key: []
components:
  schemas:
    UpdateRequestDto5:
      type: object
      properties:
        id:
          type: string
          format: uuid
          description: ID of the Context to update.
        name:
          type: string
          minLength: 1
          description: New short label for the Context.
        contextAboutCompany:
          type: string
          description: >-
            New plain text for the company description (fully replaces the
            previous value).
        contextAboutUser:
          type: string
          description: >-
            New plain text for the description of the user (fully replaces the
            previous value).
      required:
        - id
        - name
        - contextAboutCompany
        - contextAboutUser
    UpdateResponseDto5:
      type: object
      properties:
        status:
          type: string
          description: Response status
          enum:
            - success
        data:
          description: No response payload
          nullable: true
          enum:
            - null
          example: null
        message:
          type: string
          description: Success message
          example: Operation completed successfully
      required:
        - status
        - data
        - message
    ClientApiErrorResponseDto:
      type: object
      properties:
        status:
          type: string
          description: Response status
          example: error
          enum:
            - error
        data:
          type: object
          description: Response data
          example: null
        message:
          type: string
          description: Error message
          example: An error occurred while processing the request
      required:
        - status
        - data
  securitySchemes:
    api-key:
      type: apiKey
      in: header
      name: X-API-Key
      description: API Key for authentication

````