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": "25a810954676578b8c076b3d",
"id": 6144165352228,
"title": "example",
"description": "example",
"created": 1721088301682,
"count": 10,
"system": true
}
}

Arguments

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

Returns

List