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

Signup

POST
https://ttcuat.wsync.app/api/v1/driver/signup

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
Header Params

Body Params application/jsonRequired

Examples

Responses

🟢200Success
application/json
Bodyapplication/json

Response Response Example
{
    "object": "signup",
    "id": "e72b179c-2641-42b5-989a-11bc0b03b56b",
    "livemode": false,
    "status": "success",
    "message": "Driver created successfully",
    "data": {
        "firstNameThai": "TEST_Firstname",
        "lastNameThai": "TEST_Lastname",
        "firstNameEng": "",
        "lastNameEng": "",
        "nickName": "TEST_Nickname",
        "phoneNumber": "TEST_0873574494",
        "email": "test@domain.com",
        "username": "testdriver",
        "tempPassword": "3ca4dnv5"
    }
}
Previous
List Drivers
Next
Signin
Built with