The Store is Deck’s persistent memory. It captures and organizes everything Jobs produce — not just during a single session, but across all sessions and all connections related to an end-user or entity.It’s the place where developers retrieve the actual value generated by their Jobs.
Typically, when an agent extracts data from a website, that data is returned as JSON via a webhook.However, when the volume of data is too large for a webhook payload, the data is written to a CSV file and saved to the Store.In such cases:
The webhook returns a URL pointing to a document filtered specifically for the data extracted.
This document list can be accessed via the /jobs/documents/list endpoint.
Each document includes a document ID, which can be used to download the file from /jobs/documents/file.
This mechanism ensures large or structured results are preserved, retrievable, and accessible in a consistent and scalable way.