# Create list

You can create a list.

POST /lists/

Attributes Type Required Description
description string no A list description.
name string yes A list name.

# Request

  • CURL
  • JavaScript
  • PHP
  • Python
curl -X POST -H "Authorization: Token :token" -H "Content-Type: application/json" -d '{
      "name": "New List",
      "description": "This is description for this list"
  }' "https://<your_app_subdomain>.user.com/api/public/lists/"

# Response

{
  "description": "This is description for this list",
  "name": "New List",
  "id": 1723
}