cli/resources/files/methods/content/index.md +0 −25 deleted
File Deleted View Diff
1## Retrieve file content
2
3`$ openai files content`
4
5**get** `/files/{file_id}/content`
6
7Returns the contents of the specified file.
8
9### Parameters
10
11- `--file-id: string`
12
13 The ID of the file to use for this request.
14
15### Returns
16
17- `unnamed_schema_0: file path`
18
19### Example
20
21```cli
22openai files content \
23 --api-key 'My API Key' \
24 --file-id file_id
25```