GET
/
v1
/
files
/
{file_id}
Get file by id
curl --request GET \
  --url https://dovetail.com/api/v1/files/{file_id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "name": "<string>",
    "type": "<string>",
    "status": "completed",
    "author": {
      "id": "<string>",
      "name": "<string>"
    },
    "created_at": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

file_id
string
required

Unique identifier of the file.

Response

200
application/json

200

The response is of type object.