Skip to main content

listCreate Mutation

Description

Creates a new customer list with the specified title. Customer lists are used to organize buyers into groups for marketing, communications, and customer management purposes.

mutation listCreate($title: String!) {
listCreate(title: $title) {
_id
id
title
description
created
count
system
}
}

Variables

{
"title": "title"
}

Response

{
"listCreate": {
"_id": "db4961e9b881dcf2c362ed6d",
"id": 5719137140689,
"title": "example",
"description": "example",
"created": 1751140218124,
"count": 10,
"system": true
}
}

Arguments

NameTypeDescription
titleString!Title of the new customer list to create.

Returns

List