DELETE
/
api
/
v1
/
list-entries
/
{listId}
/
{entryId}
Delete List Entry By ID
curl --request DELETE \
  --url https://api.zixflow.com/api/v1/list-entries/{listId}/{entryId} \
  --header 'Authorization: Bearer <token>'
{
    "status": true,
    "message": "List Entry deleted successfully"
}

Description

This API endpoint enables the deletion of a specific list entry by providing the unique identifiers of both the list and the entry.

Path

listId
string
required
A unique identifier for the list, allowing for precise referencing.
entryId
string
required
A unique identifier for the list entry to be deleted.

Response

status
boolean
Indicates the success or failure of the list entry deletion. 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 deletion of the list entry with the message “List Entry deleted successfully.”
{
    "status": true,
    "message": "List Entry deleted successfully"
}