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

# Update a list

> Returns only `{ "staticListId", "success": true }`, a confirmation flag, not the updated list object. Re-fetch the list if you need its new state.



## OpenAPI

````yaml /api-reference/openapi.yaml patch /v1/lists/{id}
openapi: 3.1.0
info:
  title: Inflection Developer API
  version: '1.0'
  description: >-
    A REST API for reading and writing the people in your Inflection workspace:
    their profiles, product and marketing activity, static lists, and emails.
servers:
  - url: https://api.inflection.io
    description: Production
security:
  - bearerAuth: []
paths:
  /v1/lists/{id}:
    patch:
      tags:
        - Lists and Members
      summary: Update a list
      description: >-
        Returns only `{ "staticListId", "success": true }`, a confirmation flag,
        not the updated list object. Re-fetch the list if you need its new
        state.
      operationId: updateList
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                name:
                  type: string
      responses:
        '200':
          description: Confirmation flag only.
          content:
            application/json:
              schema:
                type: object
                properties:
                  staticListId:
                    type: string
                  success:
                    type: boolean
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Personal Access Token or OAuth 2.1 access token, sent as a bearer
        credential. READ permission for GET, WRITE for POST/PATCH/DELETE.

````