Skip to main content
POST
/
cdds
/
{id}
/
run-checks
Run risk checks on a completed CDD case
curl --request POST \
  --url https://api.godiligent.ai/cdds/{id}/run-checks \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '
{
  "risk_check_set_id": "a1b2c3d4-5678-90ab-cdef-1234567890ab"
}
'
{
  "error": "Invalid case ID format",
  "errors": [
    {}
  ],
  "message": "Case is not completed"
}

Authorizations

X-API-KEY
string
header
required

Path Parameters

id
string<uuid>
required

The id of the cdd request

Example:

"d6e3b214-30b1-4401-a1b8-a1bd3c6a84e4"

Body

application/json
risk_check_set_id
string<uuid> | null

Optional risk check set ID to run specific checks. If not provided, the original risk check set ID used when case was created will be used.

Example:

"a1b2c3d4-5678-90ab-cdef-1234567890ab"

Response

OK - Risk checks have been triggered successfully