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

# Partially update contact group



## OpenAPI

````yaml /api-reference/openapi.yaml patch /api/v1/contacts/groups/{id}/
openapi: 3.0.3
info:
  title: Rezora IO API
  version: 1.0.0
  description: >-
    Partner-safe Rezora API reference for authenticated customer and integration
    workflows.
servers:
  - url: https://api.rezora.io
    description: Production API
security: []
tags:
  - name: Billing & Credits
    description: Credit balances, transactions, and receipts.
  - name: Agents
    description: AI agent templates and active campaign-ready agents.
  - name: Contacts
    description: Contact groups, contacts, and imports.
  - name: Campaigns
    description: Campaign creation, dispatch, reporting, recordings, and call attempts.
  - name: Appointments & Calls
    description: Booked appointments and customer call records.
paths:
  /api/v1/contacts/groups/{id}/:
    patch:
      tags:
        - Contacts
      summary: Partially update contact group
      operationId: contacts_partial_update_group
      parameters:
        - in: path
          name: id
          schema:
            type: string
            format: uuid
          required: true
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PatchedContactWrite'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/PatchedContactWrite'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/PatchedContactWrite'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ContactDetailForModal'
          description: ''
      security:
        - jwtAuth: []
components:
  schemas:
    PatchedContactWrite:
      type: object
      properties:
        id:
          type: string
          format: uuid
          readOnly: true
        contact_group_id:
          type: string
          format: uuid
        phone_number:
          type: string
          maxLength: 32
        data: {}
        status:
          $ref: '#/components/schemas/ContactStatus'
    ContactDetailForModal:
      type: object
      description: >-
        Supabase-shaped contact row for the call-details modal (denormalized
        from `data` JSON).
      properties:
        address:
          type: string
          readOnly: true
          nullable: true
        contact_group_id:
          type: string
          format: uuid
          readOnly: true
        custom_fields:
          type: object
          additionalProperties: {}
          nullable: true
          readOnly: true
        data: {}
        email:
          type: string
          format: email
          nullable: true
          readOnly: true
        first_name:
          type: string
          readOnly: true
          nullable: true
        last_name:
          type: string
          readOnly: true
          nullable: true
        phone_number:
          type: string
          maxLength: 32
        phone_numbers:
          type: array
          items:
            type: object
            additionalProperties: {}
          nullable: true
          readOnly: true
        status:
          $ref: '#/components/schemas/ContactStatus'
        csv_headers:
          type: array
          items:
            type: string
          readOnly: true
      required:
        - address
        - contact_group_id
        - csv_headers
        - custom_fields
        - email
        - first_name
        - last_name
        - phone_number
        - phone_numbers
    ContactStatus:
      enum:
        - active
        - invalid
        - do_not_call
      type: string
      description: |-
        * `active` - Active
        * `invalid` - Invalid
        * `do_not_call` - Do Not Call
  securitySchemes:
    jwtAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````