# Send MMS

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /message/sendmms:
    post:
      summary: Send MMS
      deprecated: false
      description: >-
        ### Description :

        Send or receive short text messages in Beetexting. You can send messages
        sequentially to recipients at up to X requests per minute. A single SMS
        can include up to (X Characters or Bytes). MMS can include up to X
        attachments, up to X file size


        ### URL : 

        https://connect.beetexting.com/prod/message/sendmms?from=+15551234890&to=+15553307409&k=j&text=Texting
        from postman

        (While sending the request please make sure to append
        https://connect.beeteting.com/prod if the url in the cUrl command starts
        with /message ...)


        **Note : To add the OAuth2.0 Auth Token please see the section 'OAuth2.0
        For Beetexting' and 'Postman How-to for beetexting section'
      tags:
        - APIs/Message API
      parameters:
        - name: from
          in: query
          description: >-
            The phone number from which the sms is being sent. The phone number
            of the sender. Example: +13462958864 
          required: true
          example: '+13467358091'
          schema:
            type: string
        - name: to
          in: query
          description: >-
            One or more phone numbers of the receipients of the message
            separated by comma. Example: +13093932133, +13093932132 
          required: true
          example: '+15015304208'
          schema:
            type: string
        - name: text
          in: query
          description: The mms text
          required: true
          example: Test MMS
          schema:
            type: string
        - name: tag
          in: query
          description: Tag of the contact.
          required: false
          example: yourTag
          schema:
            type: string
        - name: scheduledDateTime
          in: query
          description: >-
            Date time for message delivery schedule in milliseconds. Delivery
            time of the message cannot be sooner than next 3 minutes.
          required: false
          schema:
            type: string
        - name: x-api-key
          in: header
          description: ''
          required: true
          example: vrSTrsB7qv4jDZFsnaEWz7p3qtp7XvTq718a6SaF
          schema:
            type: string
      requestBody:
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                file:
                  type: string
                  format: binary
              required:
                - file
            examples: {}
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties: {}
                x-apidog-orders: []
              example:
                result: Message delivered
          headers: {}
          x-apidog-name: Success
      security:
        - oauth21: []
      x-apidog-folder: APIs/Message API
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/1058487/apis/api-21020115-run
components:
  schemas: {}
  securitySchemes:
    oauth21:
      type: oauth2
      flows:
        authorizationCode:
          authorizationUrl: ''
          tokenUrl: ''
          refreshUrl: ''
          scopes: {}
          x-apidog:
            addTokenTo: header
            useTokenType: access_token
            queryParamKey: access_token
            headerPrefix: Bearer
            codeVerifier: ''
            challengeAlgorithm: S256
            authRequestParams: []
            tokenRequestParams: []
servers: []
security: []

```
