# Get file content

Retrieve the binary content of a file

Endpoint: GET /v2/files/{fileId}/content

## Path parameters:

  - `fileId` (integer, required)
    The system identifier for the file

## Response 200:

  - `200` (unknown)
    The binary content of the file.

## Response 200 headers (application/octet-stream):

  - `Content-Type` (string)
    The content type of the file content

  - `Content-Length` (integer)
    The length in bytes of the file content

  - `Content-MD5` (string)
    The MD5 hash of the file content

  - `Content-Disposition` (string)
    The content disposition of the file content

## Response 404:

  - `404` (unknown)
    Not Found

## Response 404 fields (application/problem+json):

  - `detail` (string)
    More information about the problem.

  - `instance` (string)
    The URI of the resource which the error relates to.

  - `operationId` (string)
    A unique trace identifier for the request. This should be provided when requesting support.

  - `status` (integer)
    The HTTP status code for the problem.

  - `title` (string)
    A short description of the error.

  - `type` (string)
    A URI which can be followed to find out more about the problem.

