GET
/
file
/
{id}
Get File Metadata
curl --request GET \
  --url https://server26-dot-royalti-project.uc.r.appspot.com/file/{id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "File metadata retrieved",
  "data": {
    "id": "file-uuid-123",
    "status": "processed",
    "name": "export.csv"
  }
}

Authorizations

Authorization
string
header
required

JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"

Path Parameters

id
string
required

File identifier

Response

200
application/json

File metadata retrieved

The response is of type object.