get

HTTP Request

GET /api/v1/rawFiles/:fileId

Path parameters

ParameterTypeDescription

:fileId

string

The globally unique identifier for this file

Query parameters

Parameter

project

string

Optional. The id of the associated project where this file is being referenced.

table

string

Optional. The id of the associated table where this file is being referenced.

version

string

Optional. The tag of the associated version where this file is being referenced.

This endpoint extends the general API structure.

Authorization

You must have data access to the file's associated dataset, and your access token must have the following scope:

  • data.data

Learn more about authorization.

Request headers

This endpoint accepts HTTP Range Requests to allow for partial downloads. For example, send Range: bytes=0-1023 to get the first 1024 bytes.

Request body

The request body must be empty.

Response headers

In addition to standard response headers, this API provides the additional information associated with the file:

NameDescription

Content-Disposition

HTTP content disposition, including information about the file's name.

Content-Length

The size, in bytes, of the response. Note if using Range Requests, this will be the size of the current response, not the entire file.

Content-Range

Will only be returned if a Range was set on the request headers. Takes the form

bytes startByte-endByte/total

Content-Type

The file's MIME type, derived from the file extension. If the MIME type is unknown, will be set to application/octet-stream.

Response body

Returns the file content. If a range request was made, will return the content for the specified byte range.

Examples

curl -H "Authorization: Bearer $REDIVIS_ACCESS_TOKEN" \
"https://redivis.com/api/v1/rawFiles/93qh-6wdzwrz84.bc574P4o8ypzp8yKCnrgIw"

Last updated