PATCH
/
api
/
v1
/
list-entries
/
{listId}
/
{entryId}
curl --request PATCH \
  --url https://api.zixflow.com/api/v1/list-entries/{listId}/{entryId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "data": {}
}'
{
    "status": true,
    "message": "List entry updated successfully!"
}

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

listId
string
required

A unique identifier for the list containing the entry to be updated.

entryId
string
required

The ID of the list entry to be updated.

Body

data
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.

Response

status
boolean

Indicates the success or failure of the list entry update. In this case, true signifies a successful operation.

message
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!”