Skip to content

Reschedule

Base URL

PROD: https://dms-gs.jtc.aljabr.com.sa/gs
TEST: https://dms-gs-test.jtc.aljabr.com.sa/gs

Reschedule testdrive booking

Reschedules an existing test drive booking to a new date, vehicle, and slot or start time.

POST /v1/testdrive/reschedule


Refer the comment //Mandatory means the property is required

📌 API

sample data with reference of master list mapping

Request Body (Using Slot Type)

{
  "requestMasterId": 2729,                  // Mandatory
  "aptVehicleId": 211,                      // Mandatory
  "slotMasterId": 19,                       // Mandatory
  "reBookingDate": "2026-06-19"             // Mandatory
}

Request Body (Using Period)

{
  "requestMasterId": 2729,                  // Mandatory
  "aptVehicleId": 211,                      // Mandatory
  "reBookingDate": "2026-06-19",            // Mandatory
  "startTime": "15:30:30"                   // Mandatory (HH:mm:ss)
}

Response

{
  "success": true,
  "message": "testdrive-request-rescheduled-successfully",
  "requestMasterId": 2731
}