Skip to main content
GET
/
files
/
{file_id}
Get file details
curl --request GET \
  --url https://app.usequeue.com/api/v1/files/{file_id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "file": {
    "id": "abc123",
    "title": "10x faster.png",
    "file_link": "https://app.usequeue.com/replays/529e15ad83ee",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "user": {
      "username": "Masud Hossain",
      "email": "[email protected]",
      "avatar": "https://cdn.filestackcontent.com/resize=width:100,height:100/PQXgUZHdQW2diRa61cya"
    },
    "project": {
      "title": "AirBnB edited",
      "id": "3c82c4be"
    },
    "private": true,
    "folder": {
      "title": "Folder 21",
      "id": "ba722ed99a130e28ca7aa27437037349"
    }
  }
}

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

Response

200 - application/json

File details

success
boolean
Example:

true

file
object