Skip to content

Return Async AML Jobs By Id

Request

Returns a list of async aml jobs for user.

Security
bearerToken
Path
jobIdstring, (uuid)required

id of the async aml job

Query
pageinteger

Starting page number.

Default:1
pageSizeinteger

Specifies the number of items to be displayed per page. Allowed values are between 1 and 100.

curl -i -X GET \
  'https://connect.sandbox.creditsafe.com/v1/compliance/kyc-protect/asyncAmlJobs/{jobId}?page=1&pageSize=0' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Success

Bodyapplication/json
idstring, (uuid)
statusstring
Enum:"created""processing""completed"
createdAtstring, (date-time)
createdByIdinteger, (int32)
createdBystring
startedAtstring or null, (date-time)
finishedAtstring or null, (date-time)
criteriaCountinteger, (int32)
Response
{ "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "status": "created", "createdAt": "2019-08-24T14:15:22Z", "createdById": 0, "createdBy": "string", "startedAt": "2019-08-24T14:15:22Z", "finishedAt": "2019-08-24T14:15:22Z", "criteriaCount": 0 }