GET
/
v1
/
data-files
cURL
curl --request GET \
  --url https://api.comm.com/api/v1/data-files \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "size": 123,
      "status": "<string>",
      "created_at": "<string>",
      "created_ago": "<string>",
      "columns": "<string>",
      "total_rows": "<string>",
      "processed_rows": "<string>",
      "can_continue": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

page
integer | null
per_page
integer | null
status
enum<string>
Available options:
pending,
processing,
completed,
failed
search_ids
string<uuid>[]

Response

200
application/json

Array of DataFileResource

The response is of type object.