Used to get all of the list items. Items from all lists will be returned if no condition is used. list_id condition can be used to get items of a particular list.

Review our dedicated guide for more information on user lists.

Example

Get a list of all the items comprised in a specific user list using pagination. For best results, we recommend setting a limit on your query. Send several requests to obtain the full list:

curl --request POST \
  --url https://external-api.xtremepush.com/api/external/list/list-item \
  --header 'content-type: application/json' \
  --data '{
    "apptoken": "YOUR_APPTOKEN",
    "condition": [
      ["list_id", "=" , "3621214"]
    ],
    "limit": 50,
    "offset": 0
  }'
Language
Click Try It! to start a request and see the response here!