v1

latestOpenAPI 3.0.32026-07-2141248520.9 KB
Monitoring

Turn on/off monitoring for a given entity

Toggle monitoring on or off for for a given entity e.g. AML monitoring. Use this endpoint to either:

  • Enable monitoring - System will start monitoring the entity for potential changes.
  • Disable monitoring - System will no longer monitor the entity for new potential matches and will no longer send alerts.

The endpoint will effectively manage the monitoring status of the entity. Having monitoring status of a type enabled means that the entity is being monitored for that type. If the entity has several services under the entity, the endpoint will manage the subscription status of the entity for each service for the types requested. Request: The request object contains the entityId and list of monitoring that are about to toggle. Also, the request body contains comment to be added to audit logs Response: The response object contains the requestId and the subscriptions that associated with the entity. The subscriptions object contains the type of monitoring and the details of the subscriptions. The details of the subscriptions includes:

  • service name
  • service profile ID
  • status of the subscription
  • the workflows that will be executed by the type for the service profile.
patch/v2/individuals/{entityId}/monitor

Query parameters

enabledboolean required

Enable or disable monitoring for the given entity. Set to true to turn monitoring on or set to false to turn monitoring off.

monitoringTypesMonitoringType[]

The type of ongoing monitoring to be enabled/disable for the given entity. Exclude this parameter to set the monitoring status for all types.

Headers

api_keystring required
Example:245c765b124a098d09ef8765....

Your API key provided by FrankieOne

X-Frankie-CustomerIDstring required
Example:12345678-1234-1234-1234-123456789012

Your Customer ID provided by FrankieOne

X-Frankie-CustomerChildIDstring
Example:87654321-4321-4321-4321-210987654321

Your Customer Child ID provided by FrankieOne

X-Frankie-Channelstring

Open string that can be used to define the "channel" the request comes in from. It can potentially be used in routing and risk calculations upon request. Default values that can be used are: api portal smartui Any alphanumeric string is supported though. Anything over 64 characters will be truncated.

Request body

Example request

{
  "comment": {
    "commentId": "55fc5d54-46f7-49c8-bf78-e07ec79cd6e7",
    "text": "Update after speaking to customer over the phone directly."
  }
}

Response

OK

requestIdstring

The unique request identifier for the API call made.

Example response

{
  "requestId": "01HN9XHZN6MGXM9JXG50K59Q85"
}