Skip to main content

Create Meeting

Learn how to create a meeting in TexResolve.

Request

  • Method: POST
  • Endpoint: https://tex-resolve-backend.onrender.com/api/v1/meetings

Body Parameters

  • Meeting Details: Enter the details for the meeting.
ParameterTypeDescription
titleStringTitle of the meeting
ticketIdStringAssociated ticket ID
dateStringDate of the meeting (format: YYYY-MM-DD)
timeStringTime of the meeting (format: HH:mm)

Here's an example request body for creating a meeting:

creating meeting example
{
"title": "DevOps Sync Call",
"ticketId": "Ticket7",
"date": "2025-05-20",
"time": "10:30"
}

Responses

Success

statusCode 201: success
{
message: "Meeting created successfully",
link: zoomMeetingUrl //zoom meeting link,
}

Errors

statusCode 401: Authentication error
User token is not valid or does not exist or expired
statusCode 400: Bad Request
Invalid request parameters or access
statusCode 500: Internal Server Error
Try again or restart service