# ViewSet for data exchange runs providing list, create, and retrieve operations. - list: Get all data exchange runs for the authenticated user's company - create: Create a new data exchange run - retrieve: Get a single data exchange run by ID Endpoint: POST /imports Version: 1.0 Security: Bearer ## Request fields (application/json): - `results` (object, required) Results of the data exchange run - `document_id` (integer, required) Associated document ID - `model_identifier` (string, required) Associated model identifier - `dry_run` (boolean) Whether to run the data exchange run in dry run mode ## Response 201 fields (application/json): - `results` (object, required) Results of the data exchange run - `document_id` (integer, required) Associated document ID - `model_identifier` (string, required) Associated model identifier - `dry_run` (boolean) Whether to run the data exchange run in dry run mode - `id` (integer) - `run_id` (string) - `company_id` (integer) - `created_at` (string) - `updated_at` (string)