1. Tickets
TTC | W-SYNC
  • Introduction
  • Authentication
  • Error Handling
  • Tickets
    • Online Booking
      POST
    • Get Ticket
      GET
    • List Tickets
      GET
    • Search Tickets
      GET
  • Notification Webhooks
    • Webhooks
W-SYNC
  1. Tickets

Search Tickets

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

Request

Authorization
Basic Auth
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 *****************
or
Query Params

Body Params multipart/form-dataRequired

Responses

🟢200Success
application/json
Bodyapplication/json

Response Response Example
{
    "object": "search",
    "livemode": true,
    "data": [
        {
            "object": "ticket",
            "id": "T26040002",
            "location": "/ticket/T26040002",
            "ticketCode": "T26040002",
            "ticketStatus": "ON_HOLD",
            "ticketWip": "WIP25076",
            "car": {
                "vin": "WDC2539146L028111",
                "className": "",
                "license": "1กก123กท",
                "mileage": ""
            },
            "customer": {
                "name": "ทีทีซี มอเตอร์",
                "phone": "0999999999"
            },
            "booking": {
                "date": "2026-04-16",
                "time": "08:30",
                "service": [],
                "note": ""
            }
        }
    ],
    "page": 1,
    "per_page": 30,
    "total": 1,
    "total_pages": 1,
    "filters": {
        "wip": "WIP25076"
    },
    "location": "/search",
    "order": "chronological",
    "scope": "ticket"
}
Modified at 2026-05-19 04:14:14
Previous
List Tickets
Next
Webhooks
Built with