# Here is a curl example
curl \
X GET -H "Authorization:{token}" http://localhost:8888/api/File/ExportRelatedFilesByIds
?record_id=11111&object_id=111&file_ids=111,123,122"
To export specific related files using file IDs, you need to make a GET call to the
following url :
http://localhost:8888/api/File/ExportRelatedFilesByIds
Result example :
HttpResponseMessage
| Field | Parameter Type | Type | Description |
|---|---|---|---|
| record_id | query | long | Record Id. |
| object_id | query | long | Object Id. |
| file_ids | query | string | File IDs can be in this format "111,123,122". You can get from another method (http://localhost:8888/api/Objects/RelatedFiles?object_id=111&record_id=111111&show_all_revisions=true). |
| Authorization | header | string | Add Authorization header token |