# Returns all Data Cleaning Jobs This endpoint can be used to retrieve all created data cleaning job requests as defined by the query parameters. Endpoint: GET /dataCleaning/jobs Version: 1.10.9 Security: bearerToken ## Query parameters: - `countries` (string) Comma separated list of ISO/Alpha-2 country codes to filter the results by. - `status` (string) Returns the individual jobs by status. Possible values are: , , , . - `jobName` (string) Returns the individual jobs by name. - `fromDate` (integer) Returns the individual jobs created after the specified date. - `customerId` (integer) Returns the individual jobs by customer id. - `toDate` (integer) Returns the individual jobs created before the specified date. - `userId` (integer) Returns the individual jobs by user id. - `pageSize` (integer) Returns the number of individual jobs per page. - `companyName` (string) Returns the individual jobs by company name. - `page` (integer) Returns the page number of the individual jobs. - `archived` (boolean) Returns the individual jobs by archived status. ## Response 200 fields (application/json): - `id` (string) ID number associated to the created job - used for future searches - `name` (string) The name associated to the 'Job Number' created by the user in the 'POST - Create Job Request' - `createdAt` (string) - `modifiedAT` (string) - `managingUserId` (integer) - `managingCustomerId` (integer) - `owningCustomerId` (integer) - `owningUserId` (integer) - `status` (string) Enum: "created", "uploading", "uploadError", "uploaded", "ready", "matching", "matchingError", "matched", "addingToPortfolio", "addedToPortfolio", "addedToPortfolioError", "aggregating", "aggregatingComplete", "aggregatingError", "enriching", "enrichmentError", "enriched", "transformFileError", "generateTrilliumFileError", "jobMatchingCompletionError", "jobMatchingComplete", "readyForEnriching", "enrichmentComplete", "enrichmentCompletionError", "pdfGenerationError" - `countryCode` (string) Available after Enrichment - `portfolioId` (string) Available after Enrichment - `source` (string) Enum: "dataCleaning", "prospects" - `jobSummary` (object) Available after Enrichment - `jobSummary.totalRows` (integer) - `jobSummary.matched` (integer) - `jobSummary.manualMatched` (integer) - `jobSummary.unmatched` (integer) - `jobSummary.duplicates` (integer) - `jobEnrichmentSettings` (object) Available after Enrichment - `jobEnrichmentSettings.creditType` (string) - `archived` (boolean) ## Response 400 fields (application/json): - `correlationId` (string) A unique ID assigned to this request. - `message` (string) - `details` (string) Provides further information on why the request was rejected ## Response 401 fields (application/json): - `error` (string) ## Response 403 fields (application/json): - `message` (string) Example: "Access forbidden" ## Response 404 fields (application/json): - `correlationId` (string) A unique ID assigned to this request. - `message` (string) - `details` (string) Provides further information on why the request was rejected