Create Protect Schedule

Creates a Schedule to check against new sanctions that effect your chosen Investigation.
The frequency of the schedule is set to 'daily' as a default.

To receive notifications of alerts you need to follow this POST call with PUT/Update Schedules to set the 'isEmailRequired' to true.

SecuritybearerToken
Request
Request Body schema: application/json
required
investigationId
required
string <guid>
screeningThreshold
required
integer <int32>

The match score you will be alerted above. Can only enter the following options: 85, 90, 95, 100

Responses
201
400
404
post/protect/schedules
Request samples
application/json
{
  • "investigationId": "string",
  • "screeningThreshold": 0
}
Response samples
application/json
{
  • "correlationId": "string",
  • "id": "string",
  • "customerId": 0,
  • "userId": 0,
  • "investigationId": "string",
  • "investigation": {
    },
  • "frequency": "Daily",
  • "screeningThreshold": 0,
  • "createdAt": "2019-08-24T14:15:22Z",
  • "isEmailRequired": true,
  • "isDisabled": true
}