Skip to content

Upload a Job File with an {id}

Request

Upload a Job File for processing, you need to link to the {id} number generated from the 'Job Request'.

Security
bearerToken
Path
idstringrequired

The {id} number generated from the 'Job Request'.

Bodymultipart/form-data
jobFilestring, (binary)required

The file to be uploaded

hasHeaderbooleanrequired

Indicates if the file has a header row

curl -i -X POST \
  'https://connect.sandbox.creditsafe.com/v1/dataCleaning/jobs/{id}/upload' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: multipart/form-data' \
  -F jobFile=string \
  -F hasHeader=true

Responses

Successful Response

Bodyapplication/json
idstring
sourceFilenamestring
hasHeaderboolean
createdAtstring, (date-time)
modifiedAtstring, (date-time)
managingUserIdinteger
managingCustomerIdinteger
statusstring
activeboolean
Response
{ "id": "string", "sourceFilename": "string", "hasHeader": true, "createdAt": "2019-08-24T14:15:22Z", "modifiedAt": "2019-08-24T14:15:22Z", "managingUserId": 0, "managingCustomerId": 0, "status": "string", "active": true }