Fetch Extract Output Details
Oracle WebCenter Content
Use the existing methods to fetch the details for files generated via data extract UI from Oracle WebCenter Content.
Oracle Managed Storage
Once the job completes successfully, its output file information can be fetched using the Job File Manager API for the extract job request instance.
Output is stored in compressed chunks.
| Attribute | Value |
|---|---|
| URL | /api/saas-batch/jobfilemanager/v1/jobRequests/{{jobRequestId}}/outputFiles |
| HTTP Method | GET |
Response
File size is returned in the items.fileSize response attribute and
expressed in bytes.
The URL to the actual file contents is returned in the
items.$context.links.enclosure response attribute.
Example Response
{
"items": [
{
"fileName": "44055_S_TestWithRCSObjects_carriersExtract_1763985379675_20251218_074210.849135_1.zip",
"fileSize": 2876,
"timeCreated": "2025-12-18 07:42:13.287",
"checksum": "sha-256=b1121a45439990307f3114f7a272aef5779652e5c4bf370036f0238ff2e445a1",
"$context": {
"links": {
"enclosure": {
"href": "https://example.com/api/saas-batch/jobfilemanager/v1/jobRequests/44055/outputFiles/44055_S_TestWithRCSObjects_carriersExtract_1763985379675_20251218_074210.849135_1.zip/content"
},
"$self": {
"href": "https://example.com/api/saas-batch/jobfilemanager/v1/jobRequests/44055/outputFiles/44055_S_TestWithRCSObjects_carriersExtract_1763985379675_20251218_074210.849135_1.zip"
}
}
}
}
],
"totalItems": 2
}