Users
Retrieve all lists associated with the authenticated user
Query parameters
apiKeystringOptionalExample:
API key for authentication
your_api_key
Responses
200
Lists retrieved successfully
application/json
400
Missing API key
application/json
401
Invalid API key
application/json
500
Server error
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?