cURL
curl --request GET \ --url https://api.domo.com/v1/projects/{PROJECT_ID}/lists/{LIST_ID} \ --header 'Authorization: Bearer <token>'
{ "id": "4", "name": "To Do", "type": "TODO", "index": 1 }
Retrieves the details of an individual list given a project id and a list id.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The ID of the project
The ID of the list
Returns a list object.