# 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: GET /imports Version: 1.0 Security: Bearer ## Query parameters: - `ordering` (string) Which field to use when ordering the results. - `search` (string) A search term. - `limit` (integer) Number of results to return per page. - `offset` (integer) The initial index from which to return the results. ## Response 200 fields (application/json): - `count` (integer, required) - `next` (string,null) - `previous` (string,null) - `results` (array, required) - `results.id` (integer) - `results.run_id` (string) Unique identifier for this data exchange run - `results.company_id` (integer) ID of the company this data exchange run belongs to - `results.results` (object) The output of the data exchange run - `results.document` (integer,null) - `results.model_identifier` (string) - `results.created_at` (string) - `results.updated_at` (string)