:doc:`ChimeSDKVoice <../../chime-sdk-voice>` / Client / disassociate_phone_numbers_from_voice_connector_group

*****************************************************
disassociate_phone_numbers_from_voice_connector_group
*****************************************************



.. py:method:: ChimeSDKVoice.Client.disassociate_phone_numbers_from_voice_connector_group(**kwargs)

  

  Disassociates the specified phone numbers from the specified Amazon Chime SDK Voice Connector group.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/DisassociatePhoneNumbersFromVoiceConnectorGroup>`_  


  **Request Syntax**
  ::

    response = client.disassociate_phone_numbers_from_voice_connector_group(
        VoiceConnectorGroupId='string',
        E164PhoneNumbers=[
            'string',
        ]
    )
    
  :type VoiceConnectorGroupId: string
  :param VoiceConnectorGroupId: **[REQUIRED]** 

    The Voice Connector group ID.

    

  
  :type E164PhoneNumbers: list
  :param E164PhoneNumbers: **[REQUIRED]** 

    The list of phone numbers, in E.164 format.

    

  
    - *(string) --* 

    

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

    
    ::

      {
          'PhoneNumberErrors': [
              {
                  'PhoneNumberId': 'string',
                  'ErrorCode': 'BadRequest'|'Conflict'|'Forbidden'|'NotFound'|'PreconditionFailed'|'ResourceLimitExceeded'|'ServiceFailure'|'AccessDenied'|'ServiceUnavailable'|'Throttled'|'Throttling'|'Unauthorized'|'Unprocessable'|'VoiceConnectorGroupAssociationsExist'|'PhoneNumberAssociationsExist'|'Gone',
                  'ErrorMessage': 'string'
              },
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **PhoneNumberErrors** *(list) --* 

        If the action fails for one or more of the phone numbers in the request, a list of the phone numbers is returned, along with error codes and error messages.

        
        

        - *(dict) --* 

          If a phone number action fails for one or more of the phone numbers in a request, a list of the failed phone numbers is returned, along with error codes and error messages.

          
          

          - **PhoneNumberId** *(string) --* 

            The phone number ID for which the action failed.

            
          

          - **ErrorCode** *(string) --* 

            The error code.

            
          

          - **ErrorMessage** *(string) --* 

            The error message.

            
      
    
  
  **Exceptions**
  
  *   :py:class:`ChimeSDKVoice.Client.exceptions.UnauthorizedClientException`

  
  *   :py:class:`ChimeSDKVoice.Client.exceptions.NotFoundException`

  
  *   :py:class:`ChimeSDKVoice.Client.exceptions.ForbiddenException`

  
  *   :py:class:`ChimeSDKVoice.Client.exceptions.BadRequestException`

  
  *   :py:class:`ChimeSDKVoice.Client.exceptions.ThrottledClientException`

  
  *   :py:class:`ChimeSDKVoice.Client.exceptions.ServiceUnavailableException`

  
  *   :py:class:`ChimeSDKVoice.Client.exceptions.ServiceFailureException`

  