Skip to main content
Participant
May 14, 2024
Answered

Changing output type of Extract API

  • May 14, 2024
  • 1 reply
  • 571 views

Using the Node.js SDK, when performing an ExtractPDFJob, the result is a zip file that is written to the file system.

Is it possible to change the result to a JSON object?

 

Thanks,

This topic has been closed for replies.
Correct answer Joel Geraci

The JSON is inside the ZIP archive. If you were to use the REST API directly rather than through the SDK, you could get just the JSON.

1 reply

Joel Geraci
Community Expert
Joel GeraciCommunity ExpertCorrect answer
Community Expert
May 14, 2024

The JSON is inside the ZIP archive. If you were to use the REST API directly rather than through the SDK, you could get just the JSON.

Participant
May 15, 2024

Thanks, Joel. I'll switch over