Returns Job by {id} number which is generated from 'Creating Job Request' stage. This endpoint is used to check the status of the job.
Security
bearerToken
- Sandbox serverhttps://connect.sandbox.creditsafe.com/v1/dataCleaning/jobs/{id}
- Production serverhttps://connect.creditsafe.com/v1/dataCleaning/jobs/{id}
curl -i -X GET \
'https://connect.sandbox.creditsafe.com/v1/dataCleaning/jobs/{id}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Successful Response
Current status of the job.
Enum:"created""uploading""uploadError""uploaded""ready""matching""matchingError""matched""addingToPortfolio""addedToPortfolio"
Example:"created"
Response
{ "id": "string", "name": "string", "createdAt": "2019-08-24T14:15:22Z", "modifiedAt": "2019-08-24T14:15:22Z", "managingUserId": 0, "managingCustomerId": 0, "owningCustomerId": 0, "owningUserId": 0, "owningCompanyName": "string", "status": "created", "countryCode": "string", "portfolioId": "string", "source": "dataCleaning", "jobSummary": { "totalRows": 0, "matched": 0, "manualMatched": 0, "unmatched": 0, "duplicates": 0 }, "jobEnrichmentSettings": { "headquarters": "string", "creditType": "string", "dE_Reason": { … }, "algorithmBanding": [ … ], "countries": [ … ] }, "archived": true, "owningUserAccountStatus": "string" }