Skip to main content

URL
https://test-api.bvndle.com/api/v1/laas/tickets/:id
Base URL
https://test-api.bvndle.com/api/v1/laas
HTTP Method
PUT
Authorization Header
Bearer ACCESS_TOKEN

Request Body:
nametypeDescription
namestringOptional
Name of the ticket
descriptionstringOptional
The description of the ticket
codenumberOptional
Ticket code
expiryDatedateOptional
This is the expiry date of the ticket

cURL
curl --request PUT
'https://test-api.bvndle.com/api/v1/laas/tickets/34d48345-18ab-4ba0-b9b7-07a7bf767666' \

{
    // "expiryDate": "2025-10-20"
    // "status": "inactive"
    "name": "Test ticket",
    "description": "Test!!!"
}

{
  "status": "success",
  "message": "ticket updated",
  "data": {
    "id": "c84470af-a9b8-49f7-a4f3-e46d9d814edf",
    "partner": {},
    "name": "Test ticket",
    "description": "Test!!!",
    "status": "inactive",
    "code": "4949438674",
    "expiryDate": "2025-10-19T23:00:00.000Z",
    "createdAt": "2025-10-04T14:49:59.311Z",
    "updatedAt": "2025-10-08T19:21:57.002Z"
  }
}