:doc:`VoiceID <../../voice-id>` / Client / disassociate_fraudster

**********************
disassociate_fraudster
**********************



.. py:method:: VoiceID.Client.disassociate_fraudster(**kwargs)

  

  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.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/voice-id-2021-09-27/DisassociateFraudster>`_  


  **Request Syntax**
  ::

    response = client.disassociate_fraudster(
        DomainId='string',
        FraudsterId='string',
        WatchlistId='string'
    )
    
  :type DomainId: string
  :param DomainId: **[REQUIRED]** 

    The identifier of the domain that contains the fraudster.

    

  
  :type FraudsterId: string
  :param FraudsterId: **[REQUIRED]** 

    The identifier of the fraudster to be disassociated from the watchlist.

    

  
  :type WatchlistId: string
  :param WatchlistId: **[REQUIRED]** 

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

    

  
  
  :rtype: dict
  :returns: 
    
    **Response Syntax**

    
    ::

      {
          'Fraudster': {
              'CreatedAt': datetime(2015, 1, 1),
              'DomainId': 'string',
              'GeneratedFraudsterId': 'string',
              'WatchlistIds': [
                  'string',
              ]
          }
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **Fraudster** *(dict) --* 

        Contains all the information about a fraudster.

        
        

        - **CreatedAt** *(datetime) --* 

          The timestamp of when Voice ID identified the fraudster.

          
        

        - **DomainId** *(string) --* 

          The identifier of the domain that contains the fraudster.

          
        

        - **GeneratedFraudsterId** *(string) --* 

          The service-generated identifier for the fraudster.

          
        

        - **WatchlistIds** *(list) --* 

          The identifier of the watchlists the fraudster is a part of.

          
          

          - *(string) --* 
      
    
  
  **Exceptions**
  
  *   :py:class:`VoiceID.Client.exceptions.ResourceNotFoundException`

  
  *   :py:class:`VoiceID.Client.exceptions.ValidationException`

  
  *   :py:class:`VoiceID.Client.exceptions.ConflictException`

  
  *   :py:class:`VoiceID.Client.exceptions.InternalServerException`

  
  *   :py:class:`VoiceID.Client.exceptions.ThrottlingException`

  
  *   :py:class:`VoiceID.Client.exceptions.AccessDeniedException`

  