API Documentation
- API Overview
- Events
- Organization
- User
- Auth
- Organization Members
- Contacts
- Lists
- Campaigns
- Conversations
- Messages
- Integrations
- Analytics
- Knowledge Base
- System
Lists
Post lists
handles creation of new list
POST
/
lists
Copy
curl --request POST \
--url https://api.wapikit.com/api/lists \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"description": "<string>",
"tags": [
"<string>"
],
"contactIds": [
"<string>"
]
}'
Copy
{
"list": {
"name": "<string>",
"description": "<string>",
"numberOfContacts": 123,
"numberOfCampaignsSent": 123,
"tags": [
{
"label": "<string>",
"uniqueId": "<string>"
}
],
"uniqueId": "<string>",
"createdAt": "2023-11-07T05:31:56Z"
}
}
Body
application/json
new list info
The body is of type object
.
Response
200
application/json
list object
The response is of type object
.
Was this page helpful?
Copy
curl --request POST \
--url https://api.wapikit.com/api/lists \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"description": "<string>",
"tags": [
"<string>"
],
"contactIds": [
"<string>"
]
}'
Copy
{
"list": {
"name": "<string>",
"description": "<string>",
"numberOfContacts": 123,
"numberOfCampaignsSent": 123,
"tags": [
{
"label": "<string>",
"uniqueId": "<string>"
}
],
"uniqueId": "<string>",
"createdAt": "2023-11-07T05:31:56Z"
}
}
Assistant
Responses are generated using AI and may contain mistakes.