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": "93b5ae9325edb5de112b95a4"
}
Response
{
"list": {
"_id": "ecdbb16d6d9a56ac55567dda",
"id": 7235493416955,
"title": "example",
"description": "example",
"created": 1765865491153,
"count": 10,
"system": true
}
}
Arguments
| Name | Type | Description |
|---|---|---|
listRef | ID! | Reference ID of the customer list to retrieve. |