cURL
curl --request GET \ --url https://api.domo.com/v1/projects/{PROJECT_ID}/lists/{LIST_ID}/tasks/{TASK_ID}/attachments \ --header 'Authorization: Bearer <token>'
[ { "id": 2, "taskId": 5, "createdDate": "2018-08-01T09:00:00Z", "createdBy": 27, "fileName": "dataflows.csv", "mimeType": "text/csv" }, { "id": 1, "taskId": 5, "createdDate": "2018-08-01T09:00:00Z", "createdBy": 27, "fileName": "logo.png", "mimeType": "image/png" } ]
Retrieve details about all of the attachments belonging to a particular task.
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
The ID of the task
Returns an array of attachment objects.