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

# Update sender

> Update a sender's display name.



## OpenAPI

````yaml /api-reference/openapi.json patch /api/v1/senders/{sender_id}
openapi: 3.1.0
info:
  title: EverOS API
  description: >-
    Enterprise-grade intelligent memory system for AI agents. Extracts,
    structures, and retrieves information from conversations.
  version: 1.0.0
  contact:
    name: EverOS Team
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0
servers:
  - url: https://api.evermind.ai
    description: Production
security:
  - BearerAuth: []
tags:
  - name: Memories
    description: Memory ingestion, retrieval, search, and deletion
  - name: Groups
    description: Group resource CRUD operations
  - name: Senders
    description: Sender resource CRUD operations
  - name: Settings
    description: Global settings management
  - name: Tasks
    description: Async task status tracking
  - name: Storage
    description: Multimodal content storage (pre-signed upload)
paths:
  /api/v1/senders/{sender_id}:
    patch:
      tags:
        - Senders
      summary: Update sender
      description: Update a sender's display name.
      operationId: patchSender
      parameters:
        - name: sender_id
          in: path
          required: true
          description: Sender identifier
          schema:
            type: string
          example: user_123
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PatchSenderRequest'
      responses:
        '200':
          description: Sender updated successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SenderApiResponse'
        '404':
          description: Sender not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: Validation error (invalid parameter values)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - BearerAuth: []
      x-codeSamples:
        - lang: Python
          source: |-
            from everos_cloud import EverOS

            client = EverOS()
            senders = client.v1.senders

            response = senders.patch(
                "<string>",
                name="<string>"
            )
            print(response)
        - lang: cURL
          source: |-
            curl --request PATCH \
              --url 'https://api.evermind.ai/api/v1/senders/{sender_id}' \
              --header 'Authorization: Bearer <api_key>' \
              --header 'Content-Type: application/json' \
              --data '{}'
components:
  schemas:
    PatchSenderRequest:
      type: object
      properties:
        name:
          description: New sender display name
          type:
            - string
            - 'null'
    SenderApiResponse:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/SenderResponse'
    ErrorResponse:
      type: object
      required:
        - code
        - message
        - timestamp
        - path
      properties:
        code:
          type: string
          description: Error code
          examples:
            - InvalidParameter
            - NotFound
            - InternalError
        message:
          type: string
          description: Error message
        request_id:
          type: string
          description: Request ID
          default: unknown
        timestamp:
          type: string
          description: ISO 8601 timestamp
        path:
          type: string
          description: Request path
    SenderResponse:
      type: object
      required:
        - sender_id
        - created_at
        - updated_at
      properties:
        sender_id:
          type: string
          description: Sender identifier
        name:
          description: Sender display name
          type:
            - string
            - 'null'
        created_at:
          type: string
          description: Creation time (ISO 8601)
        updated_at:
          type: string
          description: Last update time (ISO 8601)
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      x-default: Bearer <api_key>
      description: >-
        Bearer authentication header of the form Bearer 'api_key', obtain your
        API key from [everos.evermind.ai](https://everos.evermind.ai).

````