list Query
Description
Retrieves a single customer list by its reference ID. Customer lists are used to organize and group buyers for marketing and communication purposes.
query list($listRef: ID!) {
list(listRef: $listRef) {
_id
id
title
description
created
count
system
}
}
Variables
{
"listRef": "53726fda6ed843a643628f06"
}
Response
{
"list": {
"_id": "13b492defd001be7338aaf42",
"id": 9364906001917,
"title": "example",
"description": "example",
"created": 1771440988183,
"count": 10,
"system": true
}
}
Arguments
| Name | Type | Description |
|---|---|---|
listRef | ID! | Reference ID of the customer list to retrieve. |