# Get document content

This operation allows you to retrieve specific document contents attached to an existing order.

Endpoint: GET /orders/{orderId}/documents/{documentId}
Version: 1.0
Security: basicAuth, bearerAuth

## Path parameters:

  - `orderId` (number, required)
    Order Identifier

  - `documentId` (string, required)
    Document content for

## Response 200 fields (application/json):

  - `documentId` (number)

  - `id` (number)
    The ID of the order document.

  - `documentName` (string)
    The name of the document.

  - `description` (string)
    A description of the contents of the document.

  - `fileContent` (string)
    Base64-encoded content representing the file contents.

  - `contentType` (string)


