1. Drivers
TTC | W-SYNC
  • Introduction
  • Authentication
  • Error Handling
  • Tickets
    • Online Booking
      POST
    • Get Ticket
      GET
    • List Tickets
      GET
    • List Tickets Status
      GET
  • Drivers
    • Get Driver
      GET
    • List Drivers
      GET
    • Signup
      POST
    • Signin
      POST
    • Change Password
      POST
    • Forgot Password
      POST
    • Reset Password
      POST
    • Update Driver
      PATCH
  • Car Tracking
    • List Tracking
      GET
    • Get Tracking
      GET
    • Update Tracking
      PATCH
    • Assign Driver
      POST
  • Notification Webhooks
    • Overview
    • Authenticating Webhooks
    • Event Types
    • Webhooks
W-SYNC
  1. Drivers

List Drivers

GET
https://ttcuat.wsync.app/api/v1/driver

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

Header Params

Responses

ðŸŸĒ200Success
application/json
Bodyapplication/json

Response Response Example
{
    "object": "list",
    "livemode": false,
    "data": [
        {
            "object": "driver",
            "id": "eab90c28-8c74-479f-88b4-7345a4fd034e",
            "livemode": false,
            "location": "/driver/eab90c28-8c74-479f-88b4-7345a4fd034e",
            "firstNameThai": "āļ™āļąāļāļ‚āļąāļš",
            "lastNameThai": "āļ—āļĩāļ—āļĩāļ‹āļĩ",
            "firstNameEng": "",
            "lastNameEng": "",
            "nickName": "",
            "phoneNumber": "",
            "email": "",
            "pictureProfile": "https://ttcuat.wsync.app/assets/images/users/nophoto.jpg",
            "username": "drivertest",
            "tempPassword": "drivertest"
        }
    ],
    "limit": 20,
    "offset": 0,
    "total": 1,
    "total_pages": 1,
    "locations": "/driver",
    "order": "chronological"
}
Previous
Get Driver
Next
Signup
Built with