POST
/
list
curl --request POST \
  --url https://api.breakcold.com/list \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '{
  "name": "Campaign List",
  "emoji": "🚀",
  "description": "List for initial campaign launch."
}'
{
  "name": "Campaign List",
  "emoji": "🚀",
  "description": "List for initial campaign launch."
}

Authorizations

X-API-KEY
string
header
required

Body

application/json
Details of the list to be created.
name
string
required

Name of the list.

Example:

"Campaign List"

emoji
string

Emoji for the list.

Example:

"🚀"

description
string

Description of the list.

Example:

"List for initial campaign launch."

Response

200
application/json
List created successfully.
name
string
required

Name of the list.

Example:

"Campaign List"

emoji
string

Emoji for the list.

Example:

"🚀"

description
string

Description of the list.

Example:

"List for initial campaign launch."