Skip to main content

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

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

cURL
curl --request POST
'https://test-api.bvndle.com/api/v1/laas/tickets' \

{
  "status": "success",
  "message": "ticket created",
  "data": {
    "id": "b1127b1d-df3a-45db-88f0-26458ad15a4a",
    "partner": {},
    "name": "Raffle ticket",
    "description": "Hello world!!",
    "status": "active",
    "code": "12345678",
    "expiryDate": null,
    "createdAt": "2025-10-08T19:21:12.786Z",
    "updatedAt": "2025-10-08T19:21:12.786Z"
  }
}

{
  "status": "success",
  "message": "badge created",
  "data": {
    "id": "855d98d9-274e-4bbd-b2a6-622ff0cdf9f8",
    "name": "dark ninja warrior",
    "description": "Testing!!!",
    "partner": {},
    "icon": null
  }
}