Users

Get User Lists

get

Retrieve all lists associated with the authenticated user

Query parameters
apiKeystringOptional

API key for authentication

Example: your_api_key
Responses
200
Lists retrieved successfully
application/json
get
GET /v1/users/lists HTTP/1.1
Host: api.dmchamp.com
Accept: */*
{
  "success": true,
  "lists": [
    {
      "id": "list123",
      "name": "My Contacts"
    }
  ]
}

Was this helpful?