# Remove list

You can remove a user from a list.

POST /users/:id/remove_from_list/

Attributes Type Required Description
id string yes A unique identifier for the user which is given by User.com automatically.
list integer yes A unique identifier for the list which is given by User.com automatically.

# Request

  • CURL
  • JavaScript
  • PHP
  • Python
 curl -X POST -H "Authorization: Token <your_64_char_api_key>"
     -H "Accept: */*; version=2" -H "Content-Type: application/json" -d '{
    "list": 83
  }' "https://<your_app_subdomain>.user.com/api/public/users/:id/remove_from_list/"