GET
/
api
/
v1
/
list-entries
/
{listId}
/
{entryId}
curl --request GET \
  --url https://api.zixflow.com/api/v1/list-entries/{listId}/{entryId} \
  --header 'Authorization: Bearer <token>'
{
    "status": true,
    "message": "List Entries fetched successfully",
    "data": {
        "_id": "65321b9a05ca4dc48ed8b231",
        "owner": {
            "_id": "63d0e0b2eaa35b73f3b23450",
            "name": "Test User",
            "avatar": "",
            "email": "test@outlook.com"
        },
        "createdAt": "2023-10-20T06:18:02.403Z",
        "apiPipeline3": null
    }
}

Description

This API endpoint enables the retrieval of list entries. The structure of the list entries is dynamic and varies depending on the list and attributes, with no fixed response keys within the data.

Path

listId
string
required

A unique identifier for the list.

entryId
string
required

A unique identifier for the list entry.

Response

status
boolean

Indicates the success or failure of the response. 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 retrieval of the entries with the message “List Entries fetched successfully”

data
object

The structure of the list entries is dynamic and varies depending on the list and attributes, with no fixed response keys within the data.