:doc:`Chime <../../chime>` / Client / create_meeting_dial_out

***********************
create_meeting_dial_out
***********************



.. py:method:: Chime.Client.create_meeting_dial_out(**kwargs)

  

  Uses the join token and call metadata in a meeting request (From number, To number, and so forth) to initiate an outbound call to a public switched telephone network (PSTN) and join them into a Chime meeting. Also ensures that the From number belongs to the customer.

   

  To play welcome audio or implement an interactive voice response (IVR), use the ``CreateSipMediaApplicationCall`` action with the corresponding SIP media application ID.

   

  .. warning::

     

    **This API is not available in a dedicated namespace.**

    

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/CreateMeetingDialOut>`_  


  **Request Syntax**
  ::

    response = client.create_meeting_dial_out(
        MeetingId='string',
        FromPhoneNumber='string',
        ToPhoneNumber='string',
        JoinToken='string'
    )
    
  :type MeetingId: string
  :param MeetingId: **[REQUIRED]** 

    The Amazon Chime SDK meeting ID.

    

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

    Phone number used as the caller ID when the remote party receives a call.

    

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

    Phone number called when inviting someone to a meeting.

    

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

    Token used by the Amazon Chime SDK attendee. Call the `CreateAttendee <https://docs.aws.amazon.com/chime/latest/APIReference/API_CreateAttendee.html>`__ action to get a join token.

    

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

    
    ::

      {
          'TransactionId': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **TransactionId** *(string) --* 

        Unique ID that tracks API calls.

        
  
  **Exceptions**
  
  *   :py:class:`Chime.Client.exceptions.BadRequestException`

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

  
  *   :py:class:`Chime.Client.exceptions.ResourceLimitExceededException`

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

  
  *   :py:class:`Chime.Client.exceptions.UnauthorizedClientException`

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

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

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

  