Skip to content

Disassociate Fraudster

voiceid_disassociate_fraudster R Documentation

Disassociates the fraudsters from the watchlist specified

Description

Disassociates the fraudsters from the watchlist specified. Voice ID always expects a fraudster to be a part of at least one watchlist. If you try to disassociate a fraudster from its only watchlist, a ValidationException is thrown.

Usage

voiceid_disassociate_fraudster(DomainId, FraudsterId, WatchlistId)

Arguments

DomainId

[required] The identifier of the domain that contains the fraudster.

FraudsterId

[required] The identifier of the fraudster to be disassociated from the watchlist.

WatchlistId

[required] The identifier of the watchlist that you want to disassociate from the fraudster.

Value

A list with the following syntax:

list(
  Fraudster = list(
    CreatedAt = as.POSIXct(
      "2015-01-01"
    ),
    DomainId = "string",
    GeneratedFraudsterId = "string",
    WatchlistIds = list(
      "string"
    )
  )
)

Request syntax

svc$disassociate_fraudster(
  DomainId = "string",
  FraudsterId = "string",
  WatchlistId = "string"
)