web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

No record found.

Community site session details

Community site session details

Session Id :
Microsoft Dynamics 365 | Integration, Dataverse...
Answered

Webex custom connector

(3) ShareShare
ReportReport
Posted on by 10
This is my custom connector which i am using for webex meetings in powerapps through powerautomate.

swagger: '2.0'

info:
  title: WebexIntegration
  description: Create a Webex meeting from Power Automate
  version: '1.0'
host: webexapis.com
basePath: /v1
schemes:
  - https
consumes:
  - application/json
produces:
  - application/json
paths:
  /meetings:
    post:
      operationId: CreateWebexMeeting
      summary: Create a Webex meeting
      description: Create a new Webex meeting
      parameters:
        - in: body
          name: body
          required: true
          schema:
            type: object
            properties:
              title:
                type: string
              start:
                type: string
                description: Start date/time in ISO format (e.g., 2025-07-15T15:00:00Z)
              end:
                type: string
                description: End date/time in ISO format
              invitees:
                type: array
                items:
                  type: object
                  properties:
                    email:
                      type: string
      responses:
        200:
          description: Meeting created successfully
          schema:
            type: object
            properties:
              id:
                type: string
              meetingNumber:
                type: string
              webLink:
                type: string
              hostEmail:
                type: string
securityDefinitions:
  oauth2-auth:
    type: oauth2
    flow: accessCode
    authorizationUrl: https://webexapis.com/v1/authorize
    tokenUrl: https://webexapis.com/v1/access_token
    scopes:
      meeting:schedules_write: Create and manage meetings
      meeting:schedules_read: Read meetings
security:
  - oauth2-auth:
      - meeting:schedules_write
      - meeting:schedules_read


when i am passing an input in invitess like this 
raja451@gmail.com;anazia.kuntz@il.gov;cvcek@hotmail.com;abbey.higs@royce.com 


I am getting this error.
 
{
  "message""The request could not be understood by the server due to malformed syntax. See 'errors' for more details.",
  "errors": [
    {
      "description""start cannot be empty."
    }
  ],
  "trackingId""ROUTERGW_a27eeae4-ea1f-41c6-83bf-250aa8b0d184"
}.


if anyone create a webex custom connector before need help
I have the same question (0)
  • Verified answer
    DAnny3211 Profile Picture
    11,397 on at

    Hi there,

    Thanks for sharing your Swagger definition — you're very close! I ran into a similar issue when building a Webex connector for Power Automate, and here's what helped me resolve it.

    Problem:

    You're passing the invitees field like this:

    raja451@gmail.com;anazia.kuntz@il.gov;cvcek@hotmail.com;abbey.higs@royce.com
    

    But the Webex API expects invitees to be an array of objects, not a semicolon-separated string.

    Also, the error:

     

    "errors": [

     

      {

     

        "description": "start cannot be empty."

     

      }

     

    ]

    suggests that the start field is either missing or not formatted correctly.


    Solution:

    Make sure your request body looks like this:

    {

     

      "title": "Team Sync",

     

      "start": "2025-08-06T10:00:00Z",

     

      "end": "2025-08-06T11:00:00Z",

     

      "invitees": [

     

        { "email": "raja451@gmail.com" },

     

        { "email": "anazia.kuntz@il.gov" },

     

        { "email": "cvcek@hotmail.com" },

     

        { "email": "abbey.higs@royce.com" }

     

      ]

     

    }

    Tips:

    • In Power Automate, use a JSON array for invitees, not a single string.
    • Ensure start and end are in ISO 8601 format (YYYY-MM-DDTHH:MM:SSZ).
    • If you're using a Power Apps trigger, you may need to parse the input string into an array using a Compose or Parse JSON action.

    Let me know if you need help building the flow or transforming the input dynamically!

    Please verify if this response was helpful.

    Best regards!

  • SA-09051757-0 Profile Picture
    10 on at
    @DAnny3211


    Now I ran into another problem, my webex is now creating a meeting but the problem is I am only reciving the invite any other invitees are not getting invites, can you please help if you face this problem with your connector.

    thanks

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Responsible AI policies

As AI tools become more common, we’re introducing a Responsible AI Use…

Neeraj Kumar – Community Spotlight

We are honored to recognize Neeraj Kumar as our Community Spotlight honoree for…

Leaderboard > Microsoft Dynamics 365 | Integration, Dataverse, and general topics

#1
Siv Sagar Profile Picture

Siv Sagar 93 Super User 2025 Season 2

#2
#ManoVerse Profile Picture

#ManoVerse 76

#3
Martin Dráb Profile Picture

Martin Dráb 64 Most Valuable Professional

Last 30 days Overall leaderboard

Product updates

Dynamics 365 release plans