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

# Update List Entry

> This endpoint updates an existing entry in the specified list.

#### Description

This API endpoint allows the modification of an existing entry within a specified list. The list entry is identified by its unique ID, and data can be updated based on the attributes of the list.

#### Path

<ParamField path="listId" type="string" required>
  A unique identifier for the list containing the entry to be updated.
</ParamField>

<ParamField path="entryId" type="string" required>
  The ID of the list entry to be updated.
</ParamField>

#### Body

<ParamField body="data" type="object">
  Key-value pairs representing data to update in the list entry. Keys are defined by the attribute API key name, and values are based on the input type of the attribute.
</ParamField>

#### Response

<ResponseField name="status" type="boolean">
  Indicates the success or failure of the list entry update. In this case,
  true signifies a successful operation.
</ResponseField>

<ResponseField name="message" type="string">
  Provides a human-readable message accompanying the response. In this instance,
  it confirms the successful update of the list entry with the message "List entry updated successfully!"
</ResponseField>

<ResponseExample>
  ```json 200-Success theme={null}
  {
      "status": true,
      "message": "List entry updated successfully!"
  }
  ```

  ```json 401-Unauthorised theme={null}
  {
    "status": false,
    "message": "No token provided"
  }
  ```
</ResponseExample>
