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": "7bf5888f9abcb28081804654"
}
Response
{
"list": {
"_id": "0a4112c8092a246a71cb1b92",
"id": 376182461445,
"title": "example",
"description": "example",
"created": 1780265357255,
"count": 10,
"system": true
}
}
Arguments
| Name | Type | Description |
|---|---|---|
listRef | ID! | Reference ID of the customer list to retrieve. |