# fetchReadyFileResponse

Response object containing information about the status and availability of a requested file.

### Examples

```graphql
type FetchReadyFileResponse {
  downloadLink: String
  isFileReady: Boolean!
  error: Boolean
}
```

### Fields

| Field                  | Description                                                                                          | Supported fields |
| ---------------------- | ---------------------------------------------------------------------------------------------------- | ---------------- |
| downloadLink `String`  | Pre-signed URL for downloading the file. Will be null if the file is not ready or there was an error |                  |
| isFileReady `Boolean!` | Indicates whether the requested file is ready for download                                           |                  |
| error `Boolean`        | Indicates whether an error occurred while checking file status                                       |                  |

### References

#### Queries using this object:

* [\<?> fetchThirdPartyIssuesFile](/api-documentation/api-reference/api--file-download/queries/fetch-third-party-issues-file.md)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.ox.security/api-documentation/api-reference/api--file-download/types/objects/fetch-ready-file-response.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
