1. Tickets
TTC WMS
  • Introduction
  • Authentication
  • Tickets
    • Online Booking
      POST
    • Get Ticket
      GET
    • Search Tickets
      GET
  • Notification Webhooks
    • Webhooks
  1. Tickets

Search Tickets

Developing
GET
/api/v1/search
ticketStatusความหมาย
NEW_BOOKINGจองออนไลน์ (รอเปิดใบงาน)
WAIT_REPAIRรอซ่อม
REPAIRINGกำลังซ่อม
WAIT_CLEANรอล้าง
CLEANINGล้าง
WAIT_QCรอตรวจสอบ
QC_CHECKตรวจสอบ
READYรอส่งมอบ
COMPLETEDส่งมอบ
ON_HOLDหยุดซ่อม

Request

Authorization
Send your HTTP requests with an
Authorization
header that contains the word Basic followed by a space and a base64-encoded string username:password
Example:
Authorization: Basic *****************
Body Params multipart/form-dataRequired

Responses

🟢200Success
application/json
Body

Response Response Example
{
    "ticketCode": "string",
    "ticketStatus": "string",
    "ticketWip": "string",
    "car": {
        "vin": "string",
        "className": "string",
        "licenseNumber": "string",
        "licenseProvince": "string",
        "mileage": "string"
    },
    "customer": {
        "name": "string",
        "email": "string",
        "phone": "string"
    },
    "booking": {
        "date": "string",
        "time": "string",
        "service": "string",
        "note": "string"
    }
}
Modified at 2026-01-20 16:26:19
Previous
Get Ticket
Next
Webhooks
Built with