You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -135,6 +135,24 @@ Retrieves a thumbnail image for a file.
135
135
|`min_width`| integer | No | Minimum width of the thumbnail in pixels. |
136
136
|`min_height`| integer | No | Minimum height of the thumbnail in pixels. |
137
137
138
+
## `box_file_representations_get`
139
+
140
+
Retrieves available representations for a file, such as PDFs, extracted text, or image thumbnails. Box generates representations on demand — poll until the `status` is `success` before downloading.
141
+
142
+
| Name | Type | Required | Description |
143
+
| --- | --- | --- | --- |
144
+
|`file_id`| string | Yes | ID of the file. Get it from `box_folder_items_list`. |
145
+
|`x_rep_hints`| string | Yes | Representation formats to request, e.g. `[pdf][extracted_text]` or `[jpg?dimensions=320x320]`. Multiple formats can be combined. |
description: `Retrieves all tasks associated with a file.`,
390
390
params: [{name: 'file_id',type: 'string',required: true,description: `ID of the file.`}],
391
391
},
392
+
{
393
+
name: 'box_file_representations_get',
394
+
description: `Retrieves available representations for a file, such as PDFs, extracted text, or image thumbnails. Box generates representations on demand — poll until status is success before downloading.`,
395
+
params: [
396
+
{
397
+
name: 'file_id',
398
+
type: 'string',
399
+
required: true,
400
+
description: `ID of the file. Get it from box_folder_items_list.`,
401
+
},
402
+
{
403
+
name: 'x_rep_hints',
404
+
type: 'string',
405
+
required: true,
406
+
description: `Representation formats to request, e.g. [pdf][extracted_text] or [jpg?dimensions=320x320]. Multiple formats can be combined.`,
407
+
},
408
+
],
409
+
},
392
410
{
393
411
name: 'box_file_thumbnail_get',
394
412
description: `Retrieves a thumbnail image for a file.`,
0 commit comments