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": "f4c095c1b83dd7c8b93f0900",
"id": 9325843913227,
"title": "example",
"description": "example",
"created": 1742508065267,
"count": 10,
"system": true
}
}

Arguments

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

Returns

List