Skip to content

Associate Fraudster

voiceid_associate_fraudster R Documentation

Associates the fraudsters with the watchlist specified in the same domain

Description

Associates the fraudsters with the watchlist specified in the same domain.

Usage

voiceid_associate_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 associated with the watchlist.

WatchlistId

[required] The identifier of the watchlist you want to associate with 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$associate_fraudster(
  DomainId = "string",
  FraudsterId = "string",
  WatchlistId = "string"
)