Get Ticket Meeting
Learn how to fetch a meeting associated with a ticket.
Request
- Method: GET
- Endpoint:
https://tex-resolve-backend.onrender.com/api/v1/meetings/ticket/{id}
Path Parameters
- ticketId (string): The ID of the ticket for which to fetch associated meeting.
Responses
Success
code 200: Success
{
"meeting": [
{
"_id": "654b68e9c4ab84dcc26ad908",
"title": "DevOps Sync Call",
"ticketId": "Ticket7",
"date": "2025-05-20",
"time": "10:30",
"meeting_link": "https://us05web.zoom.us/j/86289629132?pwd=MicIHCJMlrVykmk2gyNBIczHXibbxR.1"
}
]
}
Errors
statusCode 401: Authentication Error
{
"message": "User token is not valid or does not exist"
}
statusCode 404: Not Found
{
"message": "No meetings found for the provided ticket ID"
}
statusCode 500: Internal Server Error
{
"message": "Try again or restart service"
}