Introduction
This documentation aims to provide all the information you need to work with our API.
Authenticating requests
This API is not authenticated.
Cancellation Management
APIs for User & cancellations
List Cancellation Reasons
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/common/cancallation/reasons" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/common/cancallation/reasons"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "cancellation_reasons_listed",
"data": [
{
"id": "e5cf4a77-93ee-48fd-b889-6dcf4b7041e3",
"user_type": "user",
"payment_type": "free",
"arrival_status": "before",
"reason": "test-reason",
"active": 1,
"created_at": "2020-08-31 18:13:18",
"updated_at": "2020-08-31 18:13:18",
"deleted_at": null
}
]
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Complaints apis
APIs for Complaints
List complaint titles
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/common/complaint-titles?complaint_type=sint" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/common/complaint-titles"
);
const params = {
"complaint_type": "sint",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "complaint_titles_listed",
"data": [
{
"id": "e5cf4a77-93ee-48fd-b889-6dcf4b7041e3",
"user_type": "user",
"title": "test-title",
"complaint_type": "general",
"active": 1,
"created_at": "2020-08-31 18:13:18",
"updated_at": "2020-08-31 18:13:18",
"deleted_at": null
}
]
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Make Complaints
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/common/make-complaint" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"complaint_title_id\": 3,
\"description\": \"Sint quibusdam in fugiat.\",
\"request_id\": \"omnis\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/common/make-complaint"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"complaint_title_id": 3,
"description": "Sint quibusdam in fugiat.",
"request_id": "omnis"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "complaint_posted_successfully",
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Countries
Get countries
Get all the countries.
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/countries" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/countries"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"data": [
{
"id": 1,
"dial_code": "+93",
"name": "Afghanistan",
"code": "AF",
"flag": "http://localhost/new_vue_tagxi/public/image/country/flags/AF.png",
"dial_min_length": 7,
"dial_max_length": 14,
"active": true,
"default": false
},
]
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get User OnBoarding screens
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/on-boarding" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/on-boarding"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"data": {
"onboarding": {
"data": [
{
"order": 3,
"id": 3,
"screen": "user",
"title": "Intuitive",
"onboarding_image": "http://localhost/new_vue_tagxi/public/storage/uploads/onboarding/onboard2.jpg",
"description": "Seamless journeys,\nJust a tap away,\nExplore hassle-free,\nEvery step of the way.",
"active": 1
},
]
}
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get Driver OnBoarding screens
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/on-boarding-driver" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/on-boarding-driver"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"data": {
"onboarding": {
"data": [
{
"order": 2,
"id": 6,
"screen": "driver",
"title": "Clarity",
"onboarding_image": "http://localhost/new_vue_tagxi/public/storage/uploads/onboarding/onboard4.jpg",
"description": "Fair pricing, crystal clear,\nYour trust, our promise sincere.\nWith us, youll find no hidden fee,\nTransparency is our guarantee.",
"active": 1
},
]
}
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get Owner OnBoarding screens
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/on-boarding-owner" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/on-boarding-owner"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"data": {
"onboarding": {
"data": [
{
"order": 4,
"id": 12,
"screen": "owner",
"title": "Support",
"onboarding_image": "http://localhost/new_vue_tagxi/public/storage/uploads/onboarding/onboard3.jpg",
"description": "Embark on your journey with confidence, knowing that our commitment to your satisfaction is unwavering",
"active": 1
},
]
}
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Driver-trips-apis
APIs for Driver-trips apis
Create Instant Ride
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/request/create-instant-ride" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"pick_lat\": 2797757.538179,
\"pick_lng\": 502663.12351,
\"vehicle_type\": \"voluptas\",
\"payment_opt\": \"0\",
\"pick_address\": \"quibusdam\",
\"drivers\": \"corporis\",
\"is_later\": \"1\",
\"trip_start_time\": \"2024-11-26 09:37:50\",
\"promocode_id\": \"laboriosam\",
\"transport_type\": \"ea\",
\"drop_lat\": 4880.3,
\"drop_lng\": 1723.79,
\"drop_address\": \"voluptatibus\",
\"name\": \"sunt\",
\"pickup_poc_mobile\": \"in\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/request/create-instant-ride"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"pick_lat": 2797757.538179,
"pick_lng": 502663.12351,
"vehicle_type": "voluptas",
"payment_opt": "0",
"pick_address": "quibusdam",
"drivers": "corporis",
"is_later": "1",
"trip_start_time": "2024-11-26 09:37:50",
"promocode_id": "laboriosam",
"transport_type": "ea",
"drop_lat": 4880.3,
"drop_lng": 1723.79,
"drop_address": "voluptatibus",
"name": "sunt",
"pickup_poc_mobile": "in"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "created_instant_ride_successfully",
"data": {
"id": "068ecb7a-7198-4322-82b2-28c8e1c90f0a",
"request_number": "REQ_000002",
"is_later": 0,
"user_id": 15,
"trip_start_time": "5th Aug 09:54 PM",
"arrived_at": null,
"accepted_at": null,
"completed_at": "5th Aug 11:49 PM",
"is_driver_started": 0,
"is_driver_arrived": 0,
"is_trip_start": 0,
"is_completed": 1,
"is_cancelled": 0,
"cancel_method": "0",
"payment_opt": "1",
"is_paid": 1,
"user_rated": 0,
"driver_rated": 0,
"unit": "0",
"zone_type_id": "b0a3a2ce-d248-4767-adea-ae2932731436",
"vehicle_type_name": "Mini",
"pick_lat": 11.0797,
"pick_lng": 76.9997,
"drop_lat": 11.41157598,
"drop_lng": 76.77196096,
"pick_address": "gandhi puram",
"drop_address": "saravanm patti"
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Create Delivery Instant Ride
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/request/create-delivery-instant-ride" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"pick_lat\": 2.99304,
\"pick_lng\": 366766,
\"vehicle_type\": \"autem\",
\"payment_opt\": \"1\",
\"pick_address\": \"quaerat\",
\"drivers\": \"dolorem\",
\"is_later\": \"1\",
\"trip_start_time\": \"2024-11-26 09:37:50\",
\"promocode_id\": \"accusamus\",
\"transport_type\": \"doloribus\",
\"drop_lat\": 378,
\"drop_lng\": 732.5,
\"drop_address\": \"praesentium\",
\"name\": \"nihil\",
\"pickup_poc_mobile\": \"enim\",
\"request_eta_amount\": 282654819.98037827,
\"goods_type_id\": 17,
\"goods_type_quantity\": \"nobis\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/request/create-delivery-instant-ride"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"pick_lat": 2.99304,
"pick_lng": 366766,
"vehicle_type": "autem",
"payment_opt": "1",
"pick_address": "quaerat",
"drivers": "dolorem",
"is_later": "1",
"trip_start_time": "2024-11-26 09:37:50",
"promocode_id": "accusamus",
"transport_type": "doloribus",
"drop_lat": 378,
"drop_lng": 732.5,
"drop_address": "praesentium",
"name": "nihil",
"pickup_poc_mobile": "enim",
"request_eta_amount": 282654819.98037827,
"goods_type_id": 17,
"goods_type_quantity": "nobis"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "created_instant_ride_successfully",
"data": {
"id": "068ecb7a-7198-4322-82b2-28c8e1c90f0a",
"request_number": "REQ_000002",
"is_later": 0,
"user_id": 15,
"trip_start_time": "5th Aug 09:54 PM",
"arrived_at": null,
"accepted_at": null,
"completed_at": "5th Aug 11:49 PM",
"is_driver_started": 0,
"is_driver_arrived": 0,
"is_trip_start": 0,
"is_completed": 1,
"is_cancelled": 0,
"cancel_method": "0",
"payment_opt": "1",
"is_paid": 1,
"user_rated": 0,
"driver_rated": 0,
"unit": "0",
"zone_type_id": "b0a3a2ce-d248-4767-adea-ae2932731436",
"vehicle_type_name": "Mini",
"pick_lat": 11.0797,
"pick_lng": 76.9997,
"drop_lat": 11.41157598,
"drop_lng": 76.77196096,
"pick_address": "gandhi puram",
"drop_address": "saravanm patti"
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Driver Response for Trip Request
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/request/respond" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"request_id\": \"et\",
\"is_accept\": true
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/request/respond"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"request_id": "et",
"is_accept": true
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Driver Arrived
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/request/arrived" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"request_id\": \"cumque\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/request/arrived"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"request_id": "cumque"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "driver_arrived"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Driver Trip started
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/request/started" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"request_id\": \"perferendis\",
\"pick_lat\": 4161.1213727,
\"pick_lng\": 148.8,
\"ride_otp\": \"sapiente\",
\"pick_address\": \"voluptatem\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/request/started"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"request_id": "perferendis",
"pick_lat": 4161.1213727,
"pick_lng": 148.8,
"ride_otp": "sapiente",
"pick_address": "voluptatem"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "driver_trip_started"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Driver Cancel Trip Request
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/request/cancel/by-driver" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"request_id\": \"et\",
\"reason\": \"eum\",
\"custom_reason\": \"delectus\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/request/cancel/by-driver"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"request_id": "et",
"reason": "eum",
"custom_reason": "delectus"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "driver_cancelled_trip"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Driver End Request
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/request/end" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"request_id\": \"voluptate\",
\"distance\": 14645445.072755,
\"before_arrival_waiting_time\": \"consequatur\",
\"after_arrival_waiting_time\": \"sit\",
\"drop_lat\": 59.9297,
\"drop_lng\": 49790,
\"drop_address\": 172.270605,
\"before_trip_start_waiting_time\": 353875.141,
\"after_trip_start_waiting_time\": 1.5917
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/request/end"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"request_id": "voluptate",
"distance": 14645445.072755,
"before_arrival_waiting_time": "consequatur",
"after_arrival_waiting_time": "sit",
"drop_lat": 59.9297,
"drop_lng": 49790,
"drop_address": 172.270605,
"before_trip_start_waiting_time": 353875.141,
"after_trip_start_waiting_time": 1.5917
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "request_ended",
"data": {
"id": "068ecb7a-7198-4322-82b2-28c8e1c90f0a",
"request_number": "REQ_000002",
"is_later": 0,
"user_id": 15,
"trip_start_time": "5th Aug 09:54 PM",
"arrived_at": null,
"accepted_at": null,
"total_distance": 5.65,
"total_time": 47,
"completed_at": "5th Aug 11:35 PM",
"is_driver_started": 0,
"is_driver_arrived": 0,
"is_trip_start": 0,
"is_completed": true,
"is_cancelled": 0,
"cancel_method": "0",
"payment_opt": "1",
"is_paid": true,
"user_rated": 0,
"driver_rated": 0,
"unit": "MILES",
"zone_type_id": "b0a3a2ce-d248-4767-adea-ae2932731436",
"vehicle_type_name": "Mini",
"pick_lat": 11.0797,
"pick_lng": 76.9997,
"drop_lat": "11.411575977701146",
"drop_lng": "76.771960957047312",
"pick_address": "gandhi puram",
"drop_address": "saravanm patti",
"requestBill": {
"data": {
"id": 1,
"base_price": 5,
"base_distance": 5,
"price_per_distance": 5,
"distance_price": 398.44,
"price_per_time": 5,
"time_price": 500,
"waiting_charge": 100,
"cancellation_fee": 0,
"service_tax": 299.53,
"service_tax_percentage": 30,
"promo_discount": 0,
"admin_commission": 299.53,
"driver_commission": 998.45,
"total_amount": 1597.51,
"requested_currency_code": "INR",
"admin_commission_with_tax": 599.07
}
}
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Driver Upload Delivery Proof
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/request/upload-proof" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"request_id\": \"recusandae\",
\"after_load\": true,
\"after_unload\": true,
\"proof_image\": \"autem\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/request/upload-proof"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"request_id": "recusandae",
"after_load": true,
"after_unload": true,
"proof_image": "autem"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "successfully_uploaded_delivery_proof"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Payment Confirmation
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/request/payment-confirm" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/request/payment-confirm"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success",
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Payment Method update
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/request/payment-method" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/request/payment-method"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success",
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Ready to pickup
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/request/ready-to-pickup" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"request_id\": \"rem\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/request/ready-to-pickup"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"request_id": "rem"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success",
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Trip end for stop
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/request/stop-complete" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/request/stop-complete"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success",
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Online-Offline driver
requires authentication
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/driver/online-offline" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/driver/online-offline"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "offline-success",
"data": {
"id": 6,
"name": "dilipdk",
"email": "driver1@gmail.com",
"mobile": "8667259868",
"profile_picture": null,
"active": false,
"approve": true,
"available": false,
"uploaded_document": false,
"service_location_id": "48e861b5-8d4d-4281-807c-1cdd2a5fee3e",
"vehicle_type_id": "9ea6f9a0-6fd2-4962-9d81-645e6301096f",
"vehicle_type_name": "Mini",
"car_make": null,
"car_model": null,
"car_make_name": null,
"car_model_name": null,
"car_color": null,
"car_number": null
}
}
Example response (200):
{
"success": true,
"message": "online-success",
"data": {
"id": 6,
"name": "dilipdk",
"email": "driver1@gmail.com",
"mobile": "8667259868",
"profile_picture": null,
"active": true,
"approve": true,
"available": false,
"uploaded_document": false,
"service_location_id": "48e861b5-8d4d-4281-807c-1cdd2a5fee3e",
"vehicle_type_id": "9ea6f9a0-6fd2-4962-9d81-645e6301096f",
"vehicle_type_name": "Mini",
"car_make": null,
"car_model": null,
"car_make_name": null,
"car_model_name": null,
"car_color": null,
"car_number": null
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Driver Document Management
Get All documents needed to be uploaded
requires authentication
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/driver/documents/needed" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/driver/documents/needed"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"enable_submit_button": false,
"data": [
{
"id": 1,
"name": "License",
"doc_type": "image",
"has_identify_number": true,
"has_expiry_date": true,
"active": 1,
"identify_number_locale_key": "identification number",
"is_uploaded": true,
"document_status": 4,
"document_status_string": "Reuploaded And Waiting For Approval",
"driver_document": {
"data": {
"id": "5b0134b6-e587-4c12-a85c-192f7a4cb319",
"document_id": 1,
"document_name": "License",
"document": "http://localhost/future/public/storage/uploads/driver/documents/6/qicbTf4bO69sFEPSmfy7eJasMHh1WnQIwaGuBRER.jpg",
"identify_number": "14578",
"expiry_date": "2020-08-13",
"comment": null,
"document_status": 4,
"document_status_string": "Reuploaded And Waiting For Approval"
}
}
},
{
"id": 2,
"name": "Rc Book",
"doc_type": "image",
"has_identify_number": false,
"has_expiry_date": true,
"active": 1,
"identify_number_locale_key": null,
"is_uploaded": false,
"document_status": 2,
"document_status_string": "Not Uploaded",
"driver_document": null
}
]
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Upload Driver's Document
requires authentication
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/driver/upload/documents" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"identify_number\": \"explicabo\",
\"document\": \"illum\",
\"document_id\": 15,
\"expiry_date\": \"modi\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/driver/upload/documents"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"identify_number": "explicabo",
"document": "illum",
"document_id": 15,
"expiry_date": "modi"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
List All Bank information
requires authentication
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/driver/list/bankinfo" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/driver/list/bankinfo"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success",
"data": [
{
"id": 1,
"method_name": "upi",
"active": 1,
"fields": {
"data": [
{
"id": 1,
"method_id": 1,
"input_field_name": "upi_number",
"placeholder": "enter Upi Number",
"is_required": 0,
"input_field_type": "text"
}
]
},
"driver_bank_info": {
"data": []
}
},
]
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update Bank Info
requires authentication
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/driver/update/bankinfo" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"method_id\": 20
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/driver/update/bankinfo"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"method_id": 20
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "Driver Bank information updated successfully.",
"data": []
}
Example response (200):
{
"success": true,
"message": "Owner Bank information updated successfully.",
"data": []
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Driver Earnings
Today-Earnings
requires authentication
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/driver/today-earnings" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/driver/today-earnings"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success",
"data": {
"current_date": "5th Oct 2020",
"total_trips_count": 1,
"total_trip_kms": 14,
"total_earnings": 1073.44,
"total_cash_trip_amount": 1073.44,
"total_wallet_trip_amount": 0,
"total_cash_trip_count": 1,
"total_wallet_trip_count": 0,
"currency_symbol": "₹"
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Weekly Earnings
requires authentication
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/driver/weekly-earnings" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/driver/weekly-earnings"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success",
"data": {
"week_days": {
"monday": 1073.44,
"tuesday": 0,
"wednesday": 0,
"thursday": 0,
"friday": 0,
"saturday": 0,
"sunday": 0
},
"current_date": "12th Oct 2020",
"current_week_number": 41,
"start_of_week": "5th Oct 2020",
"end_of_week": "11th Oct 2020",
"disable_next_week": true,
"disable_previous_week": false,
"total_trips_count": 1,
"total_trip_kms": 14,
"total_earnings": 1073.44,
"total_cash_trip_amount": 1073.44,
"total_wallet_trip_amount": 0,
"total_cash_trip_count": 1,
"total_wallet_trip_count": 0,
"currency_symbol": "₹"
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Earnings Report
requires authentication
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/driver/earnings-report/omnis/unde" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/driver/earnings-report/omnis/unde"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success",
"data": {
"from_date": "5th Oct 2020",
"to_date": "11th Oct 2020",
"total_trips_count": 1,
"total_trip_kms": 14,
"total_earnings": 1073.44,
"total_cash_trip_amount": 1073.44,
"total_wallet_trip_amount": 0,
"total_cash_trip_count": 1,
"total_wallet_trip_count": 0,
"currency_symbol": "₹"
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/v1/driver/update-price
requires authentication
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/driver/update-price" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/driver/update-price"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
List New Earnings
requires authentication
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/driver/new-earnings" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/driver/new-earnings"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "earnings_listed_successfully",
"currency_symbol": "₹",
"earnings": [
{
"from_date": "18-Nov-24",
"to_date": "24-Nov-24",
"total_amount": 0,
"total_trips": 0,
"total_wallet_amount": 0,
"total_cash_amount": 0,
"total_logged_in_hours": "0 Mins",
"dates": {
"Mon-18": 0,
"Tue-19": 0,
"Wed-20": 0,
"Thu-21": 0,
"Fri-22": 0,
"Sat-23": 0,
"Sun-24": 0
}
}
]
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Earnings By Date
requires authentication
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/driver/earnings-by-date" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"date\": \"2024-11-26T09:37:51\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/driver/earnings-by-date"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"date": "2024-11-26T09:37:51"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "daily_earnings_listed_successfully",
"total_trips": 0,
"total_trip_kms": 0,
"total_hours_worked": "0 Mins",
"currency_symbol": "₹",
"requests": {
"data": []
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
All-Earnings
requires authentication
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/driver/all-earnings" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/driver/all-earnings"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success",
"data": {
"current_date": "5th Oct 2020",
"total_trips_count": 1,
"total_trip_kms": 14,
"total_earnings": 1073.44,
"total_cash_trip_amount": 1073.44,
"total_wallet_trip_amount": 0,
"total_cash_trip_count": 1,
"total_wallet_trip_count": 0,
"currency_symbol": "₹"
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Driver Leaderboard by Trips
requires authentication
This endpoint retrieves the top drivers ranked by the total number of trips they completed today.
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/driver/leader-board/trips" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"current_lat\": 2124246.9122,
\"current_lng\": 33191
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/driver/leader-board/trips"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"current_lat": 2124246.9122,
"current_lng": 33191
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "Driver trips leaderboard retrieved successfully.",
"data": [
{
"driver_id": 1,
"driver_name": "John Doe",
"total_trips": 15,
"profile_picture": "https://example.com/uploads/drivers/profile1.jpg"
},
{
"driver_id": 2,
"driver_name": "Jane Smith",
"total_trips": 12,
"profile_picture": "https://example.com/uploads/drivers/profile2.jpg"
}
]
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Driver Leaderboard by Earnings
requires authentication
This endpoint retrieves the top drivers based on their earnings for the current day, limited to 20 drivers near the provided latitude and longitude. Drivers are ranked by their total commission earned.
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/driver/leader-board/earnings" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"current_lat\": 3,
\"current_lng\": 2868393.932755
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/driver/leader-board/earnings"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"current_lat": 3,
"current_lng": 2868393.932755
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "Driver earnings leaderboard retrieved successfully.",
"data": [
{
"driver_id": 1,
"driver_name": "John Doe",
"commission": 150.5,
"profile_picture": "https://example.com/uploads/drivers/profile1.jpg"
},
{
"driver_id": 2,
"driver_name": "Jane Smith",
"commission": 120.75,
"profile_picture": "https://example.com/uploads/drivers/profile2.jpg"
}
]
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
List Incentive
requires authentication
This function retrieves the daily incentive history for the authenticated driver over the past 25 days (from the start date to the current date). It aggregates earned incentives and provides details about upcoming incentives, including their ride count requirements and completion status for each day.
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/driver/today-incentives" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/driver/today-incentives"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "incentive_history_listed",
"data": {
"incentive_history": [
{
"month": "Nov",
"date": "09",
"total_incentive_earned": 100,
"earn_upto": 200,
"upcoming_incentives": [
{
"ride_count": 5,
"incentive_amount": 50,
"is_completed": true
},
{
"ride_count": 10,
"incentive_amount": 150,
"is_completed": false
}
]
}
]
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Weekly Incentives
requires authentication
This function calculates and returns the weekly incentive history for the authenticated driver for the past 12 weeks, including the current week. It aggregates earned incentives, tracks the overall total incentives, and provides details about upcoming incentives, their ride count requirements, and completion status for each week.
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/driver/weekly-incentives" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/driver/weekly-incentives"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "incentive_history_listed",
"data": {
"incentive_history": [
{
"month": "Oct",
"date": "1-7",
"total_incentive_earned": 200,
"earn_upto": 500,
"upcoming_incentives": [
{
"ride_count": 10,
"incentive_amount": 100,
"is_completed": true
},
{
"ride_count": 20,
"incentive_amount": 200,
"is_completed": false
}
]
}
]
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
List incentive history.
requires authentication
The function calculates daily incentives earned, upcoming incentives, and total incentives earned for each day and week.
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/driver/new-incentives" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/driver/new-incentives"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "incentive_history_listed",
"data": {
"incentive_history": [
{
"from_date": "10-Nov-24",
"to_date": "16-Nov-24",
"dates": [
{
"day": "Sun",
"date": "10-Nov-24",
"is_today": false,
"total_incentive_earned": 0,
"earn_upto": 1600,
"upcoming_incentives": [
{
"ride_count": 1,
"incentive_amount": 100,
"is_completed": false
},
{
"ride_count": 2,
"incentive_amount": 500,
"is_completed": false
},
{
"ride_count": 3,
"incentive_amount": 1000,
"is_completed": false
}
]
},
]
},
]
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
List weekly incentive history.
requires authentication
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/driver/week-incentives" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/driver/week-incentives"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "incentive_history_listed",
"data": {
"incentive_history": [
{
"from_date": "29-Sep-24",
"to_date": "16-Nov-24",
"dates": [
{
"day": "Sep",
"date": "29-Sep - 05-Oct",
"is_current_week": false,
"total_incentive_earned": 0,
"earn_upto": 150,
"upcoming_incentives": [
{
"ride_count": 2,
"incentive_amount": 100,
"is_completed": false
},
{
"ride_count": 3,
"incentive_amount": 50,
"is_completed": false
}
]
}
]
}
]
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Driver Route Booking
Add My route address
requires authentication
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/driver/add-my-route-address" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"my_route_lat\": 365678004,
\"my_route_lng\": 26.9,
\"my_route_address\": \"totam\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/driver/add-my-route-address"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"my_route_lat": 365678004,
"my_route_lng": 26.9,
"my_route_address": "totam"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "address-updated-successfully",
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Enable My Route Booking
requires authentication
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/driver/enable-my-route-booking" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"is_enable\": \"0\",
\"current_lat\": \"qui\",
\"current_lng\": \"tenetur\",
\"current_address\": \"maiores\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/driver/enable-my-route-booking"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"is_enable": "0",
"current_lat": "qui",
"current_lng": "tenetur",
"current_address": "maiores"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "enabled-my-route-succesfully",
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Endpoints
Privacy Policy
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/privacy-content" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"locale\": \"ja_JP\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/privacy-content"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"locale": "ja_JP"
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
Show headers
cache-control: no-cache, private
content-type: application/json
link: <http://localhost/new_vue_tagxi/public/build/assets/vendor-f749f9ab.css>; rel="preload"; as="style", <http://localhost/new_vue_tagxi/public/build/assets/app-5dc46014.css>; rel="preload"; as="style", <http://localhost/new_vue_tagxi/public/build/assets/404-8c21c3cf.css>; rel="preload"; as="style", <http://localhost/new_vue_tagxi/public/build/assets/app-e076d658.js>; rel="modulepreload", <http://localhost/new_vue_tagxi/public/build/assets/vendor-b6e68d09.js>; rel="modulepreload", <http://localhost/new_vue_tagxi/public/build/assets/404-36789bcd.js>; rel="modulepreload", <http://localhost/new_vue_tagxi/public/build/assets/error-ff2a41aa.js>; rel="modulepreload"
vary: X-Inertia
set-cookie: XSRF-TOKEN=eyJpdiI6IjVVMW1wbmdQNE9CWnhtdGh0ajF4VEE9PSIsInZhbHVlIjoiMytPd3QrRzFXa01QVDdnT3JKZ0Y1ejZ2QTFXY3BwK0pPeDFXYUZNdCsyMXFYNUhsOWkxeDFRQll4aTJYajZobGFhdTJjeTdvUnppY01ScE9CcGtwSU8xMXV0WklaUktEVEQ1eWxwTW1FMUtiQkR5MFlCVm05Z0pXeWZmK2VVQXMiLCJtYWMiOiIxZjNkYWY5NTU1NDlkYmQ0YjMxOTNhMWQxNzJiMTU1NGVlNjdhZTBhN2NiMGYzMzk0OWJkMzEyZjk0YTM1OTExIiwidGFnIjoiIn0%3D; expires=Tue, 26 Nov 2024 11:37:51 GMT; Max-Age=7200; path=/; samesite=lax; vuetaxi_session=eyJpdiI6Imd3N2F5T3M1WllHUzJqdTR0U1V5Rnc9PSIsInZhbHVlIjoieUcyYjc2V3p4MVZzd2d0YVpWNXVPU2RRT2FZTFRuREh2UmFOSW5Ha2luZzd3MEJhWjM0WnIxNURPa0hrOWdkMGt4QmNyU21FQUc3RFZDVDZiVTZ0aUEzSVp1S2x4a3ZkRHJqNGJLVnNMbGVyVmJNVVhwMS9OaFRJWTJFVWJnYzgiLCJtYWMiOiJjNWZkNTg1ZmU0YzM4ZDJmYjBiNDE4ZWI4YTlhOWE5MGIxMjExODdhMGQzZGNlMDE5MmFiZDg4NDg0N2Y3MGNjIiwidGFnIjoiIn0%3D; expires=Tue, 26 Nov 2024 11:37:51 GMT; Max-Age=7200; path=/; httponly; samesite=lax
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title inertia>Misoftwares</title>
<meta name="description"
content="Taxi App - Fast, Safe, and Convenient Rides at Your Fingertips">
<meta name="keywords"
content="Taxi booking app admin panel,Taxi fleet management software,Taxi service admin panel features,Real-time taxi management dashboard">
<meta name="author" content="Misoftwares">
<!-- Social Media Meta Tags -->
<meta property="og:title" content="Misoftwares - Inertia + Vue & Laravel Admin & Dashboard Template">
<meta property="og:description"
content="Simplify web application development with Misoftwares, a feature-rich taxi app admin and dashboard template built with Inertia.js, Vue.js, and Laravel.">
<meta property="og:image" content="URL to the template's logo or featured image">
<meta property="og:url" content="URL to the template's webpage">
<meta name="twitter:card" content="summary_large_image">
<!-- App favicon -->
<!-- <link rel="shortcut icon" href="http://localhost/new_vue_tagxi/public/image/favicon.ico"> -->
<link rel="shortcut icon" id="dynamic-favicon" href="">
<!-- Firebase SDK -->
<!-- Use the Firebase 8.x version for CommonJS support -->
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-database.js"></script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/select2@4.1.0-beta.1/dist/css/select2.min.css" rel="stylesheet" />
<script src="https://cdn.jsdelivr.net/npm/select2@4.1.0-beta.1/dist/js/select2.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/driver.js@1.0.1/dist/driver.js.iife.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/driver.js@1.0.1/dist/driver.css"/>
<!-- Scripts -->
<script type="text/javascript">
(function () {
const routes = {"admin-login":{"uri":"login","methods":["POST"]},"logout":{"uri":"logout","methods":["POST"]},"password.request":{"uri":"forgot-password","methods":["GET","HEAD"]},"password.reset":{"uri":"reset-password\/{token}","methods":["GET","HEAD"],"parameters":["token"]},"password.email":{"uri":"forgot-password","methods":["POST"]},"password.update":{"uri":"reset-password","methods":["POST"]},"register":{"uri":"register","methods":["GET","HEAD"]},"verification.notice":{"uri":"email\/verify","methods":["GET","HEAD"]},"verification.verify":{"uri":"email\/verify\/{id}\/{hash}","methods":["GET","HEAD"],"parameters":["id","hash"]},"verification.send":{"uri":"email\/verification-notification","methods":["POST"]},"user-profile-information.update":{"uri":"user\/profile-information","methods":["PUT"]},"user-password.update":{"uri":"user\/password","methods":["PUT"]},"password.confirmation":{"uri":"user\/confirmed-password-status","methods":["GET","HEAD"]},"password.confirm":{"uri":"user\/confirm-password","methods":["POST"]},"two-factor.login":{"uri":"two-factor-challenge","methods":["GET","HEAD"]},"two-factor.enable":{"uri":"user\/two-factor-authentication","methods":["POST"]},"two-factor.confirm":{"uri":"user\/confirmed-two-factor-authentication","methods":["POST"]},"two-factor.disable":{"uri":"user\/two-factor-authentication","methods":["DELETE"]},"two-factor.qr-code":{"uri":"user\/two-factor-qr-code","methods":["GET","HEAD"]},"two-factor.secret-key":{"uri":"user\/two-factor-secret-key","methods":["GET","HEAD"]},"two-factor.recovery-codes":{"uri":"user\/two-factor-recovery-codes","methods":["GET","HEAD"]},"terms.show":{"uri":"terms-of-service","methods":["GET","HEAD"]},"policy.show":{"uri":"privacy-policy","methods":["GET","HEAD"]},"profile.show":{"uri":"user\/profile","methods":["GET","HEAD"]},"other-browser-sessions.destroy":{"uri":"user\/other-browser-sessions","methods":["DELETE"]},"current-user-photo.destroy":{"uri":"user\/profile-photo","methods":["DELETE"]},"current-user.destroy":{"uri":"user","methods":["DELETE"]},"api-tokens.index":{"uri":"user\/api-tokens","methods":["GET","HEAD"]},"api-tokens.store":{"uri":"user\/api-tokens","methods":["POST"]},"api-tokens.update":{"uri":"user\/api-tokens\/{token}","methods":["PUT"],"parameters":["token"]},"api-tokens.destroy":{"uri":"user\/api-tokens\/{token}","methods":["DELETE"],"parameters":["token"]},"sanctum.csrf-cookie":{"uri":"sanctum\/csrf-cookie","methods":["GET","HEAD"]},"ignition.healthCheck":{"uri":"_ignition\/health-check","methods":["GET","HEAD"]},"ignition.executeSolution":{"uri":"_ignition\/execute-solution","methods":["POST"]},"ignition.updateConfig":{"uri":"_ignition\/update-config","methods":["POST"]},"privacy-content":{"uri":"api\/privacy-content","methods":["GET","HEAD"]},"terms-content":{"uri":"api\/terms-content","methods":["GET","HEAD"]},"compliance-content":{"uri":"api\/compliance-content","methods":["GET","HEAD"]},"dmv-content":{"uri":"api\/dmv-content","methods":["GET","HEAD"]},"view-countries":{"uri":"countries","methods":["GET","HEAD"]},"list-countries":{"uri":"countries-list","methods":["GET","HEAD"]},"languages.index":{"uri":"languages","methods":["GET","HEAD"]},"languages.create":{"uri":"languages\/create","methods":["GET","HEAD"]},"languages.list":{"uri":"languages\/list","methods":["GET","HEAD"]},"languages.browse":{"uri":"languages\/browse\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"languages.store":{"uri":"languages\/store","methods":["POST"]},"language.update":{"uri":"languages\/update\/{language}","methods":["PUT"],"parameters":["language"]},"current-languages":{"uri":"current-languages","methods":["GET","HEAD"]},"current-locations":{"uri":"current-locations","methods":["GET","HEAD"]},"current-notifications":{"uri":"current-notifications","methods":["GET","HEAD"]},"read-notifications":{"uri":"mark-notification-as-read","methods":["POST"]},"spa-user-login":{"uri":"user\/login","methods":["POST"]},"spa-owner-login":{"uri":"owner-login","methods":["POST"]},"owner-login":{"uri":"owner-login","methods":["GET","HEAD"]},"user-register":{"uri":"user\/register","methods":["POST"]},"dashboard":{"uri":"dashboard","methods":["GET","HEAD"]},"owner.dashboard":{"uri":"owner-dashboard","methods":["GET","HEAD"]},"dashboard-todayEarnings":{"uri":"dashboard\/today-earnings","methods":["GET","HEAD"]},"dashboard-overallEarnings":{"uri":"dashboard\/overall-earnings","methods":["GET","HEAD"]},"dashboard-cancelChart":{"uri":"dashboard\/cancel-chart","methods":["GET","HEAD"]},"serviceLocation.dashboard":{"uri":"dashboard\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"owner.IndividualDashboard":{"uri":"individual-owner-dashboard","methods":["GET","HEAD"]},"servicelocation.index":{"uri":"service-locations","methods":["GET","HEAD"]},"fleet-login":{"uri":"owner\/login","methods":["POST"]},"roles.index":{"uri":"roles","methods":["GET","HEAD"]},"roles.list":{"uri":"roles\/list","methods":["GET","HEAD"]},"roles.store":{"uri":"roles","methods":["POST"]},"roles.update":{"uri":"roles\/{role}","methods":["PUT"],"parameters":["role"],"bindings":{"role":"id"}},"permission.index":{"uri":"permissions\/{permission}","methods":["GET","HEAD"],"parameters":["permission"]},"permission.store":{"uri":"permissions\/{role}","methods":["POST"],"parameters":["role"]},"roles1.index":{"uri":"roles1","methods":["GET","HEAD"]},"roles1.list":{"uri":"roles1\/list","methods":["GET","HEAD"]},"roles1.store":{"uri":"roles1","methods":["POST"]},"roles1.update":{"uri":"roles1\/update\/{role}","methods":["PUT"],"parameters":["role"],"bindings":{"role":"id"}},"role1.import":{"uri":"roles1\/import-csv","methods":["POST"]},"service-location-list":{"uri":"service-locations\/list","methods":["GET","HEAD"]},"servicelocation.create":{"uri":"service-locations\/create","methods":["GET","HEAD"]},"servicelocation.edit":{"uri":"service-locations\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"servicelocation.store":{"uri":"service-locations\/store","methods":["POST"]},"servicelocation.update":{"uri":"service-locations\/update\/{location}","methods":["POST"],"parameters":["location"],"bindings":{"location":"id"}},"servicelocation.toggle":{"uri":"service-locations\/toggle\/{location}","methods":["POST"],"parameters":["location"],"bindings":{"location":"id"}},"servicelocation.delete":{"uri":"service-locations\/delete\/{location}","methods":["DELETE"],"parameters":["location"],"bindings":{"location":"id"}},"rentalpackagetype.index":{"uri":"rental-package-types","methods":["GET","HEAD"]},"rentalpackagetype.create":{"uri":"rental-package-types\/create","methods":["GET","HEAD"]},"rentalpackagetype.store":{"uri":"rental-package-types\/store","methods":["POST"]},"rentalpackagetype.list":{"uri":"rental-package-types\/list","methods":["GET","HEAD"]},"rentalpackagetype.edit":{"uri":"rental-package-types\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"rentalpackagetype.update":{"uri":"rental-package-types\/update\/{packageType}","methods":["POST"],"parameters":["packageType"],"bindings":{"packageType":"id"}},"rentalpackagetype.updateStatus":{"uri":"rental-package-types\/update-status","methods":["POST"]},"rentalpackagetype.delete":{"uri":"rental-package-types\/delete\/{packageType}","methods":["DELETE"],"parameters":["packageType"],"bindings":{"packageType":"id"}},"category.index":{"uri":"category","methods":["GET","HEAD"]},"category.create":{"uri":"category\/create","methods":["GET","HEAD"]},"category.store":{"uri":"category\/store","methods":["POST"]},"category.list":{"uri":"category\/list","methods":["GET","HEAD"]},"category.edit":{"uri":"category\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"category.update":{"uri":"category\/update\/{category}","methods":["POST"],"parameters":["category"]},"category.updateStatus":{"uri":"category\/update-status","methods":["POST"]},"category.delete":{"uri":"category\/delete\/{category}","methods":["DELETE"],"parameters":["category"]},"setprice.index":{"uri":"set-prices","methods":["GET","HEAD"]},"setprice.create":{"uri":"set-prices\/create","methods":["GET","HEAD"]},"setprice.vehiclelist":{"uri":"set-prices\/vehicle_types","methods":["GET","HEAD"]},"setprice.store":{"uri":"set-prices\/store","methods":["POST"]},"setprice.list":{"uri":"set-prices\/list","methods":["GET","HEAD"]},"setprice.edit":{"uri":"set-prices\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"setprice.update":{"uri":"set-prices\/update\/{zoneTypePrice}","methods":["POST"],"parameters":["zoneTypePrice"],"bindings":{"zoneTypePrice":"id"}},"setprice.delete":{"uri":"set-prices\/delete\/{id}","methods":["DELETE"],"parameters":["id"]},"setprice.updateStatus":{"uri":"set-prices\/update-status","methods":["POST"]},"setprice.packageIndex":{"uri":"set-prices\/packages\/{zoneType}","methods":["GET","HEAD"],"parameters":["zoneType"],"bindings":{"zoneType":"id"}},"setprice.packageList":{"uri":"set-prices\/packages\/list\/{zoneTypePrice}","methods":["GET","HEAD"],"parameters":["zoneTypePrice"],"bindings":{"zoneTypePrice":"id"}},"setprice.package-create":{"uri":"set-prices\/packages\/create\/{zoneTypePrice}","methods":["GET","HEAD"],"parameters":["zoneTypePrice"],"bindings":{"zoneTypePrice":"id"}},"setprice.packageStore":{"uri":"set-prices\/packages\/store","methods":["POST"]},"setprice.package-edit":{"uri":"set-prices\/packages\/edit\/{zoneTypePackage}","methods":["GET","HEAD"],"parameters":["zoneTypePackage"],"bindings":{"zoneTypePackage":"id"}},"setprice.package-update":{"uri":"set-prices\/packages\/update\/{zoneTypePackage}","methods":["POST"],"parameters":["zoneTypePackage"],"bindings":{"zoneTypePackage":"id"}},"setprice.package-delete":{"uri":"set-prices\/packages\/delete\/{zoneTypePackage}","methods":["DELETE"],"parameters":["zoneTypePackage"],"bindings":{"zoneTypePackage":"id"}},"setprice.updatePackageStatus":{"uri":"set-prices\/packages\/update-status","methods":["POST"]},"vehicletype.index":{"uri":"vehicle_type","methods":["GET","HEAD"]},"vehicletype.create":{"uri":"vehicle_type\/create","methods":["GET","HEAD"]},"vehicletype.store":{"uri":"vehicle_type\/store","methods":["POST"]},"vehicletype.list":{"uri":"vehicle_type\/list","methods":["GET","HEAD"]},"vehicletype.edit":{"uri":"vehicle_type\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"vehicletype.update":{"uri":"vehicle_type\/update\/{vehicle_type}","methods":["POST"],"parameters":["vehicle_type"],"bindings":{"vehicle_type":"id"}},"vehicletype.delete":{"uri":"vehicle_type\/delete\/{vehicle_type}","methods":["DELETE"],"parameters":["vehicle_type"],"bindings":{"vehicle_type":"id"}},"vehicletype.updateStatus":{"uri":"vehicle_type\/update-status","methods":["POST"]},"vehicletype.getCategory":{"uri":"vehicle_type\/getCategory","methods":["GET","HEAD"]},"vehiclemodel.index":{"uri":"vehicle-model","methods":["GET","HEAD"]},"vehiclemodel.create":{"uri":"vehicle-model\/create","methods":["GET","HEAD"]},"vehiclemodel.update":{"uri":"vehicle-model\/update","methods":["GET","HEAD"]},"vehiclemodel.test":{"uri":"vehicle-model\/test-url","methods":["GET","HEAD"]},"sos.index":{"uri":"sos","methods":["GET","HEAD"]},"sos.list":{"uri":"sos\/list","methods":["GET","HEAD"]},"sos.create":{"uri":"sos\/create","methods":["GET","HEAD"]},"sos.store":{"uri":"sos\/store","methods":["POST"]},"sos.edit":{"uri":"sos\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"sos.update":{"uri":"sos\/update\/{sos}","methods":["POST"],"parameters":["sos"],"bindings":{"sos":"id"}},"sos.updateStatus":{"uri":"sos\/update-status","methods":["POST"]},"sos.delete":{"uri":"sos\/delete\/{sos}","methods":["DELETE"],"parameters":["sos"],"bindings":{"sos":"id"}},"bank.index":{"uri":"driver-bank-info","methods":["GET","HEAD"]},"bank.list":{"uri":"driver-bank-info\/list","methods":["GET","HEAD"]},"bank.create":{"uri":"driver-bank-info\/create","methods":["GET","HEAD"]},"bank.store":{"uri":"driver-bank-info\/store","methods":["POST"]},"bank.edit":{"uri":"driver-bank-info\/edit\/{method}","methods":["GET","HEAD"],"parameters":["method"]},"bank.update":{"uri":"driver-bank-info\/update\/{method}","methods":["POST"],"parameters":["method"],"bindings":{"method":"id"}},"bank.updateStatus":{"uri":"driver-bank-info\/update-status","methods":["POST"]},"bank.delete":{"uri":"driver-bank-info\/delete\/{method}","methods":["DELETE"],"parameters":["method"],"bindings":{"method":"id"}},"promocode.index":{"uri":"promo-code","methods":["GET","HEAD"]},"promocode.list":{"uri":"promo-code\/list","methods":["GET","HEAD"]},"promocode.userList":{"uri":"promo-code\/userList","methods":["GET","HEAD"]},"promocode.create":{"uri":"promo-code\/create","methods":["GET","HEAD"]},"promocode.store":{"uri":"promo-code\/store","methods":["POST"]},"promocode.edit":{"uri":"promo-code\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"promocode.fetchServiceLocation":{"uri":"promo-code\/fetch","methods":["GET","HEAD"]},"promocode.update":{"uri":"promo-code\/update\/{promo}","methods":["POST"],"parameters":["promo"]},"promocode.delete":{"uri":"promo-code\/delete\/{promo}","methods":["DELETE"],"parameters":["promo"],"bindings":{"promo":"id"}},"promocode.updateStatus":{"uri":"promo-code\/update-status","methods":["POST"]},"pushnotification.index":{"uri":"push-notifications","methods":["GET","HEAD"]},"pushnotification.create":{"uri":"push-notifications\/create","methods":["GET","HEAD"]},"pushnotification.list":{"uri":"push-notifications\/list","methods":["GET","HEAD"]},"pushnotification.edit":{"uri":"push-notifications\/edit\/{notification}","methods":["GET","HEAD"],"parameters":["notification"],"bindings":{"notification":"id"}},"pushnotification.delete":{"uri":"push-notifications\/delete\/{notification}","methods":["DELETE"],"parameters":["notification"],"bindings":{"notification":"id"}},"pushnotification.send-push":{"uri":"push-notifications\/send-push","methods":["POST"]},"pushnotification.update":{"uri":"push-notifications\/update","methods":["POST"]},"cancellation.index":{"uri":"cancellation","methods":["GET","HEAD"]},"cancellation.list":{"uri":"cancellation\/list","methods":["GET","HEAD"]},"cancellation.create":{"uri":"cancellation\/create","methods":["GET","HEAD"]},"cancellation.store":{"uri":"cancellation\/store","methods":["POST"]},"cancellation.edit":{"uri":"cancellation\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"cancellation.update":{"uri":"cancellation\/update\/{cancellationReason}","methods":["POST"],"parameters":["cancellationReason"],"bindings":{"cancellationReason":"id"}},"cancellation.updateStatus":{"uri":"cancellation\/update-status","methods":["POST"]},"cancellation.delete":{"uri":"cancellation\/delete\/{cancellationReason}","methods":["DELETE"],"parameters":["cancellationReason"],"bindings":{"cancellationReason":"id"}},"faq.index":{"uri":"faq","methods":["GET","HEAD"]},"faq.list":{"uri":"faq\/list","methods":["GET","HEAD"]},"faq.create":{"uri":"faq\/create","methods":["GET","HEAD"]},"faq.store":{"uri":"faq\/store","methods":["POST"]},"faq.edit":{"uri":"faq\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"faq.update":{"uri":"faq\/update\/{faq}","methods":["POST"],"parameters":["faq"],"bindings":{"faq":"id"}},"faq.updateStatus":{"uri":"faq\/update-status","methods":["POST"]},"faq.delete":{"uri":"faq\/delete\/{faq}","methods":["DELETE"],"parameters":["faq"],"bindings":{"faq":"id"}},"complainttitle.index":{"uri":"complaint-title","methods":["GET","HEAD"]},"complainttitle.create":{"uri":"complaint-title\/create","methods":["GET","HEAD"]},"complainttitle.list":{"uri":"complaint-title\/list","methods":["GET","HEAD"]},"complainttitle.store":{"uri":"complaint-title\/store","methods":["POST"]},"complainttitle.edit":{"uri":"complaint-title\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"complainttitle.update":{"uri":"complaint-title\/update\/{complaintTitle}","methods":["POST"],"parameters":["complaintTitle"],"bindings":{"complaintTitle":"id"}},"complainttitle.updateStatus":{"uri":"complaint-title\/update-status","methods":["POST"]},"complainttitle.delete":{"uri":"complaint-title\/delete\/{complaintTitle}","methods":["DELETE"],"parameters":["complaintTitle"],"bindings":{"complaintTitle":"id"}},"drivergeneralcomplaint.driverGeneralComplaint":{"uri":"driver-complaint\/general-complaint","methods":["GET","HEAD"]},"driverGeneralComplaint.listComplaint":{"uri":"driver-complaint\/list","methods":["GET","HEAD"]},"driverGeneralComplaint.taken":{"uri":"driver-complaint\/taken\/{complaint}","methods":["GET","HEAD"],"parameters":["complaint"],"bindings":{"complaint":"id"}},"driverrequestcomplaint.driverRequestComplaint":{"uri":"driver-complaint\/request-complaint","methods":["GET","HEAD"]},"driverrequestcomplaint.requestListComplaint":{"uri":"driver-complaint\/driver-request-list","methods":["GET","HEAD"]},"usergeneralcomplaint.userGeneralComplaint":{"uri":"user-complaint\/general-complaint","methods":["GET","HEAD"]},"usergeneralcomplaint.listComplaint":{"uri":"user-complaint\/list","methods":["GET","HEAD"]},"usergeneralcomplaint.taken":{"uri":"user-complaint\/taken\/{complaint}","methods":["GET","HEAD"],"parameters":["complaint"],"bindings":{"complaint":"id"}},"userrequestcomplaint.userRequestComplaint":{"uri":"user-complaint\/request-complaint","methods":["GET","HEAD"]},"usergeneralcomplaint.requestComplaint":{"uri":"user-complaint\/request-list","methods":["GET","HEAD"]},"ownergeneralcomplaint.ownerGeneralComplaint":{"uri":"owner-complaint\/general-complaint","methods":["GET","HEAD"]},"ownergeneralcomplaint.listComplaint":{"uri":"owner-complaint\/list","methods":["GET","HEAD"]},"ownergeneralcomplaint.taken":{"uri":"owner-complaint\/taken\/{complaint}","methods":["GET","HEAD"],"parameters":["complaint"],"bindings":{"complaint":"id"}},"ownerrequestcomplaint.ownerRequestComplaint":{"uri":"owner-complaint\/request-complaint","methods":["GET","HEAD"]},"ownerrequestcomplaint.requestComplaint":{"uri":"owner-complaint\/request-list","methods":["GET","HEAD"]},"dispatch.index":{"uri":"dispatch","methods":["GET","HEAD"]},"dispatch.userRequestComplaint":{"uri":"dispatch\/request-complaint","methods":["GET","HEAD"]},"paymentgateway.index":{"uri":"payment-gateway","methods":["GET","HEAD"]},"paymentgateway.update":{"uri":"payment-gateway\/update","methods":["POST"]},"paymentgateway.updateStatus":{"uri":"payment-gateway\/update-statuss","methods":["POST"]},"smsgateway.index":{"uri":"sms-gateway","methods":["GET","HEAD"]},"firebase.index":{"uri":"firebase","methods":["GET","HEAD"]},"firebase.get":{"uri":"firebase\/get","methods":["GET","HEAD"]},"map.settings":{"uri":" map-settings","methods":["GET","HEAD"]},"mailconfiguration.index":{"uri":"mail-configuration","methods":["GET","HEAD"]},"mapapis.index":{"uri":"map-apis","methods":["GET","HEAD"]},"recaptcha.index":{"uri":"recaptcha","methods":["GET","HEAD"]},"mail-template.index":{"uri":"mail-template","methods":["GET","HEAD"]},"mail-template.create":{"uri":"mail-template\/create","methods":["GET","HEAD"]},"mail-template.list":{"uri":"mail-template\/list","methods":["GET","HEAD"]},"mail-template.store":{"uri":"mail-template\/store","methods":["POST"]},"mail-template.edit":{"uri":"mail-template\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"mail-template.update":{"uri":"mail-template\/update\/{emails}","methods":["POST"],"parameters":["emails"],"bindings":{"emails":"id"}},"mail-template.destroy":{"uri":"mail-template\/delete\/{emails}","methods":["DELETE"],"parameters":["emails"],"bindings":{"emails":"id"}},"map.heatmap":{"uri":"map\/heat_map","methods":["GET","HEAD"]},"map.godseye":{"uri":"map\/gods_eye","methods":["GET","HEAD"]},"map.openGodseye":{"uri":"map\/open_gods_eye","methods":["GET","HEAD"]},"approveddriver.Index":{"uri":"approved-drivers","methods":["GET","HEAD"]},"approveddriver.create":{"uri":"approved-drivers\/create","methods":["GET","HEAD"]},"approveddriver.store":{"uri":"approved-drivers\/store","methods":["POST"]},"approveddriver.edit":{"uri":"approved-drivers\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"approveddriver.update":{"uri":"approved-drivers\/update\/{driver}","methods":["POST"],"parameters":["driver"],"bindings":{"driver":"id"}},"approveddriver.disapprove":{"uri":"approved-drivers\/disapprove\/{driver}","methods":["POST"],"parameters":["driver"],"bindings":{"driver":"id"}},"approveddriver.viewProfile":{"uri":"approved-drivers\/view-profile\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"approveddriver.uploadDocument":{"uri":"approved-drivers\/document-upolad","methods":["GET","HEAD"]},"approveddriver.checkMobileExists":{"uri":"approved-drivers\/check-mobile\/{mobile}\/{driverId}","methods":["GET","HEAD"],"parameters":["mobile","driverId"]},"approveddriver.checkEmailExists":{"uri":"approved-drivers\/check-email\/{email}\/{driverId}","methods":["GET","HEAD"],"parameters":["email","driverId"]},"approveddriver.list":{"uri":"approved-drivers\/list","methods":["GET","HEAD"]},"approveddriver.ViewDocument":{"uri":"approved-drivers\/document\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"approveddriver.listDocument":{"uri":"approved-drivers\/document\/list\/{driverId}","methods":["GET","HEAD"],"parameters":["driverId"]},"approveddriver.documentUpload":{"uri":"approved-drivers\/document-upload\/{document}\/{driverId}","methods":["GET","HEAD"],"parameters":["document","driverId"],"bindings":{"document":"id","driverId":"id"}},"approveddriver.documentUploadStore":{"uri":"approved-drivers\/document-upload\/{document}\/{driverId}","methods":["POST"],"parameters":["document","driverId"],"bindings":{"document":"id","driverId":"id"}},"approveddriver.approveDriverDocument":{"uri":"approved-drivers\/document-toggle\/{documentId}\/{driverId}\/{status}","methods":["GET","HEAD"],"parameters":["documentId","driverId","status"]},"approveddriver.addAmount":{"uri":"approved-drivers\/wallet-add-amount\/{driver}","methods":["POST"],"parameters":["driver"],"bindings":{"driver":"id"}},"approveddriver.walletHistoryList":{"uri":"approved-drivers\/wallet-history\/list\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"approveddrivers.requestList":{"uri":"approved-drivers\/request\/list\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"pendingdriver.indexIndex":{"uri":"pending-drivers","methods":["GET","HEAD"]},"driverlevelup.index":{"uri":"drivers-levelup","methods":["GET","HEAD"]},"driverlevelup.list":{"uri":"drivers-levelup\/list","methods":["GET","HEAD"]},"approveddriver.driverLeveStore":{"uri":"drivers-levelup\/store","methods":["POST"]},"driverlevelup.edit":{"uri":"drivers-levelup\/edit\/{level}","methods":["GET","HEAD"],"parameters":["level"],"bindings":{"level":"id"}},"driverlevelup.settingsUpdate":{"uri":"drivers-levelup\/settingsUpdate","methods":["POST"]},"approveddriver.driverLevelUpdate":{"uri":"drivers-levelup\/update\/{level}","methods":["POST"],"parameters":["level"],"bindings":{"level":"id"}},"approveddriver.driverLevelDelete":{"uri":"drivers-levelup\/delete\/{level}","methods":["DELETE"],"parameters":["level"],"bindings":{"level":"id"}},"driverlevelup.create":{"uri":"drivers-levelup\/create","methods":["GET","HEAD"]},"driversrating.driverRatingIndex":{"uri":"drivers-rating","methods":["GET","HEAD"]},"driversrating.list":{"uri":"drivers-rating\/list","methods":["GET","HEAD"]},"driversrating.viewDriverRating":{"uri":"drivers-rating\/view-profile\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"driversRequestRating.history":{"uri":"drivers-rating\/request-list\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"deleterequestdrivers.index":{"uri":"delete-request-drivers","methods":["GET","HEAD"]},"deleterequestdrivers.list":{"uri":"delete-request-drivers\/list","methods":["GET","HEAD"]},"deleterequestdrivers.destroyDriver":{"uri":"delete-request-drivers\/delete\/{driver}","methods":["DELETE"],"parameters":["driver"],"bindings":{"driver":"id"}},"driverneededdocuments.Index":{"uri":"driver-needed-documents","methods":["GET","HEAD"]},"driverneededdocuments.list":{"uri":"driver-needed-documents\/list","methods":["GET","HEAD"]},"driverneededdocuments.Create":{"uri":"driver-needed-documents\/create","methods":["GET","HEAD"]},"driverneededdocuments.store":{"uri":"driver-needed-documents\/store","methods":["POST"]},"driverneededdocuments.Update":{"uri":"driver-needed-documents\/update\/{driverNeededDocument}","methods":["POST"],"parameters":["driverNeededDocument"],"bindings":{"driverNeededDocument":"id"}},"driverneededdocuments.edit":{"uri":"driver-needed-documents\/edit\/{driverNeededDocument}","methods":["GET","HEAD"],"parameters":["driverNeededDocument"],"bindings":{"driverNeededDocument":"id"}},"driverneededdocuments.updateDocumentStatus":{"uri":"driver-needed-documents\/update-status","methods":["POST"]},"driverneededdocuments.destroyDriverDocument":{"uri":"driver-needed-documents\/delete\/{driverNeededDocument}","methods":["DELETE"],"parameters":["driverNeededDocument"],"bindings":{"driverNeededDocument":"id"}},"withdrawalrequestdrivers.index":{"uri":"withdrawal-request-drivers","methods":["GET","HEAD"]},"withdrawalrequestdrivers.list":{"uri":"withdrawal-request-drivers\/list","methods":["GET","HEAD"]},"withdrawalrequestdrivers.ViewDetails":{"uri":"withdrawal-request-drivers\/view-in-detail\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"withdrawalrequestAmount.list":{"uri":"withdrawal-request-drivers\/amounts\/{driver_id}","methods":["GET","HEAD"],"parameters":["driver_id"],"bindings":{"driver_id":"id"}},"withdrawalrequest.updateStatus":{"uri":"withdrawal-request-drivers\/update-status","methods":["POST"]},"negativebalancedrivers.index":{"uri":"negative-balance-drivers","methods":["GET","HEAD"]},"negativebalancedrivers.list":{"uri":"negative-balance-drivers\/list","methods":["GET","HEAD"]},"negativebalancedrivers.payment":{"uri":"negative-balance-drivers\/view-profile\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"admins.index":{"uri":"admins","methods":["GET","HEAD"]},"admins.list":{"uri":"admins\/list","methods":["GET","HEAD"]},"admins.create":{"uri":"admins\/create","methods":["GET","HEAD"]},"admins.store":{"uri":"admins\/store","methods":["POST"]},"admins.update":{"uri":"admins\/update\/{adminDetail}","methods":["POST"],"parameters":["adminDetail"],"bindings":{"adminDetail":"id"}},"admins.edit":{"uri":"admins\/edit\/{adminDetail}","methods":["GET","HEAD"],"parameters":["adminDetail"],"bindings":{"adminDetail":"id"}},"admin.destroy":{"uri":"admins\/delete\/{adminDetail}","methods":["DELETE"],"parameters":["adminDetail"],"bindings":{"adminDetail":"id"}},"admin.updateDocumentStatus":{"uri":"admins\/update-status","methods":["POST"]},"report.userReport":{"uri":"report\/user-report","methods":["GET","HEAD"]},"report.userReportDownload":{"uri":"report\/user-report-download","methods":["POST"]},"report.driverReport":{"uri":"report\/driver-report","methods":["GET","HEAD"]},"report.driverReportDownload":{"uri":"report\/driver-report-download","methods":["POST"]},"report.getVehicletypes":{"uri":"report\/getVehicleTypes","methods":["GET","HEAD"]},"report.ownerReport":{"uri":"report\/owner-report","methods":["GET","HEAD"]},"report.ownerReportDownload":{"uri":"report\/owner-report-download","methods":["POST"]},"report.financeReport":{"uri":"report\/finance-report","methods":["GET","HEAD"]},"report.financeReportDownload":{"uri":"report\/finance-report-download","methods":["POST"]},"report.fleetReport":{"uri":"report\/fleet-report","methods":["GET","HEAD"]},"report.listFleet":{"uri":"report\/list-fleets","methods":["GET","HEAD"]},"report.fleetReportDownload":{"uri":"report\/fleet-report-download","methods":["POST"]},"report.driverDutyReport":{"uri":"report\/driver-duty-report","methods":["GET","HEAD"]},"report.driverDutyReportDownload":{"uri":"report\/driver-duty-report-download","methods":["POST"]},"report.getDrivers":{"uri":"report\/getDrivers","methods":["GET","HEAD"]},"manageowners.index":{"uri":"manage-owners","methods":["GET","HEAD"]},"manageowners.Create":{"uri":"manage-owners\/create","methods":["GET","HEAD"]},"manageowners.list":{"uri":"manage-owners\/list","methods":["GET","HEAD"]},"manageowners.store":{"uri":"manage-owners\/store","methods":["POST"]},"manageowners.edit":{"uri":"manage-owners\/edit\/{owner}","methods":["GET","HEAD"],"parameters":["owner"],"bindings":{"owner":"id"}},"manageowners.update":{"uri":"manage-owners\/update\/{owner}","methods":["POST"],"parameters":["owner"],"bindings":{"owner":"id"}},"manageowners.approve":{"uri":"manage-owners\/approve\/{owner}","methods":["POST"],"parameters":["owner"]},"manageowners.delete":{"uri":"manage-owners\/delete\/{owner}","methods":["DELETE"],"parameters":["owner"],"bindings":{"owner":"id"}},"manageowners.document":{"uri":"manage-owners\/document\/{owner}","methods":["GET","HEAD"],"parameters":["owner"],"bindings":{"owner":"id"}},"manageowners.checkEmailExists":{"uri":"manage-owners\/check-email","methods":["POST"]},"manageowners.checkMobileExists":{"uri":"manage-owners\/check-mobile","methods":["POST"]},"manageowners.listDocument":{"uri":"manage-owners\/document\/list\/{owner}","methods":["GET","HEAD"],"parameters":["owner"]},"manageowners.documentUpload":{"uri":"manage-owners\/document-upload\/{document}\/{ownerId}","methods":["GET","HEAD"],"parameters":["document","ownerId"],"bindings":{"document":"id","ownerId":"id"}},"manageowners.documentUploadStore":{"uri":"manage-owners\/document-upload\/{document}\/{ownerId}","methods":["POST"],"parameters":["document","ownerId"],"bindings":{"document":"id","ownerId":"id"}},"manageowners.approveOwnerDocument":{"uri":"manage-owners\/document-toggle\/{documentId}\/{ownerId}\/{status}","methods":["GET","HEAD"],"parameters":["documentId","ownerId","status"]},"manageowners.ownerPaymentHistory":{"uri":"manage-owners\/owner-payment-history\/{owner}","methods":["GET","HEAD"],"parameters":["owner"]},"withdrawalrequestOwners.index":{"uri":"withdrawal-request-owners","methods":["GET","HEAD"]},"withdrawalrequestOwners.list":{"uri":"withdrawal-request-owners\/list","methods":["GET","HEAD"]},"withdrawalrequestOwners.ViewDetails":{"uri":"withdrawal-request-owners\/view-in-detail\/{owner}","methods":["GET","HEAD"],"parameters":["owner"],"bindings":{"owner":"id"}},"withdrawalrequestOwner.list":{"uri":"withdrawal-request-owners\/amounts\/{owner_id}","methods":["GET","HEAD"],"parameters":["owner_id"],"bindings":{"owner_id":"id"}},"withdrawalrequestOwners.updateStatus":{"uri":"withdrawal-request-owners\/update-status","methods":["POST"]},"fleetneeddocuments.index":{"uri":"fleet-needed-documents","methods":["GET","HEAD"]},"fleetneeddocuments.list":{"uri":"fleet-needed-documents\/list","methods":["GET","HEAD"]},"fleetneeddocuments.create":{"uri":"fleet-needed-documents\/create","methods":["GET","HEAD"]},"fleetneeddocuments.store":{"uri":"fleet-needed-documents\/store","methods":["POST"]},"fleetneeddocuments.edit":{"uri":"fleet-needed-documents\/edit\/{document}","methods":["GET","HEAD"],"parameters":["document"],"bindings":{"document":"id"}},"fleetneeddocuments.update":{"uri":"fleet-needed-documents\/update\/{document}","methods":["POST"],"parameters":["document"],"bindings":{"document":"id"}},"fleetneeddocuments.updatestatus":{"uri":"fleet-needed-documents\/toggle","methods":["POST"]},"fleetneeddocuments.delete":{"uri":"fleet-needed-documents\/delete\/{document}","methods":["DELETE"],"parameters":["document"],"bindings":{"document":"id"}},"managefleets.index":{"uri":"manage-fleet","methods":["GET","HEAD"]},"managefleets.Create":{"uri":"manage-fleet\/create","methods":["GET","HEAD"]},"managefleets.list":{"uri":"manage-fleet\/list","methods":["GET","HEAD"]},"managefleets.store":{"uri":"manage-fleet\/store","methods":["POST"]},"managefleets.edit":{"uri":"manage-fleet\/edit\/{fleet}","methods":["GET","HEAD"],"parameters":["fleet"],"bindings":{"fleet":"id"}},"managefleets.update":{"uri":"manage-fleet\/update\/{fleet}","methods":["POST"],"parameters":["fleet"],"bindings":{"fleet":"id"}},"managefleets.assignDriver":{"uri":"manage-fleet\/assign\/{fleet}\/{driver}","methods":["POST"],"parameters":["fleet","driver"],"bindings":{"fleet":"id","driver":"id"}},"managefleets.approve":{"uri":"manage-fleet\/approve\/{fleet}","methods":["POST"],"parameters":["fleet"]},"managefleets.delete":{"uri":"manage-fleet\/delete\/{fleet}","methods":["DELETE"],"parameters":["fleet"],"bindings":{"fleet":"id"}},"managefleets.document":{"uri":"manage-fleet\/document\/{fleet}","methods":["GET","HEAD"],"parameters":["fleet"],"bindings":{"fleet":"id"}},"managefleets.listDocument":{"uri":"manage-fleet\/document\/list\/{fleet}","methods":["GET","HEAD"],"parameters":["fleet"]},"managefleets.listFleetDrivers":{"uri":"manage-fleet\/listFleetDriver\/{fleet}","methods":["GET","HEAD"],"parameters":["fleet"],"bindings":{"fleet":"id"}},"managefleets.documentUpload":{"uri":"manage-fleet\/document-upload\/{document}\/{fleetId}","methods":["GET","HEAD"],"parameters":["document","fleetId"],"bindings":{"document":"id","fleetId":"id"}},"managefleets.documentUploadStore":{"uri":"manage-fleet\/document-upload\/{document}\/{fleetId}","methods":["POST"],"parameters":["document","fleetId"],"bindings":{"document":"id","fleetId":"id"}},"managefleets.approvefleetDocument":{"uri":"manage-fleet\/document-toggle\/{documentId}\/{fleetId}\/{status}","methods":["GET","HEAD"],"parameters":["documentId","fleetId","status"]},"managefleets.fleetPaymentHistory":{"uri":"manage-fleet\/fleet-payment-history\/{fleet}","methods":["GET","HEAD"],"parameters":["fleet"]},"approvedFleetdriver.Index":{"uri":"fleet-drivers","methods":["GET","HEAD"]},"approvedFleetdriver.pendingIndex":{"uri":"fleet-drivers\/pending","methods":["GET","HEAD"]},"fleet-drivers.list":{"uri":"fleet-drivers\/list","methods":["GET","HEAD"]},"fleet-drivers.store":{"uri":"fleet-drivers\/store","methods":["POST"]},"fleet-drivers.edit":{"uri":"fleet-drivers\/edit\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"fleet-drivers.create":{"uri":"fleet-drivers\/create","methods":["GET","HEAD"]},"fleet-drivers.update":{"uri":"fleet-drivers\/update\/{driver}","methods":["POST"],"parameters":["driver"],"bindings":{"driver":"id"}},"fleet-drivers.approve":{"uri":"fleet-drivers\/approve\/{driver}","methods":["POST"],"parameters":["driver"],"bindings":{"driver":"id"}},"fleet-drivers.delete":{"uri":"fleet-drivers\/delete\/{driver}","methods":["DELETE"],"parameters":["driver"]},"fleet-drivers.listOwnersByLocation":{"uri":"fleet-drivers\/ownerList","methods":["GET","HEAD"]},"fleet-drivers.listOwners":{"uri":"fleet-drivers\/list-owners","methods":["GET","HEAD"]},"approvedFleetdriver.ViewDocument":{"uri":"fleet-drivers\/document\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"approvedFleetdriver.listDocument":{"uri":"fleet-drivers\/document\/list\/{driverId}","methods":["GET","HEAD"],"parameters":["driverId"]},"approvedFleetdriver.documentUpload":{"uri":"fleet-drivers\/document-upload\/{document}\/{driverId}","methods":["GET","HEAD"],"parameters":["document","driverId"],"bindings":{"document":"id","driverId":"id"}},"approvedFleetdriver.documentUploadStore":{"uri":"fleet-drivers\/document-upload-store\/{document}\/{driverId}","methods":["POST"],"parameters":["document","driverId"],"bindings":{"document":"id","driverId":"id"}},"approvedFleetdriver.approveDriverDocument":{"uri":"fleet-drivers\/document-toggle\/{documentId}\/{driverId}\/{status}","methods":["GET","HEAD"],"parameters":["documentId","driverId","status"]},"pendingdriver.fleetIndex":{"uri":"fleet-drivers\/pending-drivers","methods":["GET","HEAD"]},"goodstype.index":{"uri":"goods-type","methods":["GET","HEAD"]},"goodstype.create":{"uri":"goods-type\/create","methods":["GET","HEAD"]},"goodstype.store":{"uri":"goods-type\/store","methods":["POST"]},"goodstype.list":{"uri":"goods-type\/list","methods":["GET","HEAD"]},"goodstype.edit":{"uri":"goods-type\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"goodstype.update":{"uri":"goods-type\/update\/{goods_type}","methods":["POST"],"parameters":["goods_type"]},"goodstype.delete":{"uri":"goods-type\/delete\/{goods_type}","methods":["DELETE"],"parameters":["goods_type"]},"goodstype.updateStatus":{"uri":"goods-type\/update-status","methods":["POST"]},"bannerimage.index":{"uri":"banner-image","methods":["GET","HEAD"]},"bannerimage.create":{"uri":"banner-image\/create","methods":["GET","HEAD"]},"bannerimage.list":{"uri":"banner-image\/list","methods":["GET","HEAD"]},"bannerimage.update":{"uri":"banner-image\/update\/{bannerimage}","methods":["POST"],"parameters":["bannerimage"],"bindings":{"bannerimage":"id"}},"bannerimage.store":{"uri":"banner-image\/store","methods":["POST"]},"bannerimage.edit":{"uri":"banner-image\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"bannerimage.delete":{"uri":"banner-image\/delete\/{bannerimage}","methods":["DELETE"],"parameters":["bannerimage"],"bindings":{"bannerimage":"id"}},"bannerimage.updateStatus":{"uri":"banner-image\/update-status","methods":["POST"]},"ownerneeddocuments.index":{"uri":"owner-needed-documents","methods":["GET","HEAD"]},"ownerneeddocuments.list":{"uri":"owner-needed-documents\/list","methods":["GET","HEAD"]},"ownerneeddocuments.create":{"uri":"owner-needed-documents\/create","methods":["GET","HEAD"]},"ownerneeddocuments.store":{"uri":"owner-needed-documents\/store","methods":["POST"]},"ownerneeddocuments.edit":{"uri":"owner-needed-documents\/edit\/{document}","methods":["GET","HEAD"],"parameters":["document"],"bindings":{"document":"id"}},"ownerneeddocuments.update":{"uri":"owner-needed-documents\/update\/{document}","methods":["POST"],"parameters":["document"],"bindings":{"document":"id"}},"ownerneeddocuments.updatestatus":{"uri":"owner-needed-documents\/toggle","methods":["POST"]},"ownerneeddocuments.delete":{"uri":"owner-needed-documents\/delete\/{document}","methods":["DELETE"],"parameters":["document"],"bindings":{"document":"id"}},"onboardingscreen.index":{"uri":"onboarding-screen","methods":["GET","HEAD"]},"onboardingscreen.list":{"uri":"onboarding-screen\/list","methods":["GET","HEAD"]},"onboardingscreen.edit":{"uri":"onboarding-screen\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"onboardingscreen.update":{"uri":"onboarding-screen\/update\/{id}","methods":["POST"],"parameters":["id"]},"onboardingscreen.updateStatus":{"uri":"onboarding-screen\/update-status","methods":["POST"]},"invoiceconfiguration.index":{"uri":"invoice-configuration","methods":["GET","HEAD"]},"mapsettings.index":{"uri":"map-setting","methods":["GET","HEAD"]},"mapsettings.update":{"uri":"map-setting\/update","methods":["POST"]},"settings.generalSettings":{"uri":"general-settings","methods":["GET","HEAD"]},"settings.updateGeneralSettings":{"uri":"general-settings\/update","methods":["POST"]},"settings.updateStatus":{"uri":"general-settings\/update-status","methods":["POST"]},"settings.customizationSettings":{"uri":"customization-settings","methods":["GET","HEAD"]},"settings.updateCustomizationSettings":{"uri":"customization-settings\/update","methods":["POST"]},"settings.updateCustomizationStatus":{"uri":"customization-settings\/update-status","methods":["POST"]},"settings.transportRideSettings":{"uri":"transport-ride-settings","methods":["GET","HEAD"]},"settings.updateTransportSettings":{"uri":"transport-ride-settings\/update","methods":["POST"]},"settings.updateTransportStatus":{"uri":"transport-ride-settings\/update-status","methods":["POST"]},"settings.bidRideSettings":{"uri":"bid-ride-settings","methods":["GET","HEAD"]},"settings.updateBidSettings":{"uri":"bid-ride-settings\/update","methods":["POST"]},"settings.walletSettings":{"uri":"wallet-settings","methods":["GET","HEAD"]},"settings.updateWalletSettings":{"uri":"wallet-settings\/update","methods":["POST"]},"settings.referralSettings":{"uri":"referral-settings","methods":["GET","HEAD"]},"settings.updateRefrerralSettings":{"uri":"referral-settings\/update","methods":["POST"]},"triprequest.ridesRequest":{"uri":"rides-request","methods":["GET","HEAD"]},"triprequest.list":{"uri":"rides-request\/list","methods":["GET","HEAD"]},"triprequest.driverFind":{"uri":"rides-request\/driver\/{driver}","methods":["POST"],"parameters":["driver"],"bindings":{"driver":"id"}},"triprequest.viewDetails":{"uri":"rides-request\/view\/{requestmodel}","methods":["GET","HEAD"],"parameters":["requestmodel"],"bindings":{"requestmodel":"id"}},"triprequest.cancel":{"uri":"rides-request\/cancel\/{requestmodel}","methods":["GET","HEAD"],"parameters":["requestmodel"],"bindings":{"requestmodel":"id"}},"triprequest.sosDetail":{"uri":"rides-request\/detail\/{request}","methods":["GET","HEAD"],"parameters":["request"],"bindings":{"request":"id"}},"triprequest.scheduledRides":{"uri":"scheduled-rides","methods":["GET","HEAD"]},"triprequest.outstationRides":{"uri":"out-station-rides","methods":["GET","HEAD"]},"triprequest.cancellationRides":{"uri":"cancellation-rides","methods":["GET","HEAD"]},"triprequest.cancellationRidesViewDetails":{"uri":"cancellation-rides\/view","methods":["GET","HEAD"]},"deliveryTriprequest.ridesRequest":{"uri":"delivery-rides-request","methods":["GET","HEAD"]},"deliveryTriprequest.list":{"uri":"delivery-rides-request\/list","methods":["GET","HEAD"]},"deliveryTriprequest.driverFind":{"uri":"delivery-rides-request\/driver\/{driver}","methods":["POST"],"parameters":["driver"],"bindings":{"driver":"id"}},"deliveryTriprequest.viewDetails":{"uri":"delivery-rides-request\/view\/{requestmodel}","methods":["GET","HEAD"],"parameters":["requestmodel"],"bindings":{"requestmodel":"id"}},"deliveryTriprequest.cancel":{"uri":"delivery-rides-request\/cancel\/{requestmodel}","methods":["GET","HEAD"],"parameters":["requestmodel"],"bindings":{"requestmodel":"id"}},"delivery-scheduled-rides.scheduledRides":{"uri":"delivery-scheduled-rides","methods":["GET","HEAD"]},"delivery-scheduled-rides.viewDetails":{"uri":"delivery-scheduled-rides\/view","methods":["GET","HEAD"]},"deliveryrequest.cancellationRides":{"uri":"delivery-cancellation-rides","methods":["GET","HEAD"]},"deliveryrequest.viewCancelDetails":{"uri":"delivery-cancellation-rides\/view","methods":["GET","HEAD"]},"triprequest.ongoingRides":{"uri":"ongoing-rides","methods":["GET","HEAD"]},"triprequest.ongoingRideDetail":{"uri":"ongoing-rides\/find-ride\/{request}","methods":["GET","HEAD"],"parameters":["request"],"bindings":{"request":"id"}},"triprequest.assignView":{"uri":"ongoing-rides\/assign\/{request}","methods":["GET","HEAD"],"parameters":["request"],"bindings":{"request":"id"}},"triprequest.assignDriver":{"uri":"ongoing-rides\/assign-driver\/{requestmodel}","methods":["POST"],"parameters":["requestmodel"],"bindings":{"requestmodel":"id"}},"images.index":{"uri":"images","methods":["GET","HEAD"]},"images.create":{"uri":"images\/create","methods":["GET","HEAD"]},"images.update":{"uri":"images\/update","methods":["GET","HEAD"]},"users.index":{"uri":"users","methods":["GET","HEAD"]},"users.list":{"uri":"users\/list","methods":["GET","HEAD"]},"users.create":{"uri":"users\/create","methods":["GET","HEAD"]},"users.store":{"uri":"users\/store","methods":["POST"]},"users.edit":{"uri":"users\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"users.update":{"uri":"users\/update\/{user}","methods":["POST"],"parameters":["user"],"bindings":{"user":"id"}},"users.checkMobileExists":{"uri":"users\/check-mobile\/{mobile}\/{id}","methods":["GET","HEAD"],"parameters":["mobile","id"]},"users.checkEmailExists":{"uri":"users\/check-email\/{email}\/{id}","methods":["GET","HEAD"],"parameters":["email","id"]},"users.updateStatus":{"uri":"users\/update-status","methods":["POST"]},"users.view-profile":{"uri":"users\/view-profile\/{user}","methods":["GET","HEAD"],"parameters":["user"],"bindings":{"user":"id"}},"users.addAmount":{"uri":"users\/wallet-add-amount\/{user}","methods":["POST"],"parameters":["user"],"bindings":{"user":"id"}},"users.walletHistoryList":{"uri":"users\/wallet-history\/list\/{user}","methods":["GET","HEAD"],"parameters":["user"],"bindings":{"user":"id"}},"users.requestList":{"uri":"users\/request\/list\/{user}","methods":["GET","HEAD"],"parameters":["user"],"bindings":{"user":"id"}},"users.deleted-users":{"uri":"users\/deleted-user","methods":["GET","HEAD"]},"users.deletedList":{"uri":"users\/deletedList","methods":["GET","HEAD"]},"zone.index":{"uri":"zones","methods":["GET","HEAD"]},"zone.create":{"uri":"zones\/create","methods":["GET","HEAD"]},"zone.store":{"uri":"zones\/store","methods":["POST"]},"zone.fetch":{"uri":"zones\/fetch","methods":["GET","HEAD"]},"zone.list":{"uri":"zones\/list","methods":["GET","HEAD"]},"zone.edit":{"uri":"zones\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"zone.update":{"uri":"zones\/update\/{zone}","methods":["POST"],"parameters":["zone"],"bindings":{"zone":"id"}},"zone.updateStatus":{"uri":"zones\/update-status","methods":["POST"]},"zone.map":{"uri":"zones\/map\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"zone.surge":{"uri":"zones\/surge\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"zone.updateSurge":{"uri":"zones\/surge\/update\/{zone}","methods":["POST"],"parameters":["zone"],"bindings":{"zone":"id"}},"incentives.index":{"uri":"incentives","methods":["GET","HEAD"]},"incentives.update":{"uri":"incentives\/update","methods":["POST"]},"landing.index":{"uri":"\/","methods":["GET","HEAD"]},"landing.driver":{"uri":"driver","methods":["GET","HEAD"]},"landing.aboutus":{"uri":"aboutus","methods":["GET","HEAD"]},"landing.user":{"uri":"user","methods":["GET","HEAD"]},"landing.contact":{"uri":"contact","methods":["GET","HEAD"]},"landing.privacy":{"uri":"privacy","methods":["GET","HEAD"]},"landing.compliance":{"uri":"compliance","methods":["GET","HEAD"]},"landing.terms":{"uri":"terms","methods":["GET","HEAD"]},"landing.dmv":{"uri":"dmv","methods":["GET","HEAD"]},"web-booking.create-booking":{"uri":"create-booking","methods":["GET","HEAD"]},"web-booking.profile":{"uri":"profile","methods":["GET","HEAD"]},"user.updateProfile":{"uri":"user\/update-profile","methods":["POST"]},"web-booking.history":{"uri":"history","methods":["GET","HEAD"]},"history.viewDetails":{"uri":"history\/view\/{requestmodel}","methods":["GET","HEAD"],"parameters":["requestmodel"],"bindings":{"requestmodel":"id"}},"web-users.list":{"uri":"webuser\/list","methods":["GET","HEAD"]},"app.install":{"uri":"installation","methods":["GET","HEAD"]},"overall.menu":{"uri":"overall-menu","methods":["GET","HEAD"]},"chat.index":{"uri":"chat","methods":["GET","HEAD"]},"chat.fetchUser":{"uri":"chat\/fetch-user","methods":["GET","HEAD"]},"chat.messages":{"uri":"chat\/messages\/{conversationId}","methods":["GET","HEAD"],"parameters":["conversationId"],"bindings":{"conversationId":"id"}},"chat.sendAdmin":{"uri":"chat\/send-admin","methods":["POST"]},"chat.closeChat":{"uri":"chat\/close-chat","methods":["POST"]},"chat.fetchChats":{"uri":"chat\/fetchChat","methods":["GET","HEAD"]},"chat.readAll":{"uri":"chat\/readAll","methods":["GET","HEAD"]},"landing_home.index":{"uri":"landing-home","methods":["GET","HEAD"]},"landing_home.list":{"uri":"landing-home\/list","methods":["GET","HEAD"]},"landing_home.create":{"uri":"landing-home\/create","methods":["GET","HEAD"]},"landing_home.store":{"uri":"landing-home\/store","methods":["POST"]},"landing_home.edit":{"uri":"landing-home\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"landing_home.update":{"uri":"landing-home\/update\/{landingHome}","methods":["POST"],"parameters":["landingHome"],"bindings":{"landingHome":"id"}},"landing_home.delete":{"uri":"landing-home\/delete\/{landingHome}","methods":["DELETE"],"parameters":["landingHome"],"bindings":{"landingHome":"id"}},"landing_abouts.index":{"uri":"landing-aboutus","methods":["GET","HEAD"]},"landing_abouts.list":{"uri":"landing-aboutus\/list","methods":["GET","HEAD"]},"landing_abouts.create":{"uri":"landing-aboutus\/create","methods":["GET","HEAD"]},"landing_abouts.store":{"uri":"landing-aboutus\/store","methods":["POST"]},"landing_abouts.edit":{"uri":"landing-aboutus\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"landing_abouts.update":{"uri":"landing-aboutus\/update\/{landingAbouts}","methods":["POST"],"parameters":["landingAbouts"],"bindings":{"landingAbouts":"id"}},"landing_abouts.delete":{"uri":"landing-aboutus\/delete\/{landingAbouts}","methods":["DELETE"],"parameters":["landingAbouts"],"bindings":{"landingAbouts":"id"}},"landing_driver.index":{"uri":"landing-driver","methods":["GET","HEAD"]},"landing_driver.list":{"uri":"landing-driver\/list","methods":["GET","HEAD"]},"landing_driver.create":{"uri":"landing-driver\/create","methods":["GET","HEAD"]},"landing_driver.store":{"uri":"landing-driver\/store","methods":["POST"]},"landing_driver.edit":{"uri":"landing-driver\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"landing_driver.update":{"uri":"landing-driver\/update\/{landingDriver}","methods":["POST"],"parameters":["landingDriver"],"bindings":{"landingDriver":"id"}},"landing_driver.delete":{"uri":"landing-driver\/delete\/{landingDriver}","methods":["DELETE"],"parameters":["landingDriver"],"bindings":{"landingDriver":"id"}},"landing_user.index":{"uri":"landing-user","methods":["GET","HEAD"]},"landing_user.list":{"uri":"landing-user\/list","methods":["GET","HEAD"]},"landing_user.create":{"uri":"landing-user\/create","methods":["GET","HEAD"]},"landing_user.store":{"uri":"landing-user\/store","methods":["POST"]},"landing_user.edit":{"uri":"landing-user\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"landing_user.update":{"uri":"landing-user\/update\/{landingUser}","methods":["POST"],"parameters":["landingUser"],"bindings":{"landingUser":"id"}},"landing_user.delete":{"uri":"landing-user\/delete\/{landingUser}","methods":["DELETE"],"parameters":["landingUser"],"bindings":{"landingUser":"id"}},"landing_header.index":{"uri":"landing-header","methods":["GET","HEAD"]},"landing_header.list":{"uri":"landing-header\/list","methods":["GET","HEAD"]},"landing_header.create":{"uri":"landing-header\/create","methods":["GET","HEAD"]},"landing_header.store":{"uri":"landing-header\/store","methods":["POST"]},"landing_header.edit":{"uri":"landing-header\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"landing_header.update":{"uri":"landing-header\/update\/{landingHeader}","methods":["POST"],"parameters":["landingHeader"],"bindings":{"landingHeader":"id"}},"landing_header.delete":{"uri":"landing-header\/delete\/{landingHeader}","methods":["DELETE"],"parameters":["landingHeader"],"bindings":{"landingHeader":"id"}},"landing_quicklink.index":{"uri":"landing-quicklink","methods":["GET","HEAD"]},"landing_quicklink.list":{"uri":"landing-quicklink\/list","methods":["GET","HEAD"]},"landing_quicklink.create":{"uri":"landing-quicklink\/create","methods":["GET","HEAD"]},"landing_quicklink.store":{"uri":"landing-quicklink\/store","methods":["POST"]},"landing_quicklink.edit":{"uri":"landing-quicklink\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"landing_quicklink.update":{"uri":"landing-quicklink\/update\/{landingQuickLink}","methods":["POST"],"parameters":["landingQuickLink"],"bindings":{"landingQuickLink":"id"}},"landing_quicklink.delete":{"uri":"landing-quicklink\/delete\/{landingQuickLink}","methods":["DELETE"],"parameters":["landingQuickLink"],"bindings":{"landingQuickLink":"id"}},"landing_contact.index":{"uri":"landing-contact","methods":["GET","HEAD"]},"landing_contact.list":{"uri":"landing-contact\/list","methods":["GET","HEAD"]},"landing_contact.create":{"uri":"landing-contact\/create","methods":["GET","HEAD"]},"landing_contact.store":{"uri":"landing-contact\/store","methods":["POST"]},"landing_contact.edit":{"uri":"landing-contact\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"landing_contact.update":{"uri":"landing-contact\/update\/{landingContact}","methods":["POST"],"parameters":["landingContact"],"bindings":{"landingContact":"id"}},"landing_contact.delete":{"uri":"landing-contact\/delete\/{landingContact}","methods":["DELETE"],"parameters":["landingContact"],"bindings":{"landingContact":"id"}},"landing_contact.contactmessage":{"uri":"landing-contact\/contactmessage","methods":["POST"]},"paypal":{"uri":"paypal","methods":["GET","HEAD"]},"paypal.payment":{"uri":"paypal\/payment","methods":["POST"]},"paypal.payment.success":{"uri":"paypal\/payment\/success","methods":["GET","HEAD"]},"paypal.payment\/cancel":{"uri":"paypal\/payment\/cancel","methods":["GET","HEAD"]},"checkout.process":{"uri":"stripe-checkout","methods":["POST"]},"checkout.success":{"uri":"stripe-checkout-success","methods":["GET","HEAD"]},"checkout.failure":{"uri":"stripe-checkout-error","methods":["GET","HEAD"]},"flutterwave.success":{"uri":"flutterwave\/payment\/success","methods":["GET","HEAD"]},"paystack.success":{"uri":"paystack\/payment\/success","methods":["GET","HEAD"]},"khalti.success":{"uri":"khalti\/checkout","methods":["POST"]},"razorpay.success":{"uri":"payment-success","methods":["GET","HEAD"]},"mercadopago.success":{"uri":"mercadopago\/payment\/success","methods":["GET","HEAD"]},"ccavenue.checkout":{"uri":"ccavenue\/checkout","methods":["POST"]},"ccavenue.payment.response":{"uri":"ccavenue\/payment\/success","methods":["GET","HEAD"]},"ccavenue.payment.cancel":{"uri":"ccavenue\/payment\/failure","methods":["GET","HEAD"]}};
Object.assign(Ziggy.routes, routes);
})();
</script> <link rel="preload" as="style" href="http://localhost/new_vue_tagxi/public/build/assets/vendor-f749f9ab.css" /><link rel="preload" as="style" href="http://localhost/new_vue_tagxi/public/build/assets/app-5dc46014.css" /><link rel="preload" as="style" href="http://localhost/new_vue_tagxi/public/build/assets/404-8c21c3cf.css" /><link rel="modulepreload" href="http://localhost/new_vue_tagxi/public/build/assets/app-e076d658.js" /><link rel="modulepreload" href="http://localhost/new_vue_tagxi/public/build/assets/vendor-b6e68d09.js" /><link rel="modulepreload" href="http://localhost/new_vue_tagxi/public/build/assets/404-36789bcd.js" /><link rel="modulepreload" href="http://localhost/new_vue_tagxi/public/build/assets/error-ff2a41aa.js" /><link rel="stylesheet" href="http://localhost/new_vue_tagxi/public/build/assets/vendor-f749f9ab.css" /><link rel="stylesheet" href="http://localhost/new_vue_tagxi/public/build/assets/app-5dc46014.css" /><link rel="stylesheet" href="http://localhost/new_vue_tagxi/public/build/assets/404-8c21c3cf.css" /><script type="module" src="http://localhost/new_vue_tagxi/public/build/assets/app-e076d658.js"></script><script type="module" src="http://localhost/new_vue_tagxi/public/build/assets/404-36789bcd.js"></script>
</head>
<body>
<div id="app" data-page="{"component":"pages\/404","props":{"jetstream":{"canCreateTeams":false,"canManageTwoFactorAuthentication":true,"canUpdatePassword":true,"canUpdateProfileInformation":true,"hasEmailVerification":true,"flash":[],"hasAccountDeletionFeatures":true,"hasApiFeatures":true,"hasTeamFeatures":false,"hasTermsAndPrivacyPolicyFeature":true,"managesProfilePhotos":true},"auth":{"user":null},"errorBags":[],"errors":{},"flash":{"successMessage":null}},"url":"\/new_vue_tagxi\/public\/\/api\/privacy-content","version":"6417c333e668146bc61c7fac84a8b3e4"}"></div> <script>
window.headers = [{"id":"d488f364-f420-4415-85a2-e4b1a154863b","header_logo":"Y8Xg6Y3kQHYzGSsVonTjE5aI1SZu8lEWhuXPsz5L.png","home":"Home","aboutus":"About Us","driver":"Driver","user":"User","contact":"Contact","book_now_btn":"Book Now","footer_logo":"TvZGGFUp14QFjqR2gJZPrJ28gt0EYakPBp75vj7C.png","footer_para":"Tagxi is a rideshare platform facilitating peer to peer ridesharing by means of connecting passengers who are in need of rides from drivers with available cars to get from point A to point B with the press of a button.","quick_links":"Quick Links","compliance":"Compliance","privacy":"Privacy Policy","terms":"Terms \u0026 Conditions","dmv":"DMV Check","user_app":"User Apps","user_play":"Play Store","user_play_link":"https:\/\/play.google.com\/store\/apps\/details?id=tagxi.bidding.user","user_apple":"Apple Store","user_apple_link":"https:\/\/apps.apple.com\/in\/app\/super-bidding-user\/id6449780067","driver_app":"Driver Apps","driver_play":"Play Store","driver_play_link":"https:\/\/play.google.com\/store\/apps\/details?id=tagxi.bidding.driver","driver_apple":"Apple Store","driver_apple_link":"https:\/\/apps.apple.com\/in\/app\/super-bidding-driver\/id6449778880","copy_rights":"2021 @ misoftwares","fb_link":"https:\/\/www.facebook.com\/","linkdin_link":"https:\/\/in.linkedin.com\/","x_link":"https:\/\/x.com\/","insta_link":"https:\/\/www.instagram.com\/","locale":"En","language":"English","direction":"ltr","created_at":null,"updated_at":"2024-11-20T18:33:22.000000Z","header_logo_url":"http:\/\/localhost\/new_vue_tagxi\/public\/storage\/uploads\/website\/images\/Y8Xg6Y3kQHYzGSsVonTjE5aI1SZu8lEWhuXPsz5L.png","footer_logo_url":"http:\/\/localhost\/new_vue_tagxi\/public\/storage\/uploads\/website\/images\/TvZGGFUp14QFjqR2gJZPrJ28gt0EYakPBp75vj7C.png"}];
window.recaptchaKey = null;
window.logo = "http:\/\/localhost\/new_vue_tagxi\/public\/storage\/uploads\/system-admin\/logo\/logo-light.png";
window.favicon = "http:\/\/localhost\/new_vue_tagxi\/public\/storage\/uploads\/system-admin\/logo\/logo-mini.png";
window.footer_content1 = "2024 \u00a9 Misoftwares.";
window.footer_content2 = "Design \u0026 Develop by Misoftwares";
</script>
</body>
<script>
document.addEventListener('DOMContentLoaded', function () {
// Check if window.favicon is available and set it dynamically
if (window.favicon) {
document.getElementById('dynamic-favicon').setAttribute('href', window.favicon);
} else {
// Fallback if the favicon is not set
document.getElementById('dynamic-favicon').setAttribute('href', 'http://localhost/new_vue_tagxi/public/image/favicon.ico');
}
});
</script>
<style>
:root{
--top_nav: #0ab39c;
--side_menu: #405189;
--side_menu_txt: #ffffff;
--loginbg: url('http://localhost/new_vue_tagxi/public/storage/uploads/system-admin/logo/workspace.jpg');
--owner_loginbg: url('http://localhost/new_vue_tagxi/public/storage/uploads/system-admin/logo/workspace.jpg');
}
</style>
</html>
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Terms and Conditions
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/terms-content" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"locale\": \"pt_PT\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/terms-content"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"locale": "pt_PT"
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
Show headers
cache-control: no-cache, private
content-type: application/json
link: <http://localhost/new_vue_tagxi/public/build/assets/vendor-f749f9ab.css>; rel="preload"; as="style", <http://localhost/new_vue_tagxi/public/build/assets/app-5dc46014.css>; rel="preload"; as="style", <http://localhost/new_vue_tagxi/public/build/assets/404-8c21c3cf.css>; rel="preload"; as="style", <http://localhost/new_vue_tagxi/public/build/assets/app-e076d658.js>; rel="modulepreload", <http://localhost/new_vue_tagxi/public/build/assets/vendor-b6e68d09.js>; rel="modulepreload", <http://localhost/new_vue_tagxi/public/build/assets/404-36789bcd.js>; rel="modulepreload", <http://localhost/new_vue_tagxi/public/build/assets/error-ff2a41aa.js>; rel="modulepreload"
vary: X-Inertia
set-cookie: XSRF-TOKEN=eyJpdiI6IklFaDVjcm81Rm5sR01IOXNLUmkyMnc9PSIsInZhbHVlIjoiMHRWcmRCdWs1SVlvbldNMU5Tb25FcllncmttYWpjNjZnaGI5b0ZlTEFFc2NITVRKUFdWMG0xRTJqUmVzbUIyWUxoTmhtdTNQWnJBemMvZ2JwcnFBN2ZNbTJIenZNUjcrSzV1cmpYemdJNW1MUEJvQmJscXJzdXJDVVFrQW5BNFkiLCJtYWMiOiIyNDk4M2VlNWYwOGZkZTFhZGYyZDZhYTA4NzhjN2RjZWQ4MWZhYjRiODI1NzM2Yjk1OGM1NDYzYTQzNmRjNDY5IiwidGFnIjoiIn0%3D; expires=Tue, 26 Nov 2024 11:37:51 GMT; Max-Age=7200; path=/; samesite=lax; vuetaxi_session=eyJpdiI6Ik5iZDhuNmJSS3cySVpHNkNvc2NDMkE9PSIsInZhbHVlIjoieGljc0Y3ZTI5dmdwZzVHUDh0QkQ0eW04OWhlYUcrVnVGeGx6ZWt3OEtGQS84NkJxNG5yR3Fta0xCcVpEV3RoTi9hdmNwUGJhS0wydmJZazE0K2dUUDlsU2RxMlptaUpTdmw1MFBTdXNQT0VyYjgyRXV5NmNrY2VZM2NIRElEOUYiLCJtYWMiOiI2YmQwMDE0OTdlZWRkYWMwMjdlYWZhMzA2MWRmNThmYjk0ZWU2MzljNTU2OTJkNzVjNzNlNWRmNmVmNDI4MzM2IiwidGFnIjoiIn0%3D; expires=Tue, 26 Nov 2024 11:37:51 GMT; Max-Age=7200; path=/; httponly; samesite=lax
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title inertia>Misoftwares</title>
<meta name="description"
content="Taxi App - Fast, Safe, and Convenient Rides at Your Fingertips">
<meta name="keywords"
content="Taxi booking app admin panel,Taxi fleet management software,Taxi service admin panel features,Real-time taxi management dashboard">
<meta name="author" content="Misoftwares">
<!-- Social Media Meta Tags -->
<meta property="og:title" content="Misoftwares - Inertia + Vue & Laravel Admin & Dashboard Template">
<meta property="og:description"
content="Simplify web application development with Misoftwares, a feature-rich taxi app admin and dashboard template built with Inertia.js, Vue.js, and Laravel.">
<meta property="og:image" content="URL to the template's logo or featured image">
<meta property="og:url" content="URL to the template's webpage">
<meta name="twitter:card" content="summary_large_image">
<!-- App favicon -->
<!-- <link rel="shortcut icon" href="http://localhost/new_vue_tagxi/public/image/favicon.ico"> -->
<link rel="shortcut icon" id="dynamic-favicon" href="">
<!-- Firebase SDK -->
<!-- Use the Firebase 8.x version for CommonJS support -->
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-database.js"></script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/select2@4.1.0-beta.1/dist/css/select2.min.css" rel="stylesheet" />
<script src="https://cdn.jsdelivr.net/npm/select2@4.1.0-beta.1/dist/js/select2.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/driver.js@1.0.1/dist/driver.js.iife.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/driver.js@1.0.1/dist/driver.css"/>
<!-- Scripts -->
<script type="text/javascript">
(function () {
const routes = {"admin-login":{"uri":"login","methods":["POST"]},"logout":{"uri":"logout","methods":["POST"]},"password.request":{"uri":"forgot-password","methods":["GET","HEAD"]},"password.reset":{"uri":"reset-password\/{token}","methods":["GET","HEAD"],"parameters":["token"]},"password.email":{"uri":"forgot-password","methods":["POST"]},"password.update":{"uri":"reset-password","methods":["POST"]},"register":{"uri":"register","methods":["GET","HEAD"]},"verification.notice":{"uri":"email\/verify","methods":["GET","HEAD"]},"verification.verify":{"uri":"email\/verify\/{id}\/{hash}","methods":["GET","HEAD"],"parameters":["id","hash"]},"verification.send":{"uri":"email\/verification-notification","methods":["POST"]},"user-profile-information.update":{"uri":"user\/profile-information","methods":["PUT"]},"user-password.update":{"uri":"user\/password","methods":["PUT"]},"password.confirmation":{"uri":"user\/confirmed-password-status","methods":["GET","HEAD"]},"password.confirm":{"uri":"user\/confirm-password","methods":["POST"]},"two-factor.login":{"uri":"two-factor-challenge","methods":["GET","HEAD"]},"two-factor.enable":{"uri":"user\/two-factor-authentication","methods":["POST"]},"two-factor.confirm":{"uri":"user\/confirmed-two-factor-authentication","methods":["POST"]},"two-factor.disable":{"uri":"user\/two-factor-authentication","methods":["DELETE"]},"two-factor.qr-code":{"uri":"user\/two-factor-qr-code","methods":["GET","HEAD"]},"two-factor.secret-key":{"uri":"user\/two-factor-secret-key","methods":["GET","HEAD"]},"two-factor.recovery-codes":{"uri":"user\/two-factor-recovery-codes","methods":["GET","HEAD"]},"terms.show":{"uri":"terms-of-service","methods":["GET","HEAD"]},"policy.show":{"uri":"privacy-policy","methods":["GET","HEAD"]},"profile.show":{"uri":"user\/profile","methods":["GET","HEAD"]},"other-browser-sessions.destroy":{"uri":"user\/other-browser-sessions","methods":["DELETE"]},"current-user-photo.destroy":{"uri":"user\/profile-photo","methods":["DELETE"]},"current-user.destroy":{"uri":"user","methods":["DELETE"]},"api-tokens.index":{"uri":"user\/api-tokens","methods":["GET","HEAD"]},"api-tokens.store":{"uri":"user\/api-tokens","methods":["POST"]},"api-tokens.update":{"uri":"user\/api-tokens\/{token}","methods":["PUT"],"parameters":["token"]},"api-tokens.destroy":{"uri":"user\/api-tokens\/{token}","methods":["DELETE"],"parameters":["token"]},"sanctum.csrf-cookie":{"uri":"sanctum\/csrf-cookie","methods":["GET","HEAD"]},"ignition.healthCheck":{"uri":"_ignition\/health-check","methods":["GET","HEAD"]},"ignition.executeSolution":{"uri":"_ignition\/execute-solution","methods":["POST"]},"ignition.updateConfig":{"uri":"_ignition\/update-config","methods":["POST"]},"privacy-content":{"uri":"api\/privacy-content","methods":["GET","HEAD"]},"terms-content":{"uri":"api\/terms-content","methods":["GET","HEAD"]},"compliance-content":{"uri":"api\/compliance-content","methods":["GET","HEAD"]},"dmv-content":{"uri":"api\/dmv-content","methods":["GET","HEAD"]},"view-countries":{"uri":"countries","methods":["GET","HEAD"]},"list-countries":{"uri":"countries-list","methods":["GET","HEAD"]},"languages.index":{"uri":"languages","methods":["GET","HEAD"]},"languages.create":{"uri":"languages\/create","methods":["GET","HEAD"]},"languages.list":{"uri":"languages\/list","methods":["GET","HEAD"]},"languages.browse":{"uri":"languages\/browse\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"languages.store":{"uri":"languages\/store","methods":["POST"]},"language.update":{"uri":"languages\/update\/{language}","methods":["PUT"],"parameters":["language"]},"current-languages":{"uri":"current-languages","methods":["GET","HEAD"]},"current-locations":{"uri":"current-locations","methods":["GET","HEAD"]},"current-notifications":{"uri":"current-notifications","methods":["GET","HEAD"]},"read-notifications":{"uri":"mark-notification-as-read","methods":["POST"]},"spa-user-login":{"uri":"user\/login","methods":["POST"]},"spa-owner-login":{"uri":"owner-login","methods":["POST"]},"owner-login":{"uri":"owner-login","methods":["GET","HEAD"]},"user-register":{"uri":"user\/register","methods":["POST"]},"dashboard":{"uri":"dashboard","methods":["GET","HEAD"]},"owner.dashboard":{"uri":"owner-dashboard","methods":["GET","HEAD"]},"dashboard-todayEarnings":{"uri":"dashboard\/today-earnings","methods":["GET","HEAD"]},"dashboard-overallEarnings":{"uri":"dashboard\/overall-earnings","methods":["GET","HEAD"]},"dashboard-cancelChart":{"uri":"dashboard\/cancel-chart","methods":["GET","HEAD"]},"serviceLocation.dashboard":{"uri":"dashboard\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"owner.IndividualDashboard":{"uri":"individual-owner-dashboard","methods":["GET","HEAD"]},"servicelocation.index":{"uri":"service-locations","methods":["GET","HEAD"]},"fleet-login":{"uri":"owner\/login","methods":["POST"]},"roles.index":{"uri":"roles","methods":["GET","HEAD"]},"roles.list":{"uri":"roles\/list","methods":["GET","HEAD"]},"roles.store":{"uri":"roles","methods":["POST"]},"roles.update":{"uri":"roles\/{role}","methods":["PUT"],"parameters":["role"],"bindings":{"role":"id"}},"permission.index":{"uri":"permissions\/{permission}","methods":["GET","HEAD"],"parameters":["permission"]},"permission.store":{"uri":"permissions\/{role}","methods":["POST"],"parameters":["role"]},"roles1.index":{"uri":"roles1","methods":["GET","HEAD"]},"roles1.list":{"uri":"roles1\/list","methods":["GET","HEAD"]},"roles1.store":{"uri":"roles1","methods":["POST"]},"roles1.update":{"uri":"roles1\/update\/{role}","methods":["PUT"],"parameters":["role"],"bindings":{"role":"id"}},"role1.import":{"uri":"roles1\/import-csv","methods":["POST"]},"service-location-list":{"uri":"service-locations\/list","methods":["GET","HEAD"]},"servicelocation.create":{"uri":"service-locations\/create","methods":["GET","HEAD"]},"servicelocation.edit":{"uri":"service-locations\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"servicelocation.store":{"uri":"service-locations\/store","methods":["POST"]},"servicelocation.update":{"uri":"service-locations\/update\/{location}","methods":["POST"],"parameters":["location"],"bindings":{"location":"id"}},"servicelocation.toggle":{"uri":"service-locations\/toggle\/{location}","methods":["POST"],"parameters":["location"],"bindings":{"location":"id"}},"servicelocation.delete":{"uri":"service-locations\/delete\/{location}","methods":["DELETE"],"parameters":["location"],"bindings":{"location":"id"}},"rentalpackagetype.index":{"uri":"rental-package-types","methods":["GET","HEAD"]},"rentalpackagetype.create":{"uri":"rental-package-types\/create","methods":["GET","HEAD"]},"rentalpackagetype.store":{"uri":"rental-package-types\/store","methods":["POST"]},"rentalpackagetype.list":{"uri":"rental-package-types\/list","methods":["GET","HEAD"]},"rentalpackagetype.edit":{"uri":"rental-package-types\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"rentalpackagetype.update":{"uri":"rental-package-types\/update\/{packageType}","methods":["POST"],"parameters":["packageType"],"bindings":{"packageType":"id"}},"rentalpackagetype.updateStatus":{"uri":"rental-package-types\/update-status","methods":["POST"]},"rentalpackagetype.delete":{"uri":"rental-package-types\/delete\/{packageType}","methods":["DELETE"],"parameters":["packageType"],"bindings":{"packageType":"id"}},"category.index":{"uri":"category","methods":["GET","HEAD"]},"category.create":{"uri":"category\/create","methods":["GET","HEAD"]},"category.store":{"uri":"category\/store","methods":["POST"]},"category.list":{"uri":"category\/list","methods":["GET","HEAD"]},"category.edit":{"uri":"category\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"category.update":{"uri":"category\/update\/{category}","methods":["POST"],"parameters":["category"]},"category.updateStatus":{"uri":"category\/update-status","methods":["POST"]},"category.delete":{"uri":"category\/delete\/{category}","methods":["DELETE"],"parameters":["category"]},"setprice.index":{"uri":"set-prices","methods":["GET","HEAD"]},"setprice.create":{"uri":"set-prices\/create","methods":["GET","HEAD"]},"setprice.vehiclelist":{"uri":"set-prices\/vehicle_types","methods":["GET","HEAD"]},"setprice.store":{"uri":"set-prices\/store","methods":["POST"]},"setprice.list":{"uri":"set-prices\/list","methods":["GET","HEAD"]},"setprice.edit":{"uri":"set-prices\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"setprice.update":{"uri":"set-prices\/update\/{zoneTypePrice}","methods":["POST"],"parameters":["zoneTypePrice"],"bindings":{"zoneTypePrice":"id"}},"setprice.delete":{"uri":"set-prices\/delete\/{id}","methods":["DELETE"],"parameters":["id"]},"setprice.updateStatus":{"uri":"set-prices\/update-status","methods":["POST"]},"setprice.packageIndex":{"uri":"set-prices\/packages\/{zoneType}","methods":["GET","HEAD"],"parameters":["zoneType"],"bindings":{"zoneType":"id"}},"setprice.packageList":{"uri":"set-prices\/packages\/list\/{zoneTypePrice}","methods":["GET","HEAD"],"parameters":["zoneTypePrice"],"bindings":{"zoneTypePrice":"id"}},"setprice.package-create":{"uri":"set-prices\/packages\/create\/{zoneTypePrice}","methods":["GET","HEAD"],"parameters":["zoneTypePrice"],"bindings":{"zoneTypePrice":"id"}},"setprice.packageStore":{"uri":"set-prices\/packages\/store","methods":["POST"]},"setprice.package-edit":{"uri":"set-prices\/packages\/edit\/{zoneTypePackage}","methods":["GET","HEAD"],"parameters":["zoneTypePackage"],"bindings":{"zoneTypePackage":"id"}},"setprice.package-update":{"uri":"set-prices\/packages\/update\/{zoneTypePackage}","methods":["POST"],"parameters":["zoneTypePackage"],"bindings":{"zoneTypePackage":"id"}},"setprice.package-delete":{"uri":"set-prices\/packages\/delete\/{zoneTypePackage}","methods":["DELETE"],"parameters":["zoneTypePackage"],"bindings":{"zoneTypePackage":"id"}},"setprice.updatePackageStatus":{"uri":"set-prices\/packages\/update-status","methods":["POST"]},"vehicletype.index":{"uri":"vehicle_type","methods":["GET","HEAD"]},"vehicletype.create":{"uri":"vehicle_type\/create","methods":["GET","HEAD"]},"vehicletype.store":{"uri":"vehicle_type\/store","methods":["POST"]},"vehicletype.list":{"uri":"vehicle_type\/list","methods":["GET","HEAD"]},"vehicletype.edit":{"uri":"vehicle_type\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"vehicletype.update":{"uri":"vehicle_type\/update\/{vehicle_type}","methods":["POST"],"parameters":["vehicle_type"],"bindings":{"vehicle_type":"id"}},"vehicletype.delete":{"uri":"vehicle_type\/delete\/{vehicle_type}","methods":["DELETE"],"parameters":["vehicle_type"],"bindings":{"vehicle_type":"id"}},"vehicletype.updateStatus":{"uri":"vehicle_type\/update-status","methods":["POST"]},"vehicletype.getCategory":{"uri":"vehicle_type\/getCategory","methods":["GET","HEAD"]},"vehiclemodel.index":{"uri":"vehicle-model","methods":["GET","HEAD"]},"vehiclemodel.create":{"uri":"vehicle-model\/create","methods":["GET","HEAD"]},"vehiclemodel.update":{"uri":"vehicle-model\/update","methods":["GET","HEAD"]},"vehiclemodel.test":{"uri":"vehicle-model\/test-url","methods":["GET","HEAD"]},"sos.index":{"uri":"sos","methods":["GET","HEAD"]},"sos.list":{"uri":"sos\/list","methods":["GET","HEAD"]},"sos.create":{"uri":"sos\/create","methods":["GET","HEAD"]},"sos.store":{"uri":"sos\/store","methods":["POST"]},"sos.edit":{"uri":"sos\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"sos.update":{"uri":"sos\/update\/{sos}","methods":["POST"],"parameters":["sos"],"bindings":{"sos":"id"}},"sos.updateStatus":{"uri":"sos\/update-status","methods":["POST"]},"sos.delete":{"uri":"sos\/delete\/{sos}","methods":["DELETE"],"parameters":["sos"],"bindings":{"sos":"id"}},"bank.index":{"uri":"driver-bank-info","methods":["GET","HEAD"]},"bank.list":{"uri":"driver-bank-info\/list","methods":["GET","HEAD"]},"bank.create":{"uri":"driver-bank-info\/create","methods":["GET","HEAD"]},"bank.store":{"uri":"driver-bank-info\/store","methods":["POST"]},"bank.edit":{"uri":"driver-bank-info\/edit\/{method}","methods":["GET","HEAD"],"parameters":["method"]},"bank.update":{"uri":"driver-bank-info\/update\/{method}","methods":["POST"],"parameters":["method"],"bindings":{"method":"id"}},"bank.updateStatus":{"uri":"driver-bank-info\/update-status","methods":["POST"]},"bank.delete":{"uri":"driver-bank-info\/delete\/{method}","methods":["DELETE"],"parameters":["method"],"bindings":{"method":"id"}},"promocode.index":{"uri":"promo-code","methods":["GET","HEAD"]},"promocode.list":{"uri":"promo-code\/list","methods":["GET","HEAD"]},"promocode.userList":{"uri":"promo-code\/userList","methods":["GET","HEAD"]},"promocode.create":{"uri":"promo-code\/create","methods":["GET","HEAD"]},"promocode.store":{"uri":"promo-code\/store","methods":["POST"]},"promocode.edit":{"uri":"promo-code\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"promocode.fetchServiceLocation":{"uri":"promo-code\/fetch","methods":["GET","HEAD"]},"promocode.update":{"uri":"promo-code\/update\/{promo}","methods":["POST"],"parameters":["promo"]},"promocode.delete":{"uri":"promo-code\/delete\/{promo}","methods":["DELETE"],"parameters":["promo"],"bindings":{"promo":"id"}},"promocode.updateStatus":{"uri":"promo-code\/update-status","methods":["POST"]},"pushnotification.index":{"uri":"push-notifications","methods":["GET","HEAD"]},"pushnotification.create":{"uri":"push-notifications\/create","methods":["GET","HEAD"]},"pushnotification.list":{"uri":"push-notifications\/list","methods":["GET","HEAD"]},"pushnotification.edit":{"uri":"push-notifications\/edit\/{notification}","methods":["GET","HEAD"],"parameters":["notification"],"bindings":{"notification":"id"}},"pushnotification.delete":{"uri":"push-notifications\/delete\/{notification}","methods":["DELETE"],"parameters":["notification"],"bindings":{"notification":"id"}},"pushnotification.send-push":{"uri":"push-notifications\/send-push","methods":["POST"]},"pushnotification.update":{"uri":"push-notifications\/update","methods":["POST"]},"cancellation.index":{"uri":"cancellation","methods":["GET","HEAD"]},"cancellation.list":{"uri":"cancellation\/list","methods":["GET","HEAD"]},"cancellation.create":{"uri":"cancellation\/create","methods":["GET","HEAD"]},"cancellation.store":{"uri":"cancellation\/store","methods":["POST"]},"cancellation.edit":{"uri":"cancellation\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"cancellation.update":{"uri":"cancellation\/update\/{cancellationReason}","methods":["POST"],"parameters":["cancellationReason"],"bindings":{"cancellationReason":"id"}},"cancellation.updateStatus":{"uri":"cancellation\/update-status","methods":["POST"]},"cancellation.delete":{"uri":"cancellation\/delete\/{cancellationReason}","methods":["DELETE"],"parameters":["cancellationReason"],"bindings":{"cancellationReason":"id"}},"faq.index":{"uri":"faq","methods":["GET","HEAD"]},"faq.list":{"uri":"faq\/list","methods":["GET","HEAD"]},"faq.create":{"uri":"faq\/create","methods":["GET","HEAD"]},"faq.store":{"uri":"faq\/store","methods":["POST"]},"faq.edit":{"uri":"faq\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"faq.update":{"uri":"faq\/update\/{faq}","methods":["POST"],"parameters":["faq"],"bindings":{"faq":"id"}},"faq.updateStatus":{"uri":"faq\/update-status","methods":["POST"]},"faq.delete":{"uri":"faq\/delete\/{faq}","methods":["DELETE"],"parameters":["faq"],"bindings":{"faq":"id"}},"complainttitle.index":{"uri":"complaint-title","methods":["GET","HEAD"]},"complainttitle.create":{"uri":"complaint-title\/create","methods":["GET","HEAD"]},"complainttitle.list":{"uri":"complaint-title\/list","methods":["GET","HEAD"]},"complainttitle.store":{"uri":"complaint-title\/store","methods":["POST"]},"complainttitle.edit":{"uri":"complaint-title\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"complainttitle.update":{"uri":"complaint-title\/update\/{complaintTitle}","methods":["POST"],"parameters":["complaintTitle"],"bindings":{"complaintTitle":"id"}},"complainttitle.updateStatus":{"uri":"complaint-title\/update-status","methods":["POST"]},"complainttitle.delete":{"uri":"complaint-title\/delete\/{complaintTitle}","methods":["DELETE"],"parameters":["complaintTitle"],"bindings":{"complaintTitle":"id"}},"drivergeneralcomplaint.driverGeneralComplaint":{"uri":"driver-complaint\/general-complaint","methods":["GET","HEAD"]},"driverGeneralComplaint.listComplaint":{"uri":"driver-complaint\/list","methods":["GET","HEAD"]},"driverGeneralComplaint.taken":{"uri":"driver-complaint\/taken\/{complaint}","methods":["GET","HEAD"],"parameters":["complaint"],"bindings":{"complaint":"id"}},"driverrequestcomplaint.driverRequestComplaint":{"uri":"driver-complaint\/request-complaint","methods":["GET","HEAD"]},"driverrequestcomplaint.requestListComplaint":{"uri":"driver-complaint\/driver-request-list","methods":["GET","HEAD"]},"usergeneralcomplaint.userGeneralComplaint":{"uri":"user-complaint\/general-complaint","methods":["GET","HEAD"]},"usergeneralcomplaint.listComplaint":{"uri":"user-complaint\/list","methods":["GET","HEAD"]},"usergeneralcomplaint.taken":{"uri":"user-complaint\/taken\/{complaint}","methods":["GET","HEAD"],"parameters":["complaint"],"bindings":{"complaint":"id"}},"userrequestcomplaint.userRequestComplaint":{"uri":"user-complaint\/request-complaint","methods":["GET","HEAD"]},"usergeneralcomplaint.requestComplaint":{"uri":"user-complaint\/request-list","methods":["GET","HEAD"]},"ownergeneralcomplaint.ownerGeneralComplaint":{"uri":"owner-complaint\/general-complaint","methods":["GET","HEAD"]},"ownergeneralcomplaint.listComplaint":{"uri":"owner-complaint\/list","methods":["GET","HEAD"]},"ownergeneralcomplaint.taken":{"uri":"owner-complaint\/taken\/{complaint}","methods":["GET","HEAD"],"parameters":["complaint"],"bindings":{"complaint":"id"}},"ownerrequestcomplaint.ownerRequestComplaint":{"uri":"owner-complaint\/request-complaint","methods":["GET","HEAD"]},"ownerrequestcomplaint.requestComplaint":{"uri":"owner-complaint\/request-list","methods":["GET","HEAD"]},"dispatch.index":{"uri":"dispatch","methods":["GET","HEAD"]},"dispatch.userRequestComplaint":{"uri":"dispatch\/request-complaint","methods":["GET","HEAD"]},"paymentgateway.index":{"uri":"payment-gateway","methods":["GET","HEAD"]},"paymentgateway.update":{"uri":"payment-gateway\/update","methods":["POST"]},"paymentgateway.updateStatus":{"uri":"payment-gateway\/update-statuss","methods":["POST"]},"smsgateway.index":{"uri":"sms-gateway","methods":["GET","HEAD"]},"firebase.index":{"uri":"firebase","methods":["GET","HEAD"]},"firebase.get":{"uri":"firebase\/get","methods":["GET","HEAD"]},"map.settings":{"uri":" map-settings","methods":["GET","HEAD"]},"mailconfiguration.index":{"uri":"mail-configuration","methods":["GET","HEAD"]},"mapapis.index":{"uri":"map-apis","methods":["GET","HEAD"]},"recaptcha.index":{"uri":"recaptcha","methods":["GET","HEAD"]},"mail-template.index":{"uri":"mail-template","methods":["GET","HEAD"]},"mail-template.create":{"uri":"mail-template\/create","methods":["GET","HEAD"]},"mail-template.list":{"uri":"mail-template\/list","methods":["GET","HEAD"]},"mail-template.store":{"uri":"mail-template\/store","methods":["POST"]},"mail-template.edit":{"uri":"mail-template\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"mail-template.update":{"uri":"mail-template\/update\/{emails}","methods":["POST"],"parameters":["emails"],"bindings":{"emails":"id"}},"mail-template.destroy":{"uri":"mail-template\/delete\/{emails}","methods":["DELETE"],"parameters":["emails"],"bindings":{"emails":"id"}},"map.heatmap":{"uri":"map\/heat_map","methods":["GET","HEAD"]},"map.godseye":{"uri":"map\/gods_eye","methods":["GET","HEAD"]},"map.openGodseye":{"uri":"map\/open_gods_eye","methods":["GET","HEAD"]},"approveddriver.Index":{"uri":"approved-drivers","methods":["GET","HEAD"]},"approveddriver.create":{"uri":"approved-drivers\/create","methods":["GET","HEAD"]},"approveddriver.store":{"uri":"approved-drivers\/store","methods":["POST"]},"approveddriver.edit":{"uri":"approved-drivers\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"approveddriver.update":{"uri":"approved-drivers\/update\/{driver}","methods":["POST"],"parameters":["driver"],"bindings":{"driver":"id"}},"approveddriver.disapprove":{"uri":"approved-drivers\/disapprove\/{driver}","methods":["POST"],"parameters":["driver"],"bindings":{"driver":"id"}},"approveddriver.viewProfile":{"uri":"approved-drivers\/view-profile\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"approveddriver.uploadDocument":{"uri":"approved-drivers\/document-upolad","methods":["GET","HEAD"]},"approveddriver.checkMobileExists":{"uri":"approved-drivers\/check-mobile\/{mobile}\/{driverId}","methods":["GET","HEAD"],"parameters":["mobile","driverId"]},"approveddriver.checkEmailExists":{"uri":"approved-drivers\/check-email\/{email}\/{driverId}","methods":["GET","HEAD"],"parameters":["email","driverId"]},"approveddriver.list":{"uri":"approved-drivers\/list","methods":["GET","HEAD"]},"approveddriver.ViewDocument":{"uri":"approved-drivers\/document\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"approveddriver.listDocument":{"uri":"approved-drivers\/document\/list\/{driverId}","methods":["GET","HEAD"],"parameters":["driverId"]},"approveddriver.documentUpload":{"uri":"approved-drivers\/document-upload\/{document}\/{driverId}","methods":["GET","HEAD"],"parameters":["document","driverId"],"bindings":{"document":"id","driverId":"id"}},"approveddriver.documentUploadStore":{"uri":"approved-drivers\/document-upload\/{document}\/{driverId}","methods":["POST"],"parameters":["document","driverId"],"bindings":{"document":"id","driverId":"id"}},"approveddriver.approveDriverDocument":{"uri":"approved-drivers\/document-toggle\/{documentId}\/{driverId}\/{status}","methods":["GET","HEAD"],"parameters":["documentId","driverId","status"]},"approveddriver.addAmount":{"uri":"approved-drivers\/wallet-add-amount\/{driver}","methods":["POST"],"parameters":["driver"],"bindings":{"driver":"id"}},"approveddriver.walletHistoryList":{"uri":"approved-drivers\/wallet-history\/list\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"approveddrivers.requestList":{"uri":"approved-drivers\/request\/list\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"pendingdriver.indexIndex":{"uri":"pending-drivers","methods":["GET","HEAD"]},"driverlevelup.index":{"uri":"drivers-levelup","methods":["GET","HEAD"]},"driverlevelup.list":{"uri":"drivers-levelup\/list","methods":["GET","HEAD"]},"approveddriver.driverLeveStore":{"uri":"drivers-levelup\/store","methods":["POST"]},"driverlevelup.edit":{"uri":"drivers-levelup\/edit\/{level}","methods":["GET","HEAD"],"parameters":["level"],"bindings":{"level":"id"}},"driverlevelup.settingsUpdate":{"uri":"drivers-levelup\/settingsUpdate","methods":["POST"]},"approveddriver.driverLevelUpdate":{"uri":"drivers-levelup\/update\/{level}","methods":["POST"],"parameters":["level"],"bindings":{"level":"id"}},"approveddriver.driverLevelDelete":{"uri":"drivers-levelup\/delete\/{level}","methods":["DELETE"],"parameters":["level"],"bindings":{"level":"id"}},"driverlevelup.create":{"uri":"drivers-levelup\/create","methods":["GET","HEAD"]},"driversrating.driverRatingIndex":{"uri":"drivers-rating","methods":["GET","HEAD"]},"driversrating.list":{"uri":"drivers-rating\/list","methods":["GET","HEAD"]},"driversrating.viewDriverRating":{"uri":"drivers-rating\/view-profile\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"driversRequestRating.history":{"uri":"drivers-rating\/request-list\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"deleterequestdrivers.index":{"uri":"delete-request-drivers","methods":["GET","HEAD"]},"deleterequestdrivers.list":{"uri":"delete-request-drivers\/list","methods":["GET","HEAD"]},"deleterequestdrivers.destroyDriver":{"uri":"delete-request-drivers\/delete\/{driver}","methods":["DELETE"],"parameters":["driver"],"bindings":{"driver":"id"}},"driverneededdocuments.Index":{"uri":"driver-needed-documents","methods":["GET","HEAD"]},"driverneededdocuments.list":{"uri":"driver-needed-documents\/list","methods":["GET","HEAD"]},"driverneededdocuments.Create":{"uri":"driver-needed-documents\/create","methods":["GET","HEAD"]},"driverneededdocuments.store":{"uri":"driver-needed-documents\/store","methods":["POST"]},"driverneededdocuments.Update":{"uri":"driver-needed-documents\/update\/{driverNeededDocument}","methods":["POST"],"parameters":["driverNeededDocument"],"bindings":{"driverNeededDocument":"id"}},"driverneededdocuments.edit":{"uri":"driver-needed-documents\/edit\/{driverNeededDocument}","methods":["GET","HEAD"],"parameters":["driverNeededDocument"],"bindings":{"driverNeededDocument":"id"}},"driverneededdocuments.updateDocumentStatus":{"uri":"driver-needed-documents\/update-status","methods":["POST"]},"driverneededdocuments.destroyDriverDocument":{"uri":"driver-needed-documents\/delete\/{driverNeededDocument}","methods":["DELETE"],"parameters":["driverNeededDocument"],"bindings":{"driverNeededDocument":"id"}},"withdrawalrequestdrivers.index":{"uri":"withdrawal-request-drivers","methods":["GET","HEAD"]},"withdrawalrequestdrivers.list":{"uri":"withdrawal-request-drivers\/list","methods":["GET","HEAD"]},"withdrawalrequestdrivers.ViewDetails":{"uri":"withdrawal-request-drivers\/view-in-detail\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"withdrawalrequestAmount.list":{"uri":"withdrawal-request-drivers\/amounts\/{driver_id}","methods":["GET","HEAD"],"parameters":["driver_id"],"bindings":{"driver_id":"id"}},"withdrawalrequest.updateStatus":{"uri":"withdrawal-request-drivers\/update-status","methods":["POST"]},"negativebalancedrivers.index":{"uri":"negative-balance-drivers","methods":["GET","HEAD"]},"negativebalancedrivers.list":{"uri":"negative-balance-drivers\/list","methods":["GET","HEAD"]},"negativebalancedrivers.payment":{"uri":"negative-balance-drivers\/view-profile\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"admins.index":{"uri":"admins","methods":["GET","HEAD"]},"admins.list":{"uri":"admins\/list","methods":["GET","HEAD"]},"admins.create":{"uri":"admins\/create","methods":["GET","HEAD"]},"admins.store":{"uri":"admins\/store","methods":["POST"]},"admins.update":{"uri":"admins\/update\/{adminDetail}","methods":["POST"],"parameters":["adminDetail"],"bindings":{"adminDetail":"id"}},"admins.edit":{"uri":"admins\/edit\/{adminDetail}","methods":["GET","HEAD"],"parameters":["adminDetail"],"bindings":{"adminDetail":"id"}},"admin.destroy":{"uri":"admins\/delete\/{adminDetail}","methods":["DELETE"],"parameters":["adminDetail"],"bindings":{"adminDetail":"id"}},"admin.updateDocumentStatus":{"uri":"admins\/update-status","methods":["POST"]},"report.userReport":{"uri":"report\/user-report","methods":["GET","HEAD"]},"report.userReportDownload":{"uri":"report\/user-report-download","methods":["POST"]},"report.driverReport":{"uri":"report\/driver-report","methods":["GET","HEAD"]},"report.driverReportDownload":{"uri":"report\/driver-report-download","methods":["POST"]},"report.getVehicletypes":{"uri":"report\/getVehicleTypes","methods":["GET","HEAD"]},"report.ownerReport":{"uri":"report\/owner-report","methods":["GET","HEAD"]},"report.ownerReportDownload":{"uri":"report\/owner-report-download","methods":["POST"]},"report.financeReport":{"uri":"report\/finance-report","methods":["GET","HEAD"]},"report.financeReportDownload":{"uri":"report\/finance-report-download","methods":["POST"]},"report.fleetReport":{"uri":"report\/fleet-report","methods":["GET","HEAD"]},"report.listFleet":{"uri":"report\/list-fleets","methods":["GET","HEAD"]},"report.fleetReportDownload":{"uri":"report\/fleet-report-download","methods":["POST"]},"report.driverDutyReport":{"uri":"report\/driver-duty-report","methods":["GET","HEAD"]},"report.driverDutyReportDownload":{"uri":"report\/driver-duty-report-download","methods":["POST"]},"report.getDrivers":{"uri":"report\/getDrivers","methods":["GET","HEAD"]},"manageowners.index":{"uri":"manage-owners","methods":["GET","HEAD"]},"manageowners.Create":{"uri":"manage-owners\/create","methods":["GET","HEAD"]},"manageowners.list":{"uri":"manage-owners\/list","methods":["GET","HEAD"]},"manageowners.store":{"uri":"manage-owners\/store","methods":["POST"]},"manageowners.edit":{"uri":"manage-owners\/edit\/{owner}","methods":["GET","HEAD"],"parameters":["owner"],"bindings":{"owner":"id"}},"manageowners.update":{"uri":"manage-owners\/update\/{owner}","methods":["POST"],"parameters":["owner"],"bindings":{"owner":"id"}},"manageowners.approve":{"uri":"manage-owners\/approve\/{owner}","methods":["POST"],"parameters":["owner"]},"manageowners.delete":{"uri":"manage-owners\/delete\/{owner}","methods":["DELETE"],"parameters":["owner"],"bindings":{"owner":"id"}},"manageowners.document":{"uri":"manage-owners\/document\/{owner}","methods":["GET","HEAD"],"parameters":["owner"],"bindings":{"owner":"id"}},"manageowners.checkEmailExists":{"uri":"manage-owners\/check-email","methods":["POST"]},"manageowners.checkMobileExists":{"uri":"manage-owners\/check-mobile","methods":["POST"]},"manageowners.listDocument":{"uri":"manage-owners\/document\/list\/{owner}","methods":["GET","HEAD"],"parameters":["owner"]},"manageowners.documentUpload":{"uri":"manage-owners\/document-upload\/{document}\/{ownerId}","methods":["GET","HEAD"],"parameters":["document","ownerId"],"bindings":{"document":"id","ownerId":"id"}},"manageowners.documentUploadStore":{"uri":"manage-owners\/document-upload\/{document}\/{ownerId}","methods":["POST"],"parameters":["document","ownerId"],"bindings":{"document":"id","ownerId":"id"}},"manageowners.approveOwnerDocument":{"uri":"manage-owners\/document-toggle\/{documentId}\/{ownerId}\/{status}","methods":["GET","HEAD"],"parameters":["documentId","ownerId","status"]},"manageowners.ownerPaymentHistory":{"uri":"manage-owners\/owner-payment-history\/{owner}","methods":["GET","HEAD"],"parameters":["owner"]},"withdrawalrequestOwners.index":{"uri":"withdrawal-request-owners","methods":["GET","HEAD"]},"withdrawalrequestOwners.list":{"uri":"withdrawal-request-owners\/list","methods":["GET","HEAD"]},"withdrawalrequestOwners.ViewDetails":{"uri":"withdrawal-request-owners\/view-in-detail\/{owner}","methods":["GET","HEAD"],"parameters":["owner"],"bindings":{"owner":"id"}},"withdrawalrequestOwner.list":{"uri":"withdrawal-request-owners\/amounts\/{owner_id}","methods":["GET","HEAD"],"parameters":["owner_id"],"bindings":{"owner_id":"id"}},"withdrawalrequestOwners.updateStatus":{"uri":"withdrawal-request-owners\/update-status","methods":["POST"]},"fleetneeddocuments.index":{"uri":"fleet-needed-documents","methods":["GET","HEAD"]},"fleetneeddocuments.list":{"uri":"fleet-needed-documents\/list","methods":["GET","HEAD"]},"fleetneeddocuments.create":{"uri":"fleet-needed-documents\/create","methods":["GET","HEAD"]},"fleetneeddocuments.store":{"uri":"fleet-needed-documents\/store","methods":["POST"]},"fleetneeddocuments.edit":{"uri":"fleet-needed-documents\/edit\/{document}","methods":["GET","HEAD"],"parameters":["document"],"bindings":{"document":"id"}},"fleetneeddocuments.update":{"uri":"fleet-needed-documents\/update\/{document}","methods":["POST"],"parameters":["document"],"bindings":{"document":"id"}},"fleetneeddocuments.updatestatus":{"uri":"fleet-needed-documents\/toggle","methods":["POST"]},"fleetneeddocuments.delete":{"uri":"fleet-needed-documents\/delete\/{document}","methods":["DELETE"],"parameters":["document"],"bindings":{"document":"id"}},"managefleets.index":{"uri":"manage-fleet","methods":["GET","HEAD"]},"managefleets.Create":{"uri":"manage-fleet\/create","methods":["GET","HEAD"]},"managefleets.list":{"uri":"manage-fleet\/list","methods":["GET","HEAD"]},"managefleets.store":{"uri":"manage-fleet\/store","methods":["POST"]},"managefleets.edit":{"uri":"manage-fleet\/edit\/{fleet}","methods":["GET","HEAD"],"parameters":["fleet"],"bindings":{"fleet":"id"}},"managefleets.update":{"uri":"manage-fleet\/update\/{fleet}","methods":["POST"],"parameters":["fleet"],"bindings":{"fleet":"id"}},"managefleets.assignDriver":{"uri":"manage-fleet\/assign\/{fleet}\/{driver}","methods":["POST"],"parameters":["fleet","driver"],"bindings":{"fleet":"id","driver":"id"}},"managefleets.approve":{"uri":"manage-fleet\/approve\/{fleet}","methods":["POST"],"parameters":["fleet"]},"managefleets.delete":{"uri":"manage-fleet\/delete\/{fleet}","methods":["DELETE"],"parameters":["fleet"],"bindings":{"fleet":"id"}},"managefleets.document":{"uri":"manage-fleet\/document\/{fleet}","methods":["GET","HEAD"],"parameters":["fleet"],"bindings":{"fleet":"id"}},"managefleets.listDocument":{"uri":"manage-fleet\/document\/list\/{fleet}","methods":["GET","HEAD"],"parameters":["fleet"]},"managefleets.listFleetDrivers":{"uri":"manage-fleet\/listFleetDriver\/{fleet}","methods":["GET","HEAD"],"parameters":["fleet"],"bindings":{"fleet":"id"}},"managefleets.documentUpload":{"uri":"manage-fleet\/document-upload\/{document}\/{fleetId}","methods":["GET","HEAD"],"parameters":["document","fleetId"],"bindings":{"document":"id","fleetId":"id"}},"managefleets.documentUploadStore":{"uri":"manage-fleet\/document-upload\/{document}\/{fleetId}","methods":["POST"],"parameters":["document","fleetId"],"bindings":{"document":"id","fleetId":"id"}},"managefleets.approvefleetDocument":{"uri":"manage-fleet\/document-toggle\/{documentId}\/{fleetId}\/{status}","methods":["GET","HEAD"],"parameters":["documentId","fleetId","status"]},"managefleets.fleetPaymentHistory":{"uri":"manage-fleet\/fleet-payment-history\/{fleet}","methods":["GET","HEAD"],"parameters":["fleet"]},"approvedFleetdriver.Index":{"uri":"fleet-drivers","methods":["GET","HEAD"]},"approvedFleetdriver.pendingIndex":{"uri":"fleet-drivers\/pending","methods":["GET","HEAD"]},"fleet-drivers.list":{"uri":"fleet-drivers\/list","methods":["GET","HEAD"]},"fleet-drivers.store":{"uri":"fleet-drivers\/store","methods":["POST"]},"fleet-drivers.edit":{"uri":"fleet-drivers\/edit\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"fleet-drivers.create":{"uri":"fleet-drivers\/create","methods":["GET","HEAD"]},"fleet-drivers.update":{"uri":"fleet-drivers\/update\/{driver}","methods":["POST"],"parameters":["driver"],"bindings":{"driver":"id"}},"fleet-drivers.approve":{"uri":"fleet-drivers\/approve\/{driver}","methods":["POST"],"parameters":["driver"],"bindings":{"driver":"id"}},"fleet-drivers.delete":{"uri":"fleet-drivers\/delete\/{driver}","methods":["DELETE"],"parameters":["driver"]},"fleet-drivers.listOwnersByLocation":{"uri":"fleet-drivers\/ownerList","methods":["GET","HEAD"]},"fleet-drivers.listOwners":{"uri":"fleet-drivers\/list-owners","methods":["GET","HEAD"]},"approvedFleetdriver.ViewDocument":{"uri":"fleet-drivers\/document\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"approvedFleetdriver.listDocument":{"uri":"fleet-drivers\/document\/list\/{driverId}","methods":["GET","HEAD"],"parameters":["driverId"]},"approvedFleetdriver.documentUpload":{"uri":"fleet-drivers\/document-upload\/{document}\/{driverId}","methods":["GET","HEAD"],"parameters":["document","driverId"],"bindings":{"document":"id","driverId":"id"}},"approvedFleetdriver.documentUploadStore":{"uri":"fleet-drivers\/document-upload-store\/{document}\/{driverId}","methods":["POST"],"parameters":["document","driverId"],"bindings":{"document":"id","driverId":"id"}},"approvedFleetdriver.approveDriverDocument":{"uri":"fleet-drivers\/document-toggle\/{documentId}\/{driverId}\/{status}","methods":["GET","HEAD"],"parameters":["documentId","driverId","status"]},"pendingdriver.fleetIndex":{"uri":"fleet-drivers\/pending-drivers","methods":["GET","HEAD"]},"goodstype.index":{"uri":"goods-type","methods":["GET","HEAD"]},"goodstype.create":{"uri":"goods-type\/create","methods":["GET","HEAD"]},"goodstype.store":{"uri":"goods-type\/store","methods":["POST"]},"goodstype.list":{"uri":"goods-type\/list","methods":["GET","HEAD"]},"goodstype.edit":{"uri":"goods-type\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"goodstype.update":{"uri":"goods-type\/update\/{goods_type}","methods":["POST"],"parameters":["goods_type"]},"goodstype.delete":{"uri":"goods-type\/delete\/{goods_type}","methods":["DELETE"],"parameters":["goods_type"]},"goodstype.updateStatus":{"uri":"goods-type\/update-status","methods":["POST"]},"bannerimage.index":{"uri":"banner-image","methods":["GET","HEAD"]},"bannerimage.create":{"uri":"banner-image\/create","methods":["GET","HEAD"]},"bannerimage.list":{"uri":"banner-image\/list","methods":["GET","HEAD"]},"bannerimage.update":{"uri":"banner-image\/update\/{bannerimage}","methods":["POST"],"parameters":["bannerimage"],"bindings":{"bannerimage":"id"}},"bannerimage.store":{"uri":"banner-image\/store","methods":["POST"]},"bannerimage.edit":{"uri":"banner-image\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"bannerimage.delete":{"uri":"banner-image\/delete\/{bannerimage}","methods":["DELETE"],"parameters":["bannerimage"],"bindings":{"bannerimage":"id"}},"bannerimage.updateStatus":{"uri":"banner-image\/update-status","methods":["POST"]},"ownerneeddocuments.index":{"uri":"owner-needed-documents","methods":["GET","HEAD"]},"ownerneeddocuments.list":{"uri":"owner-needed-documents\/list","methods":["GET","HEAD"]},"ownerneeddocuments.create":{"uri":"owner-needed-documents\/create","methods":["GET","HEAD"]},"ownerneeddocuments.store":{"uri":"owner-needed-documents\/store","methods":["POST"]},"ownerneeddocuments.edit":{"uri":"owner-needed-documents\/edit\/{document}","methods":["GET","HEAD"],"parameters":["document"],"bindings":{"document":"id"}},"ownerneeddocuments.update":{"uri":"owner-needed-documents\/update\/{document}","methods":["POST"],"parameters":["document"],"bindings":{"document":"id"}},"ownerneeddocuments.updatestatus":{"uri":"owner-needed-documents\/toggle","methods":["POST"]},"ownerneeddocuments.delete":{"uri":"owner-needed-documents\/delete\/{document}","methods":["DELETE"],"parameters":["document"],"bindings":{"document":"id"}},"onboardingscreen.index":{"uri":"onboarding-screen","methods":["GET","HEAD"]},"onboardingscreen.list":{"uri":"onboarding-screen\/list","methods":["GET","HEAD"]},"onboardingscreen.edit":{"uri":"onboarding-screen\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"onboardingscreen.update":{"uri":"onboarding-screen\/update\/{id}","methods":["POST"],"parameters":["id"]},"onboardingscreen.updateStatus":{"uri":"onboarding-screen\/update-status","methods":["POST"]},"invoiceconfiguration.index":{"uri":"invoice-configuration","methods":["GET","HEAD"]},"mapsettings.index":{"uri":"map-setting","methods":["GET","HEAD"]},"mapsettings.update":{"uri":"map-setting\/update","methods":["POST"]},"settings.generalSettings":{"uri":"general-settings","methods":["GET","HEAD"]},"settings.updateGeneralSettings":{"uri":"general-settings\/update","methods":["POST"]},"settings.updateStatus":{"uri":"general-settings\/update-status","methods":["POST"]},"settings.customizationSettings":{"uri":"customization-settings","methods":["GET","HEAD"]},"settings.updateCustomizationSettings":{"uri":"customization-settings\/update","methods":["POST"]},"settings.updateCustomizationStatus":{"uri":"customization-settings\/update-status","methods":["POST"]},"settings.transportRideSettings":{"uri":"transport-ride-settings","methods":["GET","HEAD"]},"settings.updateTransportSettings":{"uri":"transport-ride-settings\/update","methods":["POST"]},"settings.updateTransportStatus":{"uri":"transport-ride-settings\/update-status","methods":["POST"]},"settings.bidRideSettings":{"uri":"bid-ride-settings","methods":["GET","HEAD"]},"settings.updateBidSettings":{"uri":"bid-ride-settings\/update","methods":["POST"]},"settings.walletSettings":{"uri":"wallet-settings","methods":["GET","HEAD"]},"settings.updateWalletSettings":{"uri":"wallet-settings\/update","methods":["POST"]},"settings.referralSettings":{"uri":"referral-settings","methods":["GET","HEAD"]},"settings.updateRefrerralSettings":{"uri":"referral-settings\/update","methods":["POST"]},"triprequest.ridesRequest":{"uri":"rides-request","methods":["GET","HEAD"]},"triprequest.list":{"uri":"rides-request\/list","methods":["GET","HEAD"]},"triprequest.driverFind":{"uri":"rides-request\/driver\/{driver}","methods":["POST"],"parameters":["driver"],"bindings":{"driver":"id"}},"triprequest.viewDetails":{"uri":"rides-request\/view\/{requestmodel}","methods":["GET","HEAD"],"parameters":["requestmodel"],"bindings":{"requestmodel":"id"}},"triprequest.cancel":{"uri":"rides-request\/cancel\/{requestmodel}","methods":["GET","HEAD"],"parameters":["requestmodel"],"bindings":{"requestmodel":"id"}},"triprequest.sosDetail":{"uri":"rides-request\/detail\/{request}","methods":["GET","HEAD"],"parameters":["request"],"bindings":{"request":"id"}},"triprequest.scheduledRides":{"uri":"scheduled-rides","methods":["GET","HEAD"]},"triprequest.outstationRides":{"uri":"out-station-rides","methods":["GET","HEAD"]},"triprequest.cancellationRides":{"uri":"cancellation-rides","methods":["GET","HEAD"]},"triprequest.cancellationRidesViewDetails":{"uri":"cancellation-rides\/view","methods":["GET","HEAD"]},"deliveryTriprequest.ridesRequest":{"uri":"delivery-rides-request","methods":["GET","HEAD"]},"deliveryTriprequest.list":{"uri":"delivery-rides-request\/list","methods":["GET","HEAD"]},"deliveryTriprequest.driverFind":{"uri":"delivery-rides-request\/driver\/{driver}","methods":["POST"],"parameters":["driver"],"bindings":{"driver":"id"}},"deliveryTriprequest.viewDetails":{"uri":"delivery-rides-request\/view\/{requestmodel}","methods":["GET","HEAD"],"parameters":["requestmodel"],"bindings":{"requestmodel":"id"}},"deliveryTriprequest.cancel":{"uri":"delivery-rides-request\/cancel\/{requestmodel}","methods":["GET","HEAD"],"parameters":["requestmodel"],"bindings":{"requestmodel":"id"}},"delivery-scheduled-rides.scheduledRides":{"uri":"delivery-scheduled-rides","methods":["GET","HEAD"]},"delivery-scheduled-rides.viewDetails":{"uri":"delivery-scheduled-rides\/view","methods":["GET","HEAD"]},"deliveryrequest.cancellationRides":{"uri":"delivery-cancellation-rides","methods":["GET","HEAD"]},"deliveryrequest.viewCancelDetails":{"uri":"delivery-cancellation-rides\/view","methods":["GET","HEAD"]},"triprequest.ongoingRides":{"uri":"ongoing-rides","methods":["GET","HEAD"]},"triprequest.ongoingRideDetail":{"uri":"ongoing-rides\/find-ride\/{request}","methods":["GET","HEAD"],"parameters":["request"],"bindings":{"request":"id"}},"triprequest.assignView":{"uri":"ongoing-rides\/assign\/{request}","methods":["GET","HEAD"],"parameters":["request"],"bindings":{"request":"id"}},"triprequest.assignDriver":{"uri":"ongoing-rides\/assign-driver\/{requestmodel}","methods":["POST"],"parameters":["requestmodel"],"bindings":{"requestmodel":"id"}},"images.index":{"uri":"images","methods":["GET","HEAD"]},"images.create":{"uri":"images\/create","methods":["GET","HEAD"]},"images.update":{"uri":"images\/update","methods":["GET","HEAD"]},"users.index":{"uri":"users","methods":["GET","HEAD"]},"users.list":{"uri":"users\/list","methods":["GET","HEAD"]},"users.create":{"uri":"users\/create","methods":["GET","HEAD"]},"users.store":{"uri":"users\/store","methods":["POST"]},"users.edit":{"uri":"users\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"users.update":{"uri":"users\/update\/{user}","methods":["POST"],"parameters":["user"],"bindings":{"user":"id"}},"users.checkMobileExists":{"uri":"users\/check-mobile\/{mobile}\/{id}","methods":["GET","HEAD"],"parameters":["mobile","id"]},"users.checkEmailExists":{"uri":"users\/check-email\/{email}\/{id}","methods":["GET","HEAD"],"parameters":["email","id"]},"users.updateStatus":{"uri":"users\/update-status","methods":["POST"]},"users.view-profile":{"uri":"users\/view-profile\/{user}","methods":["GET","HEAD"],"parameters":["user"],"bindings":{"user":"id"}},"users.addAmount":{"uri":"users\/wallet-add-amount\/{user}","methods":["POST"],"parameters":["user"],"bindings":{"user":"id"}},"users.walletHistoryList":{"uri":"users\/wallet-history\/list\/{user}","methods":["GET","HEAD"],"parameters":["user"],"bindings":{"user":"id"}},"users.requestList":{"uri":"users\/request\/list\/{user}","methods":["GET","HEAD"],"parameters":["user"],"bindings":{"user":"id"}},"users.deleted-users":{"uri":"users\/deleted-user","methods":["GET","HEAD"]},"users.deletedList":{"uri":"users\/deletedList","methods":["GET","HEAD"]},"zone.index":{"uri":"zones","methods":["GET","HEAD"]},"zone.create":{"uri":"zones\/create","methods":["GET","HEAD"]},"zone.store":{"uri":"zones\/store","methods":["POST"]},"zone.fetch":{"uri":"zones\/fetch","methods":["GET","HEAD"]},"zone.list":{"uri":"zones\/list","methods":["GET","HEAD"]},"zone.edit":{"uri":"zones\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"zone.update":{"uri":"zones\/update\/{zone}","methods":["POST"],"parameters":["zone"],"bindings":{"zone":"id"}},"zone.updateStatus":{"uri":"zones\/update-status","methods":["POST"]},"zone.map":{"uri":"zones\/map\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"zone.surge":{"uri":"zones\/surge\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"zone.updateSurge":{"uri":"zones\/surge\/update\/{zone}","methods":["POST"],"parameters":["zone"],"bindings":{"zone":"id"}},"incentives.index":{"uri":"incentives","methods":["GET","HEAD"]},"incentives.update":{"uri":"incentives\/update","methods":["POST"]},"landing.index":{"uri":"\/","methods":["GET","HEAD"]},"landing.driver":{"uri":"driver","methods":["GET","HEAD"]},"landing.aboutus":{"uri":"aboutus","methods":["GET","HEAD"]},"landing.user":{"uri":"user","methods":["GET","HEAD"]},"landing.contact":{"uri":"contact","methods":["GET","HEAD"]},"landing.privacy":{"uri":"privacy","methods":["GET","HEAD"]},"landing.compliance":{"uri":"compliance","methods":["GET","HEAD"]},"landing.terms":{"uri":"terms","methods":["GET","HEAD"]},"landing.dmv":{"uri":"dmv","methods":["GET","HEAD"]},"web-booking.create-booking":{"uri":"create-booking","methods":["GET","HEAD"]},"web-booking.profile":{"uri":"profile","methods":["GET","HEAD"]},"user.updateProfile":{"uri":"user\/update-profile","methods":["POST"]},"web-booking.history":{"uri":"history","methods":["GET","HEAD"]},"history.viewDetails":{"uri":"history\/view\/{requestmodel}","methods":["GET","HEAD"],"parameters":["requestmodel"],"bindings":{"requestmodel":"id"}},"web-users.list":{"uri":"webuser\/list","methods":["GET","HEAD"]},"app.install":{"uri":"installation","methods":["GET","HEAD"]},"overall.menu":{"uri":"overall-menu","methods":["GET","HEAD"]},"chat.index":{"uri":"chat","methods":["GET","HEAD"]},"chat.fetchUser":{"uri":"chat\/fetch-user","methods":["GET","HEAD"]},"chat.messages":{"uri":"chat\/messages\/{conversationId}","methods":["GET","HEAD"],"parameters":["conversationId"],"bindings":{"conversationId":"id"}},"chat.sendAdmin":{"uri":"chat\/send-admin","methods":["POST"]},"chat.closeChat":{"uri":"chat\/close-chat","methods":["POST"]},"chat.fetchChats":{"uri":"chat\/fetchChat","methods":["GET","HEAD"]},"chat.readAll":{"uri":"chat\/readAll","methods":["GET","HEAD"]},"landing_home.index":{"uri":"landing-home","methods":["GET","HEAD"]},"landing_home.list":{"uri":"landing-home\/list","methods":["GET","HEAD"]},"landing_home.create":{"uri":"landing-home\/create","methods":["GET","HEAD"]},"landing_home.store":{"uri":"landing-home\/store","methods":["POST"]},"landing_home.edit":{"uri":"landing-home\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"landing_home.update":{"uri":"landing-home\/update\/{landingHome}","methods":["POST"],"parameters":["landingHome"],"bindings":{"landingHome":"id"}},"landing_home.delete":{"uri":"landing-home\/delete\/{landingHome}","methods":["DELETE"],"parameters":["landingHome"],"bindings":{"landingHome":"id"}},"landing_abouts.index":{"uri":"landing-aboutus","methods":["GET","HEAD"]},"landing_abouts.list":{"uri":"landing-aboutus\/list","methods":["GET","HEAD"]},"landing_abouts.create":{"uri":"landing-aboutus\/create","methods":["GET","HEAD"]},"landing_abouts.store":{"uri":"landing-aboutus\/store","methods":["POST"]},"landing_abouts.edit":{"uri":"landing-aboutus\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"landing_abouts.update":{"uri":"landing-aboutus\/update\/{landingAbouts}","methods":["POST"],"parameters":["landingAbouts"],"bindings":{"landingAbouts":"id"}},"landing_abouts.delete":{"uri":"landing-aboutus\/delete\/{landingAbouts}","methods":["DELETE"],"parameters":["landingAbouts"],"bindings":{"landingAbouts":"id"}},"landing_driver.index":{"uri":"landing-driver","methods":["GET","HEAD"]},"landing_driver.list":{"uri":"landing-driver\/list","methods":["GET","HEAD"]},"landing_driver.create":{"uri":"landing-driver\/create","methods":["GET","HEAD"]},"landing_driver.store":{"uri":"landing-driver\/store","methods":["POST"]},"landing_driver.edit":{"uri":"landing-driver\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"landing_driver.update":{"uri":"landing-driver\/update\/{landingDriver}","methods":["POST"],"parameters":["landingDriver"],"bindings":{"landingDriver":"id"}},"landing_driver.delete":{"uri":"landing-driver\/delete\/{landingDriver}","methods":["DELETE"],"parameters":["landingDriver"],"bindings":{"landingDriver":"id"}},"landing_user.index":{"uri":"landing-user","methods":["GET","HEAD"]},"landing_user.list":{"uri":"landing-user\/list","methods":["GET","HEAD"]},"landing_user.create":{"uri":"landing-user\/create","methods":["GET","HEAD"]},"landing_user.store":{"uri":"landing-user\/store","methods":["POST"]},"landing_user.edit":{"uri":"landing-user\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"landing_user.update":{"uri":"landing-user\/update\/{landingUser}","methods":["POST"],"parameters":["landingUser"],"bindings":{"landingUser":"id"}},"landing_user.delete":{"uri":"landing-user\/delete\/{landingUser}","methods":["DELETE"],"parameters":["landingUser"],"bindings":{"landingUser":"id"}},"landing_header.index":{"uri":"landing-header","methods":["GET","HEAD"]},"landing_header.list":{"uri":"landing-header\/list","methods":["GET","HEAD"]},"landing_header.create":{"uri":"landing-header\/create","methods":["GET","HEAD"]},"landing_header.store":{"uri":"landing-header\/store","methods":["POST"]},"landing_header.edit":{"uri":"landing-header\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"landing_header.update":{"uri":"landing-header\/update\/{landingHeader}","methods":["POST"],"parameters":["landingHeader"],"bindings":{"landingHeader":"id"}},"landing_header.delete":{"uri":"landing-header\/delete\/{landingHeader}","methods":["DELETE"],"parameters":["landingHeader"],"bindings":{"landingHeader":"id"}},"landing_quicklink.index":{"uri":"landing-quicklink","methods":["GET","HEAD"]},"landing_quicklink.list":{"uri":"landing-quicklink\/list","methods":["GET","HEAD"]},"landing_quicklink.create":{"uri":"landing-quicklink\/create","methods":["GET","HEAD"]},"landing_quicklink.store":{"uri":"landing-quicklink\/store","methods":["POST"]},"landing_quicklink.edit":{"uri":"landing-quicklink\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"landing_quicklink.update":{"uri":"landing-quicklink\/update\/{landingQuickLink}","methods":["POST"],"parameters":["landingQuickLink"],"bindings":{"landingQuickLink":"id"}},"landing_quicklink.delete":{"uri":"landing-quicklink\/delete\/{landingQuickLink}","methods":["DELETE"],"parameters":["landingQuickLink"],"bindings":{"landingQuickLink":"id"}},"landing_contact.index":{"uri":"landing-contact","methods":["GET","HEAD"]},"landing_contact.list":{"uri":"landing-contact\/list","methods":["GET","HEAD"]},"landing_contact.create":{"uri":"landing-contact\/create","methods":["GET","HEAD"]},"landing_contact.store":{"uri":"landing-contact\/store","methods":["POST"]},"landing_contact.edit":{"uri":"landing-contact\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"landing_contact.update":{"uri":"landing-contact\/update\/{landingContact}","methods":["POST"],"parameters":["landingContact"],"bindings":{"landingContact":"id"}},"landing_contact.delete":{"uri":"landing-contact\/delete\/{landingContact}","methods":["DELETE"],"parameters":["landingContact"],"bindings":{"landingContact":"id"}},"landing_contact.contactmessage":{"uri":"landing-contact\/contactmessage","methods":["POST"]},"paypal":{"uri":"paypal","methods":["GET","HEAD"]},"paypal.payment":{"uri":"paypal\/payment","methods":["POST"]},"paypal.payment.success":{"uri":"paypal\/payment\/success","methods":["GET","HEAD"]},"paypal.payment\/cancel":{"uri":"paypal\/payment\/cancel","methods":["GET","HEAD"]},"checkout.process":{"uri":"stripe-checkout","methods":["POST"]},"checkout.success":{"uri":"stripe-checkout-success","methods":["GET","HEAD"]},"checkout.failure":{"uri":"stripe-checkout-error","methods":["GET","HEAD"]},"flutterwave.success":{"uri":"flutterwave\/payment\/success","methods":["GET","HEAD"]},"paystack.success":{"uri":"paystack\/payment\/success","methods":["GET","HEAD"]},"khalti.success":{"uri":"khalti\/checkout","methods":["POST"]},"razorpay.success":{"uri":"payment-success","methods":["GET","HEAD"]},"mercadopago.success":{"uri":"mercadopago\/payment\/success","methods":["GET","HEAD"]},"ccavenue.checkout":{"uri":"ccavenue\/checkout","methods":["POST"]},"ccavenue.payment.response":{"uri":"ccavenue\/payment\/success","methods":["GET","HEAD"]},"ccavenue.payment.cancel":{"uri":"ccavenue\/payment\/failure","methods":["GET","HEAD"]}};
Object.assign(Ziggy.routes, routes);
})();
</script> <link rel="preload" as="style" href="http://localhost/new_vue_tagxi/public/build/assets/vendor-f749f9ab.css" /><link rel="preload" as="style" href="http://localhost/new_vue_tagxi/public/build/assets/app-5dc46014.css" /><link rel="preload" as="style" href="http://localhost/new_vue_tagxi/public/build/assets/404-8c21c3cf.css" /><link rel="modulepreload" href="http://localhost/new_vue_tagxi/public/build/assets/app-e076d658.js" /><link rel="modulepreload" href="http://localhost/new_vue_tagxi/public/build/assets/vendor-b6e68d09.js" /><link rel="modulepreload" href="http://localhost/new_vue_tagxi/public/build/assets/404-36789bcd.js" /><link rel="modulepreload" href="http://localhost/new_vue_tagxi/public/build/assets/error-ff2a41aa.js" /><link rel="stylesheet" href="http://localhost/new_vue_tagxi/public/build/assets/vendor-f749f9ab.css" /><link rel="stylesheet" href="http://localhost/new_vue_tagxi/public/build/assets/app-5dc46014.css" /><link rel="stylesheet" href="http://localhost/new_vue_tagxi/public/build/assets/404-8c21c3cf.css" /><script type="module" src="http://localhost/new_vue_tagxi/public/build/assets/app-e076d658.js"></script><script type="module" src="http://localhost/new_vue_tagxi/public/build/assets/404-36789bcd.js"></script>
</head>
<body>
<div id="app" data-page="{"component":"pages\/404","props":{"jetstream":{"canCreateTeams":false,"canManageTwoFactorAuthentication":true,"canUpdatePassword":true,"canUpdateProfileInformation":true,"hasEmailVerification":true,"flash":[],"hasAccountDeletionFeatures":true,"hasApiFeatures":true,"hasTeamFeatures":false,"hasTermsAndPrivacyPolicyFeature":true,"managesProfilePhotos":true},"auth":{"user":null},"errorBags":[],"errors":{},"flash":{"successMessage":null}},"url":"\/new_vue_tagxi\/public\/\/api\/terms-content","version":"6417c333e668146bc61c7fac84a8b3e4"}"></div> <script>
window.headers = [{"id":"d488f364-f420-4415-85a2-e4b1a154863b","header_logo":"Y8Xg6Y3kQHYzGSsVonTjE5aI1SZu8lEWhuXPsz5L.png","home":"Home","aboutus":"About Us","driver":"Driver","user":"User","contact":"Contact","book_now_btn":"Book Now","footer_logo":"TvZGGFUp14QFjqR2gJZPrJ28gt0EYakPBp75vj7C.png","footer_para":"Tagxi is a rideshare platform facilitating peer to peer ridesharing by means of connecting passengers who are in need of rides from drivers with available cars to get from point A to point B with the press of a button.","quick_links":"Quick Links","compliance":"Compliance","privacy":"Privacy Policy","terms":"Terms \u0026 Conditions","dmv":"DMV Check","user_app":"User Apps","user_play":"Play Store","user_play_link":"https:\/\/play.google.com\/store\/apps\/details?id=tagxi.bidding.user","user_apple":"Apple Store","user_apple_link":"https:\/\/apps.apple.com\/in\/app\/super-bidding-user\/id6449780067","driver_app":"Driver Apps","driver_play":"Play Store","driver_play_link":"https:\/\/play.google.com\/store\/apps\/details?id=tagxi.bidding.driver","driver_apple":"Apple Store","driver_apple_link":"https:\/\/apps.apple.com\/in\/app\/super-bidding-driver\/id6449778880","copy_rights":"2021 @ misoftwares","fb_link":"https:\/\/www.facebook.com\/","linkdin_link":"https:\/\/in.linkedin.com\/","x_link":"https:\/\/x.com\/","insta_link":"https:\/\/www.instagram.com\/","locale":"En","language":"English","direction":"ltr","created_at":null,"updated_at":"2024-11-20T18:33:22.000000Z","header_logo_url":"http:\/\/localhost\/new_vue_tagxi\/public\/storage\/uploads\/website\/images\/Y8Xg6Y3kQHYzGSsVonTjE5aI1SZu8lEWhuXPsz5L.png","footer_logo_url":"http:\/\/localhost\/new_vue_tagxi\/public\/storage\/uploads\/website\/images\/TvZGGFUp14QFjqR2gJZPrJ28gt0EYakPBp75vj7C.png"}];
window.recaptchaKey = null;
window.logo = "http:\/\/localhost\/new_vue_tagxi\/public\/storage\/uploads\/system-admin\/logo\/logo-light.png";
window.favicon = "http:\/\/localhost\/new_vue_tagxi\/public\/storage\/uploads\/system-admin\/logo\/logo-mini.png";
window.footer_content1 = "2024 \u00a9 Misoftwares.";
window.footer_content2 = "Design \u0026 Develop by Misoftwares";
</script>
</body>
<script>
document.addEventListener('DOMContentLoaded', function () {
// Check if window.favicon is available and set it dynamically
if (window.favicon) {
document.getElementById('dynamic-favicon').setAttribute('href', window.favicon);
} else {
// Fallback if the favicon is not set
document.getElementById('dynamic-favicon').setAttribute('href', 'http://localhost/new_vue_tagxi/public/image/favicon.ico');
}
});
</script>
<style>
:root{
--top_nav: #0ab39c;
--side_menu: #405189;
--side_menu_txt: #ffffff;
--loginbg: url('http://localhost/new_vue_tagxi/public/storage/uploads/system-admin/logo/workspace.jpg');
--owner_loginbg: url('http://localhost/new_vue_tagxi/public/storage/uploads/system-admin/logo/workspace.jpg');
}
</style>
</html>
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Compliance
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/compliance-content" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"locale\": \"ts_ZA\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/compliance-content"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"locale": "ts_ZA"
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
Show headers
cache-control: no-cache, private
content-type: application/json
link: <http://localhost/new_vue_tagxi/public/build/assets/vendor-f749f9ab.css>; rel="preload"; as="style", <http://localhost/new_vue_tagxi/public/build/assets/app-5dc46014.css>; rel="preload"; as="style", <http://localhost/new_vue_tagxi/public/build/assets/404-8c21c3cf.css>; rel="preload"; as="style", <http://localhost/new_vue_tagxi/public/build/assets/app-e076d658.js>; rel="modulepreload", <http://localhost/new_vue_tagxi/public/build/assets/vendor-b6e68d09.js>; rel="modulepreload", <http://localhost/new_vue_tagxi/public/build/assets/404-36789bcd.js>; rel="modulepreload", <http://localhost/new_vue_tagxi/public/build/assets/error-ff2a41aa.js>; rel="modulepreload"
vary: X-Inertia
set-cookie: XSRF-TOKEN=eyJpdiI6Ijgramx2Z3hMZ3JSbDliUU9vZjZyQkE9PSIsInZhbHVlIjoiYisxdTBjT3EvVS9yRGNUaS84WE4xU3BXQWVQQ0RBZmZ6YW9Ld2FqVUJiZ0RuRWNXR21jSmpabVUyQUxkTEo5WmJEQThDR3gzNE9DOG82MDlwcXhCcXFYN0hhbVBVckJJc1VqdnBUSFVsZktjUlNCWWJrdXFTZjBidVRRVlpieDkiLCJtYWMiOiIyMzI1ZDlkZThlNjU3OTJiZmFhYWMxMTUwYzZiNjQzY2U0NzY3ZTg4ZmFiNTE5MDUyNTBhYzQ3Mzg5YzRiNzQzIiwidGFnIjoiIn0%3D; expires=Tue, 26 Nov 2024 11:37:51 GMT; Max-Age=7200; path=/; samesite=lax; vuetaxi_session=eyJpdiI6ImVsOU5yK1A1cSt5UDQ3L09XNEk3YWc9PSIsInZhbHVlIjoiK0ZyVy8rdTdWZzlBYUxvcmY0RnhGMkxQSjR6M2ExZzdxd0VHQjRyaGRUQUdRNStRbi9jSU9xY0Fha0NSeEZlcTBRU3A2QlNnMjhaQ3Q2c0p2S2tuVEYxbXVWZ3E2ZHJ6bUdtZTZNVGxjN2FIVldFRTJKRmxpR3RSVmwxTms0disiLCJtYWMiOiI4YjNhM2JjMjNlMGNiYjY0OWIzNjFkZWFiMjVjYjE3MTc2OTQ4YjJkZDY5NjYwYjBhNDAxMzIyOWFjMDVlOWViIiwidGFnIjoiIn0%3D; expires=Tue, 26 Nov 2024 11:37:51 GMT; Max-Age=7200; path=/; httponly; samesite=lax
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title inertia>Misoftwares</title>
<meta name="description"
content="Taxi App - Fast, Safe, and Convenient Rides at Your Fingertips">
<meta name="keywords"
content="Taxi booking app admin panel,Taxi fleet management software,Taxi service admin panel features,Real-time taxi management dashboard">
<meta name="author" content="Misoftwares">
<!-- Social Media Meta Tags -->
<meta property="og:title" content="Misoftwares - Inertia + Vue & Laravel Admin & Dashboard Template">
<meta property="og:description"
content="Simplify web application development with Misoftwares, a feature-rich taxi app admin and dashboard template built with Inertia.js, Vue.js, and Laravel.">
<meta property="og:image" content="URL to the template's logo or featured image">
<meta property="og:url" content="URL to the template's webpage">
<meta name="twitter:card" content="summary_large_image">
<!-- App favicon -->
<!-- <link rel="shortcut icon" href="http://localhost/new_vue_tagxi/public/image/favicon.ico"> -->
<link rel="shortcut icon" id="dynamic-favicon" href="">
<!-- Firebase SDK -->
<!-- Use the Firebase 8.x version for CommonJS support -->
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-database.js"></script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/select2@4.1.0-beta.1/dist/css/select2.min.css" rel="stylesheet" />
<script src="https://cdn.jsdelivr.net/npm/select2@4.1.0-beta.1/dist/js/select2.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/driver.js@1.0.1/dist/driver.js.iife.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/driver.js@1.0.1/dist/driver.css"/>
<!-- Scripts -->
<script type="text/javascript">
(function () {
const routes = {"admin-login":{"uri":"login","methods":["POST"]},"logout":{"uri":"logout","methods":["POST"]},"password.request":{"uri":"forgot-password","methods":["GET","HEAD"]},"password.reset":{"uri":"reset-password\/{token}","methods":["GET","HEAD"],"parameters":["token"]},"password.email":{"uri":"forgot-password","methods":["POST"]},"password.update":{"uri":"reset-password","methods":["POST"]},"register":{"uri":"register","methods":["GET","HEAD"]},"verification.notice":{"uri":"email\/verify","methods":["GET","HEAD"]},"verification.verify":{"uri":"email\/verify\/{id}\/{hash}","methods":["GET","HEAD"],"parameters":["id","hash"]},"verification.send":{"uri":"email\/verification-notification","methods":["POST"]},"user-profile-information.update":{"uri":"user\/profile-information","methods":["PUT"]},"user-password.update":{"uri":"user\/password","methods":["PUT"]},"password.confirmation":{"uri":"user\/confirmed-password-status","methods":["GET","HEAD"]},"password.confirm":{"uri":"user\/confirm-password","methods":["POST"]},"two-factor.login":{"uri":"two-factor-challenge","methods":["GET","HEAD"]},"two-factor.enable":{"uri":"user\/two-factor-authentication","methods":["POST"]},"two-factor.confirm":{"uri":"user\/confirmed-two-factor-authentication","methods":["POST"]},"two-factor.disable":{"uri":"user\/two-factor-authentication","methods":["DELETE"]},"two-factor.qr-code":{"uri":"user\/two-factor-qr-code","methods":["GET","HEAD"]},"two-factor.secret-key":{"uri":"user\/two-factor-secret-key","methods":["GET","HEAD"]},"two-factor.recovery-codes":{"uri":"user\/two-factor-recovery-codes","methods":["GET","HEAD"]},"terms.show":{"uri":"terms-of-service","methods":["GET","HEAD"]},"policy.show":{"uri":"privacy-policy","methods":["GET","HEAD"]},"profile.show":{"uri":"user\/profile","methods":["GET","HEAD"]},"other-browser-sessions.destroy":{"uri":"user\/other-browser-sessions","methods":["DELETE"]},"current-user-photo.destroy":{"uri":"user\/profile-photo","methods":["DELETE"]},"current-user.destroy":{"uri":"user","methods":["DELETE"]},"api-tokens.index":{"uri":"user\/api-tokens","methods":["GET","HEAD"]},"api-tokens.store":{"uri":"user\/api-tokens","methods":["POST"]},"api-tokens.update":{"uri":"user\/api-tokens\/{token}","methods":["PUT"],"parameters":["token"]},"api-tokens.destroy":{"uri":"user\/api-tokens\/{token}","methods":["DELETE"],"parameters":["token"]},"sanctum.csrf-cookie":{"uri":"sanctum\/csrf-cookie","methods":["GET","HEAD"]},"ignition.healthCheck":{"uri":"_ignition\/health-check","methods":["GET","HEAD"]},"ignition.executeSolution":{"uri":"_ignition\/execute-solution","methods":["POST"]},"ignition.updateConfig":{"uri":"_ignition\/update-config","methods":["POST"]},"privacy-content":{"uri":"api\/privacy-content","methods":["GET","HEAD"]},"terms-content":{"uri":"api\/terms-content","methods":["GET","HEAD"]},"compliance-content":{"uri":"api\/compliance-content","methods":["GET","HEAD"]},"dmv-content":{"uri":"api\/dmv-content","methods":["GET","HEAD"]},"view-countries":{"uri":"countries","methods":["GET","HEAD"]},"list-countries":{"uri":"countries-list","methods":["GET","HEAD"]},"languages.index":{"uri":"languages","methods":["GET","HEAD"]},"languages.create":{"uri":"languages\/create","methods":["GET","HEAD"]},"languages.list":{"uri":"languages\/list","methods":["GET","HEAD"]},"languages.browse":{"uri":"languages\/browse\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"languages.store":{"uri":"languages\/store","methods":["POST"]},"language.update":{"uri":"languages\/update\/{language}","methods":["PUT"],"parameters":["language"]},"current-languages":{"uri":"current-languages","methods":["GET","HEAD"]},"current-locations":{"uri":"current-locations","methods":["GET","HEAD"]},"current-notifications":{"uri":"current-notifications","methods":["GET","HEAD"]},"read-notifications":{"uri":"mark-notification-as-read","methods":["POST"]},"spa-user-login":{"uri":"user\/login","methods":["POST"]},"spa-owner-login":{"uri":"owner-login","methods":["POST"]},"owner-login":{"uri":"owner-login","methods":["GET","HEAD"]},"user-register":{"uri":"user\/register","methods":["POST"]},"dashboard":{"uri":"dashboard","methods":["GET","HEAD"]},"owner.dashboard":{"uri":"owner-dashboard","methods":["GET","HEAD"]},"dashboard-todayEarnings":{"uri":"dashboard\/today-earnings","methods":["GET","HEAD"]},"dashboard-overallEarnings":{"uri":"dashboard\/overall-earnings","methods":["GET","HEAD"]},"dashboard-cancelChart":{"uri":"dashboard\/cancel-chart","methods":["GET","HEAD"]},"serviceLocation.dashboard":{"uri":"dashboard\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"owner.IndividualDashboard":{"uri":"individual-owner-dashboard","methods":["GET","HEAD"]},"servicelocation.index":{"uri":"service-locations","methods":["GET","HEAD"]},"fleet-login":{"uri":"owner\/login","methods":["POST"]},"roles.index":{"uri":"roles","methods":["GET","HEAD"]},"roles.list":{"uri":"roles\/list","methods":["GET","HEAD"]},"roles.store":{"uri":"roles","methods":["POST"]},"roles.update":{"uri":"roles\/{role}","methods":["PUT"],"parameters":["role"],"bindings":{"role":"id"}},"permission.index":{"uri":"permissions\/{permission}","methods":["GET","HEAD"],"parameters":["permission"]},"permission.store":{"uri":"permissions\/{role}","methods":["POST"],"parameters":["role"]},"roles1.index":{"uri":"roles1","methods":["GET","HEAD"]},"roles1.list":{"uri":"roles1\/list","methods":["GET","HEAD"]},"roles1.store":{"uri":"roles1","methods":["POST"]},"roles1.update":{"uri":"roles1\/update\/{role}","methods":["PUT"],"parameters":["role"],"bindings":{"role":"id"}},"role1.import":{"uri":"roles1\/import-csv","methods":["POST"]},"service-location-list":{"uri":"service-locations\/list","methods":["GET","HEAD"]},"servicelocation.create":{"uri":"service-locations\/create","methods":["GET","HEAD"]},"servicelocation.edit":{"uri":"service-locations\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"servicelocation.store":{"uri":"service-locations\/store","methods":["POST"]},"servicelocation.update":{"uri":"service-locations\/update\/{location}","methods":["POST"],"parameters":["location"],"bindings":{"location":"id"}},"servicelocation.toggle":{"uri":"service-locations\/toggle\/{location}","methods":["POST"],"parameters":["location"],"bindings":{"location":"id"}},"servicelocation.delete":{"uri":"service-locations\/delete\/{location}","methods":["DELETE"],"parameters":["location"],"bindings":{"location":"id"}},"rentalpackagetype.index":{"uri":"rental-package-types","methods":["GET","HEAD"]},"rentalpackagetype.create":{"uri":"rental-package-types\/create","methods":["GET","HEAD"]},"rentalpackagetype.store":{"uri":"rental-package-types\/store","methods":["POST"]},"rentalpackagetype.list":{"uri":"rental-package-types\/list","methods":["GET","HEAD"]},"rentalpackagetype.edit":{"uri":"rental-package-types\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"rentalpackagetype.update":{"uri":"rental-package-types\/update\/{packageType}","methods":["POST"],"parameters":["packageType"],"bindings":{"packageType":"id"}},"rentalpackagetype.updateStatus":{"uri":"rental-package-types\/update-status","methods":["POST"]},"rentalpackagetype.delete":{"uri":"rental-package-types\/delete\/{packageType}","methods":["DELETE"],"parameters":["packageType"],"bindings":{"packageType":"id"}},"category.index":{"uri":"category","methods":["GET","HEAD"]},"category.create":{"uri":"category\/create","methods":["GET","HEAD"]},"category.store":{"uri":"category\/store","methods":["POST"]},"category.list":{"uri":"category\/list","methods":["GET","HEAD"]},"category.edit":{"uri":"category\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"category.update":{"uri":"category\/update\/{category}","methods":["POST"],"parameters":["category"]},"category.updateStatus":{"uri":"category\/update-status","methods":["POST"]},"category.delete":{"uri":"category\/delete\/{category}","methods":["DELETE"],"parameters":["category"]},"setprice.index":{"uri":"set-prices","methods":["GET","HEAD"]},"setprice.create":{"uri":"set-prices\/create","methods":["GET","HEAD"]},"setprice.vehiclelist":{"uri":"set-prices\/vehicle_types","methods":["GET","HEAD"]},"setprice.store":{"uri":"set-prices\/store","methods":["POST"]},"setprice.list":{"uri":"set-prices\/list","methods":["GET","HEAD"]},"setprice.edit":{"uri":"set-prices\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"setprice.update":{"uri":"set-prices\/update\/{zoneTypePrice}","methods":["POST"],"parameters":["zoneTypePrice"],"bindings":{"zoneTypePrice":"id"}},"setprice.delete":{"uri":"set-prices\/delete\/{id}","methods":["DELETE"],"parameters":["id"]},"setprice.updateStatus":{"uri":"set-prices\/update-status","methods":["POST"]},"setprice.packageIndex":{"uri":"set-prices\/packages\/{zoneType}","methods":["GET","HEAD"],"parameters":["zoneType"],"bindings":{"zoneType":"id"}},"setprice.packageList":{"uri":"set-prices\/packages\/list\/{zoneTypePrice}","methods":["GET","HEAD"],"parameters":["zoneTypePrice"],"bindings":{"zoneTypePrice":"id"}},"setprice.package-create":{"uri":"set-prices\/packages\/create\/{zoneTypePrice}","methods":["GET","HEAD"],"parameters":["zoneTypePrice"],"bindings":{"zoneTypePrice":"id"}},"setprice.packageStore":{"uri":"set-prices\/packages\/store","methods":["POST"]},"setprice.package-edit":{"uri":"set-prices\/packages\/edit\/{zoneTypePackage}","methods":["GET","HEAD"],"parameters":["zoneTypePackage"],"bindings":{"zoneTypePackage":"id"}},"setprice.package-update":{"uri":"set-prices\/packages\/update\/{zoneTypePackage}","methods":["POST"],"parameters":["zoneTypePackage"],"bindings":{"zoneTypePackage":"id"}},"setprice.package-delete":{"uri":"set-prices\/packages\/delete\/{zoneTypePackage}","methods":["DELETE"],"parameters":["zoneTypePackage"],"bindings":{"zoneTypePackage":"id"}},"setprice.updatePackageStatus":{"uri":"set-prices\/packages\/update-status","methods":["POST"]},"vehicletype.index":{"uri":"vehicle_type","methods":["GET","HEAD"]},"vehicletype.create":{"uri":"vehicle_type\/create","methods":["GET","HEAD"]},"vehicletype.store":{"uri":"vehicle_type\/store","methods":["POST"]},"vehicletype.list":{"uri":"vehicle_type\/list","methods":["GET","HEAD"]},"vehicletype.edit":{"uri":"vehicle_type\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"vehicletype.update":{"uri":"vehicle_type\/update\/{vehicle_type}","methods":["POST"],"parameters":["vehicle_type"],"bindings":{"vehicle_type":"id"}},"vehicletype.delete":{"uri":"vehicle_type\/delete\/{vehicle_type}","methods":["DELETE"],"parameters":["vehicle_type"],"bindings":{"vehicle_type":"id"}},"vehicletype.updateStatus":{"uri":"vehicle_type\/update-status","methods":["POST"]},"vehicletype.getCategory":{"uri":"vehicle_type\/getCategory","methods":["GET","HEAD"]},"vehiclemodel.index":{"uri":"vehicle-model","methods":["GET","HEAD"]},"vehiclemodel.create":{"uri":"vehicle-model\/create","methods":["GET","HEAD"]},"vehiclemodel.update":{"uri":"vehicle-model\/update","methods":["GET","HEAD"]},"vehiclemodel.test":{"uri":"vehicle-model\/test-url","methods":["GET","HEAD"]},"sos.index":{"uri":"sos","methods":["GET","HEAD"]},"sos.list":{"uri":"sos\/list","methods":["GET","HEAD"]},"sos.create":{"uri":"sos\/create","methods":["GET","HEAD"]},"sos.store":{"uri":"sos\/store","methods":["POST"]},"sos.edit":{"uri":"sos\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"sos.update":{"uri":"sos\/update\/{sos}","methods":["POST"],"parameters":["sos"],"bindings":{"sos":"id"}},"sos.updateStatus":{"uri":"sos\/update-status","methods":["POST"]},"sos.delete":{"uri":"sos\/delete\/{sos}","methods":["DELETE"],"parameters":["sos"],"bindings":{"sos":"id"}},"bank.index":{"uri":"driver-bank-info","methods":["GET","HEAD"]},"bank.list":{"uri":"driver-bank-info\/list","methods":["GET","HEAD"]},"bank.create":{"uri":"driver-bank-info\/create","methods":["GET","HEAD"]},"bank.store":{"uri":"driver-bank-info\/store","methods":["POST"]},"bank.edit":{"uri":"driver-bank-info\/edit\/{method}","methods":["GET","HEAD"],"parameters":["method"]},"bank.update":{"uri":"driver-bank-info\/update\/{method}","methods":["POST"],"parameters":["method"],"bindings":{"method":"id"}},"bank.updateStatus":{"uri":"driver-bank-info\/update-status","methods":["POST"]},"bank.delete":{"uri":"driver-bank-info\/delete\/{method}","methods":["DELETE"],"parameters":["method"],"bindings":{"method":"id"}},"promocode.index":{"uri":"promo-code","methods":["GET","HEAD"]},"promocode.list":{"uri":"promo-code\/list","methods":["GET","HEAD"]},"promocode.userList":{"uri":"promo-code\/userList","methods":["GET","HEAD"]},"promocode.create":{"uri":"promo-code\/create","methods":["GET","HEAD"]},"promocode.store":{"uri":"promo-code\/store","methods":["POST"]},"promocode.edit":{"uri":"promo-code\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"promocode.fetchServiceLocation":{"uri":"promo-code\/fetch","methods":["GET","HEAD"]},"promocode.update":{"uri":"promo-code\/update\/{promo}","methods":["POST"],"parameters":["promo"]},"promocode.delete":{"uri":"promo-code\/delete\/{promo}","methods":["DELETE"],"parameters":["promo"],"bindings":{"promo":"id"}},"promocode.updateStatus":{"uri":"promo-code\/update-status","methods":["POST"]},"pushnotification.index":{"uri":"push-notifications","methods":["GET","HEAD"]},"pushnotification.create":{"uri":"push-notifications\/create","methods":["GET","HEAD"]},"pushnotification.list":{"uri":"push-notifications\/list","methods":["GET","HEAD"]},"pushnotification.edit":{"uri":"push-notifications\/edit\/{notification}","methods":["GET","HEAD"],"parameters":["notification"],"bindings":{"notification":"id"}},"pushnotification.delete":{"uri":"push-notifications\/delete\/{notification}","methods":["DELETE"],"parameters":["notification"],"bindings":{"notification":"id"}},"pushnotification.send-push":{"uri":"push-notifications\/send-push","methods":["POST"]},"pushnotification.update":{"uri":"push-notifications\/update","methods":["POST"]},"cancellation.index":{"uri":"cancellation","methods":["GET","HEAD"]},"cancellation.list":{"uri":"cancellation\/list","methods":["GET","HEAD"]},"cancellation.create":{"uri":"cancellation\/create","methods":["GET","HEAD"]},"cancellation.store":{"uri":"cancellation\/store","methods":["POST"]},"cancellation.edit":{"uri":"cancellation\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"cancellation.update":{"uri":"cancellation\/update\/{cancellationReason}","methods":["POST"],"parameters":["cancellationReason"],"bindings":{"cancellationReason":"id"}},"cancellation.updateStatus":{"uri":"cancellation\/update-status","methods":["POST"]},"cancellation.delete":{"uri":"cancellation\/delete\/{cancellationReason}","methods":["DELETE"],"parameters":["cancellationReason"],"bindings":{"cancellationReason":"id"}},"faq.index":{"uri":"faq","methods":["GET","HEAD"]},"faq.list":{"uri":"faq\/list","methods":["GET","HEAD"]},"faq.create":{"uri":"faq\/create","methods":["GET","HEAD"]},"faq.store":{"uri":"faq\/store","methods":["POST"]},"faq.edit":{"uri":"faq\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"faq.update":{"uri":"faq\/update\/{faq}","methods":["POST"],"parameters":["faq"],"bindings":{"faq":"id"}},"faq.updateStatus":{"uri":"faq\/update-status","methods":["POST"]},"faq.delete":{"uri":"faq\/delete\/{faq}","methods":["DELETE"],"parameters":["faq"],"bindings":{"faq":"id"}},"complainttitle.index":{"uri":"complaint-title","methods":["GET","HEAD"]},"complainttitle.create":{"uri":"complaint-title\/create","methods":["GET","HEAD"]},"complainttitle.list":{"uri":"complaint-title\/list","methods":["GET","HEAD"]},"complainttitle.store":{"uri":"complaint-title\/store","methods":["POST"]},"complainttitle.edit":{"uri":"complaint-title\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"complainttitle.update":{"uri":"complaint-title\/update\/{complaintTitle}","methods":["POST"],"parameters":["complaintTitle"],"bindings":{"complaintTitle":"id"}},"complainttitle.updateStatus":{"uri":"complaint-title\/update-status","methods":["POST"]},"complainttitle.delete":{"uri":"complaint-title\/delete\/{complaintTitle}","methods":["DELETE"],"parameters":["complaintTitle"],"bindings":{"complaintTitle":"id"}},"drivergeneralcomplaint.driverGeneralComplaint":{"uri":"driver-complaint\/general-complaint","methods":["GET","HEAD"]},"driverGeneralComplaint.listComplaint":{"uri":"driver-complaint\/list","methods":["GET","HEAD"]},"driverGeneralComplaint.taken":{"uri":"driver-complaint\/taken\/{complaint}","methods":["GET","HEAD"],"parameters":["complaint"],"bindings":{"complaint":"id"}},"driverrequestcomplaint.driverRequestComplaint":{"uri":"driver-complaint\/request-complaint","methods":["GET","HEAD"]},"driverrequestcomplaint.requestListComplaint":{"uri":"driver-complaint\/driver-request-list","methods":["GET","HEAD"]},"usergeneralcomplaint.userGeneralComplaint":{"uri":"user-complaint\/general-complaint","methods":["GET","HEAD"]},"usergeneralcomplaint.listComplaint":{"uri":"user-complaint\/list","methods":["GET","HEAD"]},"usergeneralcomplaint.taken":{"uri":"user-complaint\/taken\/{complaint}","methods":["GET","HEAD"],"parameters":["complaint"],"bindings":{"complaint":"id"}},"userrequestcomplaint.userRequestComplaint":{"uri":"user-complaint\/request-complaint","methods":["GET","HEAD"]},"usergeneralcomplaint.requestComplaint":{"uri":"user-complaint\/request-list","methods":["GET","HEAD"]},"ownergeneralcomplaint.ownerGeneralComplaint":{"uri":"owner-complaint\/general-complaint","methods":["GET","HEAD"]},"ownergeneralcomplaint.listComplaint":{"uri":"owner-complaint\/list","methods":["GET","HEAD"]},"ownergeneralcomplaint.taken":{"uri":"owner-complaint\/taken\/{complaint}","methods":["GET","HEAD"],"parameters":["complaint"],"bindings":{"complaint":"id"}},"ownerrequestcomplaint.ownerRequestComplaint":{"uri":"owner-complaint\/request-complaint","methods":["GET","HEAD"]},"ownerrequestcomplaint.requestComplaint":{"uri":"owner-complaint\/request-list","methods":["GET","HEAD"]},"dispatch.index":{"uri":"dispatch","methods":["GET","HEAD"]},"dispatch.userRequestComplaint":{"uri":"dispatch\/request-complaint","methods":["GET","HEAD"]},"paymentgateway.index":{"uri":"payment-gateway","methods":["GET","HEAD"]},"paymentgateway.update":{"uri":"payment-gateway\/update","methods":["POST"]},"paymentgateway.updateStatus":{"uri":"payment-gateway\/update-statuss","methods":["POST"]},"smsgateway.index":{"uri":"sms-gateway","methods":["GET","HEAD"]},"firebase.index":{"uri":"firebase","methods":["GET","HEAD"]},"firebase.get":{"uri":"firebase\/get","methods":["GET","HEAD"]},"map.settings":{"uri":" map-settings","methods":["GET","HEAD"]},"mailconfiguration.index":{"uri":"mail-configuration","methods":["GET","HEAD"]},"mapapis.index":{"uri":"map-apis","methods":["GET","HEAD"]},"recaptcha.index":{"uri":"recaptcha","methods":["GET","HEAD"]},"mail-template.index":{"uri":"mail-template","methods":["GET","HEAD"]},"mail-template.create":{"uri":"mail-template\/create","methods":["GET","HEAD"]},"mail-template.list":{"uri":"mail-template\/list","methods":["GET","HEAD"]},"mail-template.store":{"uri":"mail-template\/store","methods":["POST"]},"mail-template.edit":{"uri":"mail-template\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"mail-template.update":{"uri":"mail-template\/update\/{emails}","methods":["POST"],"parameters":["emails"],"bindings":{"emails":"id"}},"mail-template.destroy":{"uri":"mail-template\/delete\/{emails}","methods":["DELETE"],"parameters":["emails"],"bindings":{"emails":"id"}},"map.heatmap":{"uri":"map\/heat_map","methods":["GET","HEAD"]},"map.godseye":{"uri":"map\/gods_eye","methods":["GET","HEAD"]},"map.openGodseye":{"uri":"map\/open_gods_eye","methods":["GET","HEAD"]},"approveddriver.Index":{"uri":"approved-drivers","methods":["GET","HEAD"]},"approveddriver.create":{"uri":"approved-drivers\/create","methods":["GET","HEAD"]},"approveddriver.store":{"uri":"approved-drivers\/store","methods":["POST"]},"approveddriver.edit":{"uri":"approved-drivers\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"approveddriver.update":{"uri":"approved-drivers\/update\/{driver}","methods":["POST"],"parameters":["driver"],"bindings":{"driver":"id"}},"approveddriver.disapprove":{"uri":"approved-drivers\/disapprove\/{driver}","methods":["POST"],"parameters":["driver"],"bindings":{"driver":"id"}},"approveddriver.viewProfile":{"uri":"approved-drivers\/view-profile\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"approveddriver.uploadDocument":{"uri":"approved-drivers\/document-upolad","methods":["GET","HEAD"]},"approveddriver.checkMobileExists":{"uri":"approved-drivers\/check-mobile\/{mobile}\/{driverId}","methods":["GET","HEAD"],"parameters":["mobile","driverId"]},"approveddriver.checkEmailExists":{"uri":"approved-drivers\/check-email\/{email}\/{driverId}","methods":["GET","HEAD"],"parameters":["email","driverId"]},"approveddriver.list":{"uri":"approved-drivers\/list","methods":["GET","HEAD"]},"approveddriver.ViewDocument":{"uri":"approved-drivers\/document\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"approveddriver.listDocument":{"uri":"approved-drivers\/document\/list\/{driverId}","methods":["GET","HEAD"],"parameters":["driverId"]},"approveddriver.documentUpload":{"uri":"approved-drivers\/document-upload\/{document}\/{driverId}","methods":["GET","HEAD"],"parameters":["document","driverId"],"bindings":{"document":"id","driverId":"id"}},"approveddriver.documentUploadStore":{"uri":"approved-drivers\/document-upload\/{document}\/{driverId}","methods":["POST"],"parameters":["document","driverId"],"bindings":{"document":"id","driverId":"id"}},"approveddriver.approveDriverDocument":{"uri":"approved-drivers\/document-toggle\/{documentId}\/{driverId}\/{status}","methods":["GET","HEAD"],"parameters":["documentId","driverId","status"]},"approveddriver.addAmount":{"uri":"approved-drivers\/wallet-add-amount\/{driver}","methods":["POST"],"parameters":["driver"],"bindings":{"driver":"id"}},"approveddriver.walletHistoryList":{"uri":"approved-drivers\/wallet-history\/list\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"approveddrivers.requestList":{"uri":"approved-drivers\/request\/list\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"pendingdriver.indexIndex":{"uri":"pending-drivers","methods":["GET","HEAD"]},"driverlevelup.index":{"uri":"drivers-levelup","methods":["GET","HEAD"]},"driverlevelup.list":{"uri":"drivers-levelup\/list","methods":["GET","HEAD"]},"approveddriver.driverLeveStore":{"uri":"drivers-levelup\/store","methods":["POST"]},"driverlevelup.edit":{"uri":"drivers-levelup\/edit\/{level}","methods":["GET","HEAD"],"parameters":["level"],"bindings":{"level":"id"}},"driverlevelup.settingsUpdate":{"uri":"drivers-levelup\/settingsUpdate","methods":["POST"]},"approveddriver.driverLevelUpdate":{"uri":"drivers-levelup\/update\/{level}","methods":["POST"],"parameters":["level"],"bindings":{"level":"id"}},"approveddriver.driverLevelDelete":{"uri":"drivers-levelup\/delete\/{level}","methods":["DELETE"],"parameters":["level"],"bindings":{"level":"id"}},"driverlevelup.create":{"uri":"drivers-levelup\/create","methods":["GET","HEAD"]},"driversrating.driverRatingIndex":{"uri":"drivers-rating","methods":["GET","HEAD"]},"driversrating.list":{"uri":"drivers-rating\/list","methods":["GET","HEAD"]},"driversrating.viewDriverRating":{"uri":"drivers-rating\/view-profile\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"driversRequestRating.history":{"uri":"drivers-rating\/request-list\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"deleterequestdrivers.index":{"uri":"delete-request-drivers","methods":["GET","HEAD"]},"deleterequestdrivers.list":{"uri":"delete-request-drivers\/list","methods":["GET","HEAD"]},"deleterequestdrivers.destroyDriver":{"uri":"delete-request-drivers\/delete\/{driver}","methods":["DELETE"],"parameters":["driver"],"bindings":{"driver":"id"}},"driverneededdocuments.Index":{"uri":"driver-needed-documents","methods":["GET","HEAD"]},"driverneededdocuments.list":{"uri":"driver-needed-documents\/list","methods":["GET","HEAD"]},"driverneededdocuments.Create":{"uri":"driver-needed-documents\/create","methods":["GET","HEAD"]},"driverneededdocuments.store":{"uri":"driver-needed-documents\/store","methods":["POST"]},"driverneededdocuments.Update":{"uri":"driver-needed-documents\/update\/{driverNeededDocument}","methods":["POST"],"parameters":["driverNeededDocument"],"bindings":{"driverNeededDocument":"id"}},"driverneededdocuments.edit":{"uri":"driver-needed-documents\/edit\/{driverNeededDocument}","methods":["GET","HEAD"],"parameters":["driverNeededDocument"],"bindings":{"driverNeededDocument":"id"}},"driverneededdocuments.updateDocumentStatus":{"uri":"driver-needed-documents\/update-status","methods":["POST"]},"driverneededdocuments.destroyDriverDocument":{"uri":"driver-needed-documents\/delete\/{driverNeededDocument}","methods":["DELETE"],"parameters":["driverNeededDocument"],"bindings":{"driverNeededDocument":"id"}},"withdrawalrequestdrivers.index":{"uri":"withdrawal-request-drivers","methods":["GET","HEAD"]},"withdrawalrequestdrivers.list":{"uri":"withdrawal-request-drivers\/list","methods":["GET","HEAD"]},"withdrawalrequestdrivers.ViewDetails":{"uri":"withdrawal-request-drivers\/view-in-detail\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"withdrawalrequestAmount.list":{"uri":"withdrawal-request-drivers\/amounts\/{driver_id}","methods":["GET","HEAD"],"parameters":["driver_id"],"bindings":{"driver_id":"id"}},"withdrawalrequest.updateStatus":{"uri":"withdrawal-request-drivers\/update-status","methods":["POST"]},"negativebalancedrivers.index":{"uri":"negative-balance-drivers","methods":["GET","HEAD"]},"negativebalancedrivers.list":{"uri":"negative-balance-drivers\/list","methods":["GET","HEAD"]},"negativebalancedrivers.payment":{"uri":"negative-balance-drivers\/view-profile\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"admins.index":{"uri":"admins","methods":["GET","HEAD"]},"admins.list":{"uri":"admins\/list","methods":["GET","HEAD"]},"admins.create":{"uri":"admins\/create","methods":["GET","HEAD"]},"admins.store":{"uri":"admins\/store","methods":["POST"]},"admins.update":{"uri":"admins\/update\/{adminDetail}","methods":["POST"],"parameters":["adminDetail"],"bindings":{"adminDetail":"id"}},"admins.edit":{"uri":"admins\/edit\/{adminDetail}","methods":["GET","HEAD"],"parameters":["adminDetail"],"bindings":{"adminDetail":"id"}},"admin.destroy":{"uri":"admins\/delete\/{adminDetail}","methods":["DELETE"],"parameters":["adminDetail"],"bindings":{"adminDetail":"id"}},"admin.updateDocumentStatus":{"uri":"admins\/update-status","methods":["POST"]},"report.userReport":{"uri":"report\/user-report","methods":["GET","HEAD"]},"report.userReportDownload":{"uri":"report\/user-report-download","methods":["POST"]},"report.driverReport":{"uri":"report\/driver-report","methods":["GET","HEAD"]},"report.driverReportDownload":{"uri":"report\/driver-report-download","methods":["POST"]},"report.getVehicletypes":{"uri":"report\/getVehicleTypes","methods":["GET","HEAD"]},"report.ownerReport":{"uri":"report\/owner-report","methods":["GET","HEAD"]},"report.ownerReportDownload":{"uri":"report\/owner-report-download","methods":["POST"]},"report.financeReport":{"uri":"report\/finance-report","methods":["GET","HEAD"]},"report.financeReportDownload":{"uri":"report\/finance-report-download","methods":["POST"]},"report.fleetReport":{"uri":"report\/fleet-report","methods":["GET","HEAD"]},"report.listFleet":{"uri":"report\/list-fleets","methods":["GET","HEAD"]},"report.fleetReportDownload":{"uri":"report\/fleet-report-download","methods":["POST"]},"report.driverDutyReport":{"uri":"report\/driver-duty-report","methods":["GET","HEAD"]},"report.driverDutyReportDownload":{"uri":"report\/driver-duty-report-download","methods":["POST"]},"report.getDrivers":{"uri":"report\/getDrivers","methods":["GET","HEAD"]},"manageowners.index":{"uri":"manage-owners","methods":["GET","HEAD"]},"manageowners.Create":{"uri":"manage-owners\/create","methods":["GET","HEAD"]},"manageowners.list":{"uri":"manage-owners\/list","methods":["GET","HEAD"]},"manageowners.store":{"uri":"manage-owners\/store","methods":["POST"]},"manageowners.edit":{"uri":"manage-owners\/edit\/{owner}","methods":["GET","HEAD"],"parameters":["owner"],"bindings":{"owner":"id"}},"manageowners.update":{"uri":"manage-owners\/update\/{owner}","methods":["POST"],"parameters":["owner"],"bindings":{"owner":"id"}},"manageowners.approve":{"uri":"manage-owners\/approve\/{owner}","methods":["POST"],"parameters":["owner"]},"manageowners.delete":{"uri":"manage-owners\/delete\/{owner}","methods":["DELETE"],"parameters":["owner"],"bindings":{"owner":"id"}},"manageowners.document":{"uri":"manage-owners\/document\/{owner}","methods":["GET","HEAD"],"parameters":["owner"],"bindings":{"owner":"id"}},"manageowners.checkEmailExists":{"uri":"manage-owners\/check-email","methods":["POST"]},"manageowners.checkMobileExists":{"uri":"manage-owners\/check-mobile","methods":["POST"]},"manageowners.listDocument":{"uri":"manage-owners\/document\/list\/{owner}","methods":["GET","HEAD"],"parameters":["owner"]},"manageowners.documentUpload":{"uri":"manage-owners\/document-upload\/{document}\/{ownerId}","methods":["GET","HEAD"],"parameters":["document","ownerId"],"bindings":{"document":"id","ownerId":"id"}},"manageowners.documentUploadStore":{"uri":"manage-owners\/document-upload\/{document}\/{ownerId}","methods":["POST"],"parameters":["document","ownerId"],"bindings":{"document":"id","ownerId":"id"}},"manageowners.approveOwnerDocument":{"uri":"manage-owners\/document-toggle\/{documentId}\/{ownerId}\/{status}","methods":["GET","HEAD"],"parameters":["documentId","ownerId","status"]},"manageowners.ownerPaymentHistory":{"uri":"manage-owners\/owner-payment-history\/{owner}","methods":["GET","HEAD"],"parameters":["owner"]},"withdrawalrequestOwners.index":{"uri":"withdrawal-request-owners","methods":["GET","HEAD"]},"withdrawalrequestOwners.list":{"uri":"withdrawal-request-owners\/list","methods":["GET","HEAD"]},"withdrawalrequestOwners.ViewDetails":{"uri":"withdrawal-request-owners\/view-in-detail\/{owner}","methods":["GET","HEAD"],"parameters":["owner"],"bindings":{"owner":"id"}},"withdrawalrequestOwner.list":{"uri":"withdrawal-request-owners\/amounts\/{owner_id}","methods":["GET","HEAD"],"parameters":["owner_id"],"bindings":{"owner_id":"id"}},"withdrawalrequestOwners.updateStatus":{"uri":"withdrawal-request-owners\/update-status","methods":["POST"]},"fleetneeddocuments.index":{"uri":"fleet-needed-documents","methods":["GET","HEAD"]},"fleetneeddocuments.list":{"uri":"fleet-needed-documents\/list","methods":["GET","HEAD"]},"fleetneeddocuments.create":{"uri":"fleet-needed-documents\/create","methods":["GET","HEAD"]},"fleetneeddocuments.store":{"uri":"fleet-needed-documents\/store","methods":["POST"]},"fleetneeddocuments.edit":{"uri":"fleet-needed-documents\/edit\/{document}","methods":["GET","HEAD"],"parameters":["document"],"bindings":{"document":"id"}},"fleetneeddocuments.update":{"uri":"fleet-needed-documents\/update\/{document}","methods":["POST"],"parameters":["document"],"bindings":{"document":"id"}},"fleetneeddocuments.updatestatus":{"uri":"fleet-needed-documents\/toggle","methods":["POST"]},"fleetneeddocuments.delete":{"uri":"fleet-needed-documents\/delete\/{document}","methods":["DELETE"],"parameters":["document"],"bindings":{"document":"id"}},"managefleets.index":{"uri":"manage-fleet","methods":["GET","HEAD"]},"managefleets.Create":{"uri":"manage-fleet\/create","methods":["GET","HEAD"]},"managefleets.list":{"uri":"manage-fleet\/list","methods":["GET","HEAD"]},"managefleets.store":{"uri":"manage-fleet\/store","methods":["POST"]},"managefleets.edit":{"uri":"manage-fleet\/edit\/{fleet}","methods":["GET","HEAD"],"parameters":["fleet"],"bindings":{"fleet":"id"}},"managefleets.update":{"uri":"manage-fleet\/update\/{fleet}","methods":["POST"],"parameters":["fleet"],"bindings":{"fleet":"id"}},"managefleets.assignDriver":{"uri":"manage-fleet\/assign\/{fleet}\/{driver}","methods":["POST"],"parameters":["fleet","driver"],"bindings":{"fleet":"id","driver":"id"}},"managefleets.approve":{"uri":"manage-fleet\/approve\/{fleet}","methods":["POST"],"parameters":["fleet"]},"managefleets.delete":{"uri":"manage-fleet\/delete\/{fleet}","methods":["DELETE"],"parameters":["fleet"],"bindings":{"fleet":"id"}},"managefleets.document":{"uri":"manage-fleet\/document\/{fleet}","methods":["GET","HEAD"],"parameters":["fleet"],"bindings":{"fleet":"id"}},"managefleets.listDocument":{"uri":"manage-fleet\/document\/list\/{fleet}","methods":["GET","HEAD"],"parameters":["fleet"]},"managefleets.listFleetDrivers":{"uri":"manage-fleet\/listFleetDriver\/{fleet}","methods":["GET","HEAD"],"parameters":["fleet"],"bindings":{"fleet":"id"}},"managefleets.documentUpload":{"uri":"manage-fleet\/document-upload\/{document}\/{fleetId}","methods":["GET","HEAD"],"parameters":["document","fleetId"],"bindings":{"document":"id","fleetId":"id"}},"managefleets.documentUploadStore":{"uri":"manage-fleet\/document-upload\/{document}\/{fleetId}","methods":["POST"],"parameters":["document","fleetId"],"bindings":{"document":"id","fleetId":"id"}},"managefleets.approvefleetDocument":{"uri":"manage-fleet\/document-toggle\/{documentId}\/{fleetId}\/{status}","methods":["GET","HEAD"],"parameters":["documentId","fleetId","status"]},"managefleets.fleetPaymentHistory":{"uri":"manage-fleet\/fleet-payment-history\/{fleet}","methods":["GET","HEAD"],"parameters":["fleet"]},"approvedFleetdriver.Index":{"uri":"fleet-drivers","methods":["GET","HEAD"]},"approvedFleetdriver.pendingIndex":{"uri":"fleet-drivers\/pending","methods":["GET","HEAD"]},"fleet-drivers.list":{"uri":"fleet-drivers\/list","methods":["GET","HEAD"]},"fleet-drivers.store":{"uri":"fleet-drivers\/store","methods":["POST"]},"fleet-drivers.edit":{"uri":"fleet-drivers\/edit\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"fleet-drivers.create":{"uri":"fleet-drivers\/create","methods":["GET","HEAD"]},"fleet-drivers.update":{"uri":"fleet-drivers\/update\/{driver}","methods":["POST"],"parameters":["driver"],"bindings":{"driver":"id"}},"fleet-drivers.approve":{"uri":"fleet-drivers\/approve\/{driver}","methods":["POST"],"parameters":["driver"],"bindings":{"driver":"id"}},"fleet-drivers.delete":{"uri":"fleet-drivers\/delete\/{driver}","methods":["DELETE"],"parameters":["driver"]},"fleet-drivers.listOwnersByLocation":{"uri":"fleet-drivers\/ownerList","methods":["GET","HEAD"]},"fleet-drivers.listOwners":{"uri":"fleet-drivers\/list-owners","methods":["GET","HEAD"]},"approvedFleetdriver.ViewDocument":{"uri":"fleet-drivers\/document\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"approvedFleetdriver.listDocument":{"uri":"fleet-drivers\/document\/list\/{driverId}","methods":["GET","HEAD"],"parameters":["driverId"]},"approvedFleetdriver.documentUpload":{"uri":"fleet-drivers\/document-upload\/{document}\/{driverId}","methods":["GET","HEAD"],"parameters":["document","driverId"],"bindings":{"document":"id","driverId":"id"}},"approvedFleetdriver.documentUploadStore":{"uri":"fleet-drivers\/document-upload-store\/{document}\/{driverId}","methods":["POST"],"parameters":["document","driverId"],"bindings":{"document":"id","driverId":"id"}},"approvedFleetdriver.approveDriverDocument":{"uri":"fleet-drivers\/document-toggle\/{documentId}\/{driverId}\/{status}","methods":["GET","HEAD"],"parameters":["documentId","driverId","status"]},"pendingdriver.fleetIndex":{"uri":"fleet-drivers\/pending-drivers","methods":["GET","HEAD"]},"goodstype.index":{"uri":"goods-type","methods":["GET","HEAD"]},"goodstype.create":{"uri":"goods-type\/create","methods":["GET","HEAD"]},"goodstype.store":{"uri":"goods-type\/store","methods":["POST"]},"goodstype.list":{"uri":"goods-type\/list","methods":["GET","HEAD"]},"goodstype.edit":{"uri":"goods-type\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"goodstype.update":{"uri":"goods-type\/update\/{goods_type}","methods":["POST"],"parameters":["goods_type"]},"goodstype.delete":{"uri":"goods-type\/delete\/{goods_type}","methods":["DELETE"],"parameters":["goods_type"]},"goodstype.updateStatus":{"uri":"goods-type\/update-status","methods":["POST"]},"bannerimage.index":{"uri":"banner-image","methods":["GET","HEAD"]},"bannerimage.create":{"uri":"banner-image\/create","methods":["GET","HEAD"]},"bannerimage.list":{"uri":"banner-image\/list","methods":["GET","HEAD"]},"bannerimage.update":{"uri":"banner-image\/update\/{bannerimage}","methods":["POST"],"parameters":["bannerimage"],"bindings":{"bannerimage":"id"}},"bannerimage.store":{"uri":"banner-image\/store","methods":["POST"]},"bannerimage.edit":{"uri":"banner-image\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"bannerimage.delete":{"uri":"banner-image\/delete\/{bannerimage}","methods":["DELETE"],"parameters":["bannerimage"],"bindings":{"bannerimage":"id"}},"bannerimage.updateStatus":{"uri":"banner-image\/update-status","methods":["POST"]},"ownerneeddocuments.index":{"uri":"owner-needed-documents","methods":["GET","HEAD"]},"ownerneeddocuments.list":{"uri":"owner-needed-documents\/list","methods":["GET","HEAD"]},"ownerneeddocuments.create":{"uri":"owner-needed-documents\/create","methods":["GET","HEAD"]},"ownerneeddocuments.store":{"uri":"owner-needed-documents\/store","methods":["POST"]},"ownerneeddocuments.edit":{"uri":"owner-needed-documents\/edit\/{document}","methods":["GET","HEAD"],"parameters":["document"],"bindings":{"document":"id"}},"ownerneeddocuments.update":{"uri":"owner-needed-documents\/update\/{document}","methods":["POST"],"parameters":["document"],"bindings":{"document":"id"}},"ownerneeddocuments.updatestatus":{"uri":"owner-needed-documents\/toggle","methods":["POST"]},"ownerneeddocuments.delete":{"uri":"owner-needed-documents\/delete\/{document}","methods":["DELETE"],"parameters":["document"],"bindings":{"document":"id"}},"onboardingscreen.index":{"uri":"onboarding-screen","methods":["GET","HEAD"]},"onboardingscreen.list":{"uri":"onboarding-screen\/list","methods":["GET","HEAD"]},"onboardingscreen.edit":{"uri":"onboarding-screen\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"onboardingscreen.update":{"uri":"onboarding-screen\/update\/{id}","methods":["POST"],"parameters":["id"]},"onboardingscreen.updateStatus":{"uri":"onboarding-screen\/update-status","methods":["POST"]},"invoiceconfiguration.index":{"uri":"invoice-configuration","methods":["GET","HEAD"]},"mapsettings.index":{"uri":"map-setting","methods":["GET","HEAD"]},"mapsettings.update":{"uri":"map-setting\/update","methods":["POST"]},"settings.generalSettings":{"uri":"general-settings","methods":["GET","HEAD"]},"settings.updateGeneralSettings":{"uri":"general-settings\/update","methods":["POST"]},"settings.updateStatus":{"uri":"general-settings\/update-status","methods":["POST"]},"settings.customizationSettings":{"uri":"customization-settings","methods":["GET","HEAD"]},"settings.updateCustomizationSettings":{"uri":"customization-settings\/update","methods":["POST"]},"settings.updateCustomizationStatus":{"uri":"customization-settings\/update-status","methods":["POST"]},"settings.transportRideSettings":{"uri":"transport-ride-settings","methods":["GET","HEAD"]},"settings.updateTransportSettings":{"uri":"transport-ride-settings\/update","methods":["POST"]},"settings.updateTransportStatus":{"uri":"transport-ride-settings\/update-status","methods":["POST"]},"settings.bidRideSettings":{"uri":"bid-ride-settings","methods":["GET","HEAD"]},"settings.updateBidSettings":{"uri":"bid-ride-settings\/update","methods":["POST"]},"settings.walletSettings":{"uri":"wallet-settings","methods":["GET","HEAD"]},"settings.updateWalletSettings":{"uri":"wallet-settings\/update","methods":["POST"]},"settings.referralSettings":{"uri":"referral-settings","methods":["GET","HEAD"]},"settings.updateRefrerralSettings":{"uri":"referral-settings\/update","methods":["POST"]},"triprequest.ridesRequest":{"uri":"rides-request","methods":["GET","HEAD"]},"triprequest.list":{"uri":"rides-request\/list","methods":["GET","HEAD"]},"triprequest.driverFind":{"uri":"rides-request\/driver\/{driver}","methods":["POST"],"parameters":["driver"],"bindings":{"driver":"id"}},"triprequest.viewDetails":{"uri":"rides-request\/view\/{requestmodel}","methods":["GET","HEAD"],"parameters":["requestmodel"],"bindings":{"requestmodel":"id"}},"triprequest.cancel":{"uri":"rides-request\/cancel\/{requestmodel}","methods":["GET","HEAD"],"parameters":["requestmodel"],"bindings":{"requestmodel":"id"}},"triprequest.sosDetail":{"uri":"rides-request\/detail\/{request}","methods":["GET","HEAD"],"parameters":["request"],"bindings":{"request":"id"}},"triprequest.scheduledRides":{"uri":"scheduled-rides","methods":["GET","HEAD"]},"triprequest.outstationRides":{"uri":"out-station-rides","methods":["GET","HEAD"]},"triprequest.cancellationRides":{"uri":"cancellation-rides","methods":["GET","HEAD"]},"triprequest.cancellationRidesViewDetails":{"uri":"cancellation-rides\/view","methods":["GET","HEAD"]},"deliveryTriprequest.ridesRequest":{"uri":"delivery-rides-request","methods":["GET","HEAD"]},"deliveryTriprequest.list":{"uri":"delivery-rides-request\/list","methods":["GET","HEAD"]},"deliveryTriprequest.driverFind":{"uri":"delivery-rides-request\/driver\/{driver}","methods":["POST"],"parameters":["driver"],"bindings":{"driver":"id"}},"deliveryTriprequest.viewDetails":{"uri":"delivery-rides-request\/view\/{requestmodel}","methods":["GET","HEAD"],"parameters":["requestmodel"],"bindings":{"requestmodel":"id"}},"deliveryTriprequest.cancel":{"uri":"delivery-rides-request\/cancel\/{requestmodel}","methods":["GET","HEAD"],"parameters":["requestmodel"],"bindings":{"requestmodel":"id"}},"delivery-scheduled-rides.scheduledRides":{"uri":"delivery-scheduled-rides","methods":["GET","HEAD"]},"delivery-scheduled-rides.viewDetails":{"uri":"delivery-scheduled-rides\/view","methods":["GET","HEAD"]},"deliveryrequest.cancellationRides":{"uri":"delivery-cancellation-rides","methods":["GET","HEAD"]},"deliveryrequest.viewCancelDetails":{"uri":"delivery-cancellation-rides\/view","methods":["GET","HEAD"]},"triprequest.ongoingRides":{"uri":"ongoing-rides","methods":["GET","HEAD"]},"triprequest.ongoingRideDetail":{"uri":"ongoing-rides\/find-ride\/{request}","methods":["GET","HEAD"],"parameters":["request"],"bindings":{"request":"id"}},"triprequest.assignView":{"uri":"ongoing-rides\/assign\/{request}","methods":["GET","HEAD"],"parameters":["request"],"bindings":{"request":"id"}},"triprequest.assignDriver":{"uri":"ongoing-rides\/assign-driver\/{requestmodel}","methods":["POST"],"parameters":["requestmodel"],"bindings":{"requestmodel":"id"}},"images.index":{"uri":"images","methods":["GET","HEAD"]},"images.create":{"uri":"images\/create","methods":["GET","HEAD"]},"images.update":{"uri":"images\/update","methods":["GET","HEAD"]},"users.index":{"uri":"users","methods":["GET","HEAD"]},"users.list":{"uri":"users\/list","methods":["GET","HEAD"]},"users.create":{"uri":"users\/create","methods":["GET","HEAD"]},"users.store":{"uri":"users\/store","methods":["POST"]},"users.edit":{"uri":"users\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"users.update":{"uri":"users\/update\/{user}","methods":["POST"],"parameters":["user"],"bindings":{"user":"id"}},"users.checkMobileExists":{"uri":"users\/check-mobile\/{mobile}\/{id}","methods":["GET","HEAD"],"parameters":["mobile","id"]},"users.checkEmailExists":{"uri":"users\/check-email\/{email}\/{id}","methods":["GET","HEAD"],"parameters":["email","id"]},"users.updateStatus":{"uri":"users\/update-status","methods":["POST"]},"users.view-profile":{"uri":"users\/view-profile\/{user}","methods":["GET","HEAD"],"parameters":["user"],"bindings":{"user":"id"}},"users.addAmount":{"uri":"users\/wallet-add-amount\/{user}","methods":["POST"],"parameters":["user"],"bindings":{"user":"id"}},"users.walletHistoryList":{"uri":"users\/wallet-history\/list\/{user}","methods":["GET","HEAD"],"parameters":["user"],"bindings":{"user":"id"}},"users.requestList":{"uri":"users\/request\/list\/{user}","methods":["GET","HEAD"],"parameters":["user"],"bindings":{"user":"id"}},"users.deleted-users":{"uri":"users\/deleted-user","methods":["GET","HEAD"]},"users.deletedList":{"uri":"users\/deletedList","methods":["GET","HEAD"]},"zone.index":{"uri":"zones","methods":["GET","HEAD"]},"zone.create":{"uri":"zones\/create","methods":["GET","HEAD"]},"zone.store":{"uri":"zones\/store","methods":["POST"]},"zone.fetch":{"uri":"zones\/fetch","methods":["GET","HEAD"]},"zone.list":{"uri":"zones\/list","methods":["GET","HEAD"]},"zone.edit":{"uri":"zones\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"zone.update":{"uri":"zones\/update\/{zone}","methods":["POST"],"parameters":["zone"],"bindings":{"zone":"id"}},"zone.updateStatus":{"uri":"zones\/update-status","methods":["POST"]},"zone.map":{"uri":"zones\/map\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"zone.surge":{"uri":"zones\/surge\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"zone.updateSurge":{"uri":"zones\/surge\/update\/{zone}","methods":["POST"],"parameters":["zone"],"bindings":{"zone":"id"}},"incentives.index":{"uri":"incentives","methods":["GET","HEAD"]},"incentives.update":{"uri":"incentives\/update","methods":["POST"]},"landing.index":{"uri":"\/","methods":["GET","HEAD"]},"landing.driver":{"uri":"driver","methods":["GET","HEAD"]},"landing.aboutus":{"uri":"aboutus","methods":["GET","HEAD"]},"landing.user":{"uri":"user","methods":["GET","HEAD"]},"landing.contact":{"uri":"contact","methods":["GET","HEAD"]},"landing.privacy":{"uri":"privacy","methods":["GET","HEAD"]},"landing.compliance":{"uri":"compliance","methods":["GET","HEAD"]},"landing.terms":{"uri":"terms","methods":["GET","HEAD"]},"landing.dmv":{"uri":"dmv","methods":["GET","HEAD"]},"web-booking.create-booking":{"uri":"create-booking","methods":["GET","HEAD"]},"web-booking.profile":{"uri":"profile","methods":["GET","HEAD"]},"user.updateProfile":{"uri":"user\/update-profile","methods":["POST"]},"web-booking.history":{"uri":"history","methods":["GET","HEAD"]},"history.viewDetails":{"uri":"history\/view\/{requestmodel}","methods":["GET","HEAD"],"parameters":["requestmodel"],"bindings":{"requestmodel":"id"}},"web-users.list":{"uri":"webuser\/list","methods":["GET","HEAD"]},"app.install":{"uri":"installation","methods":["GET","HEAD"]},"overall.menu":{"uri":"overall-menu","methods":["GET","HEAD"]},"chat.index":{"uri":"chat","methods":["GET","HEAD"]},"chat.fetchUser":{"uri":"chat\/fetch-user","methods":["GET","HEAD"]},"chat.messages":{"uri":"chat\/messages\/{conversationId}","methods":["GET","HEAD"],"parameters":["conversationId"],"bindings":{"conversationId":"id"}},"chat.sendAdmin":{"uri":"chat\/send-admin","methods":["POST"]},"chat.closeChat":{"uri":"chat\/close-chat","methods":["POST"]},"chat.fetchChats":{"uri":"chat\/fetchChat","methods":["GET","HEAD"]},"chat.readAll":{"uri":"chat\/readAll","methods":["GET","HEAD"]},"landing_home.index":{"uri":"landing-home","methods":["GET","HEAD"]},"landing_home.list":{"uri":"landing-home\/list","methods":["GET","HEAD"]},"landing_home.create":{"uri":"landing-home\/create","methods":["GET","HEAD"]},"landing_home.store":{"uri":"landing-home\/store","methods":["POST"]},"landing_home.edit":{"uri":"landing-home\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"landing_home.update":{"uri":"landing-home\/update\/{landingHome}","methods":["POST"],"parameters":["landingHome"],"bindings":{"landingHome":"id"}},"landing_home.delete":{"uri":"landing-home\/delete\/{landingHome}","methods":["DELETE"],"parameters":["landingHome"],"bindings":{"landingHome":"id"}},"landing_abouts.index":{"uri":"landing-aboutus","methods":["GET","HEAD"]},"landing_abouts.list":{"uri":"landing-aboutus\/list","methods":["GET","HEAD"]},"landing_abouts.create":{"uri":"landing-aboutus\/create","methods":["GET","HEAD"]},"landing_abouts.store":{"uri":"landing-aboutus\/store","methods":["POST"]},"landing_abouts.edit":{"uri":"landing-aboutus\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"landing_abouts.update":{"uri":"landing-aboutus\/update\/{landingAbouts}","methods":["POST"],"parameters":["landingAbouts"],"bindings":{"landingAbouts":"id"}},"landing_abouts.delete":{"uri":"landing-aboutus\/delete\/{landingAbouts}","methods":["DELETE"],"parameters":["landingAbouts"],"bindings":{"landingAbouts":"id"}},"landing_driver.index":{"uri":"landing-driver","methods":["GET","HEAD"]},"landing_driver.list":{"uri":"landing-driver\/list","methods":["GET","HEAD"]},"landing_driver.create":{"uri":"landing-driver\/create","methods":["GET","HEAD"]},"landing_driver.store":{"uri":"landing-driver\/store","methods":["POST"]},"landing_driver.edit":{"uri":"landing-driver\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"landing_driver.update":{"uri":"landing-driver\/update\/{landingDriver}","methods":["POST"],"parameters":["landingDriver"],"bindings":{"landingDriver":"id"}},"landing_driver.delete":{"uri":"landing-driver\/delete\/{landingDriver}","methods":["DELETE"],"parameters":["landingDriver"],"bindings":{"landingDriver":"id"}},"landing_user.index":{"uri":"landing-user","methods":["GET","HEAD"]},"landing_user.list":{"uri":"landing-user\/list","methods":["GET","HEAD"]},"landing_user.create":{"uri":"landing-user\/create","methods":["GET","HEAD"]},"landing_user.store":{"uri":"landing-user\/store","methods":["POST"]},"landing_user.edit":{"uri":"landing-user\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"landing_user.update":{"uri":"landing-user\/update\/{landingUser}","methods":["POST"],"parameters":["landingUser"],"bindings":{"landingUser":"id"}},"landing_user.delete":{"uri":"landing-user\/delete\/{landingUser}","methods":["DELETE"],"parameters":["landingUser"],"bindings":{"landingUser":"id"}},"landing_header.index":{"uri":"landing-header","methods":["GET","HEAD"]},"landing_header.list":{"uri":"landing-header\/list","methods":["GET","HEAD"]},"landing_header.create":{"uri":"landing-header\/create","methods":["GET","HEAD"]},"landing_header.store":{"uri":"landing-header\/store","methods":["POST"]},"landing_header.edit":{"uri":"landing-header\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"landing_header.update":{"uri":"landing-header\/update\/{landingHeader}","methods":["POST"],"parameters":["landingHeader"],"bindings":{"landingHeader":"id"}},"landing_header.delete":{"uri":"landing-header\/delete\/{landingHeader}","methods":["DELETE"],"parameters":["landingHeader"],"bindings":{"landingHeader":"id"}},"landing_quicklink.index":{"uri":"landing-quicklink","methods":["GET","HEAD"]},"landing_quicklink.list":{"uri":"landing-quicklink\/list","methods":["GET","HEAD"]},"landing_quicklink.create":{"uri":"landing-quicklink\/create","methods":["GET","HEAD"]},"landing_quicklink.store":{"uri":"landing-quicklink\/store","methods":["POST"]},"landing_quicklink.edit":{"uri":"landing-quicklink\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"landing_quicklink.update":{"uri":"landing-quicklink\/update\/{landingQuickLink}","methods":["POST"],"parameters":["landingQuickLink"],"bindings":{"landingQuickLink":"id"}},"landing_quicklink.delete":{"uri":"landing-quicklink\/delete\/{landingQuickLink}","methods":["DELETE"],"parameters":["landingQuickLink"],"bindings":{"landingQuickLink":"id"}},"landing_contact.index":{"uri":"landing-contact","methods":["GET","HEAD"]},"landing_contact.list":{"uri":"landing-contact\/list","methods":["GET","HEAD"]},"landing_contact.create":{"uri":"landing-contact\/create","methods":["GET","HEAD"]},"landing_contact.store":{"uri":"landing-contact\/store","methods":["POST"]},"landing_contact.edit":{"uri":"landing-contact\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"landing_contact.update":{"uri":"landing-contact\/update\/{landingContact}","methods":["POST"],"parameters":["landingContact"],"bindings":{"landingContact":"id"}},"landing_contact.delete":{"uri":"landing-contact\/delete\/{landingContact}","methods":["DELETE"],"parameters":["landingContact"],"bindings":{"landingContact":"id"}},"landing_contact.contactmessage":{"uri":"landing-contact\/contactmessage","methods":["POST"]},"paypal":{"uri":"paypal","methods":["GET","HEAD"]},"paypal.payment":{"uri":"paypal\/payment","methods":["POST"]},"paypal.payment.success":{"uri":"paypal\/payment\/success","methods":["GET","HEAD"]},"paypal.payment\/cancel":{"uri":"paypal\/payment\/cancel","methods":["GET","HEAD"]},"checkout.process":{"uri":"stripe-checkout","methods":["POST"]},"checkout.success":{"uri":"stripe-checkout-success","methods":["GET","HEAD"]},"checkout.failure":{"uri":"stripe-checkout-error","methods":["GET","HEAD"]},"flutterwave.success":{"uri":"flutterwave\/payment\/success","methods":["GET","HEAD"]},"paystack.success":{"uri":"paystack\/payment\/success","methods":["GET","HEAD"]},"khalti.success":{"uri":"khalti\/checkout","methods":["POST"]},"razorpay.success":{"uri":"payment-success","methods":["GET","HEAD"]},"mercadopago.success":{"uri":"mercadopago\/payment\/success","methods":["GET","HEAD"]},"ccavenue.checkout":{"uri":"ccavenue\/checkout","methods":["POST"]},"ccavenue.payment.response":{"uri":"ccavenue\/payment\/success","methods":["GET","HEAD"]},"ccavenue.payment.cancel":{"uri":"ccavenue\/payment\/failure","methods":["GET","HEAD"]}};
Object.assign(Ziggy.routes, routes);
})();
</script> <link rel="preload" as="style" href="http://localhost/new_vue_tagxi/public/build/assets/vendor-f749f9ab.css" /><link rel="preload" as="style" href="http://localhost/new_vue_tagxi/public/build/assets/app-5dc46014.css" /><link rel="preload" as="style" href="http://localhost/new_vue_tagxi/public/build/assets/404-8c21c3cf.css" /><link rel="modulepreload" href="http://localhost/new_vue_tagxi/public/build/assets/app-e076d658.js" /><link rel="modulepreload" href="http://localhost/new_vue_tagxi/public/build/assets/vendor-b6e68d09.js" /><link rel="modulepreload" href="http://localhost/new_vue_tagxi/public/build/assets/404-36789bcd.js" /><link rel="modulepreload" href="http://localhost/new_vue_tagxi/public/build/assets/error-ff2a41aa.js" /><link rel="stylesheet" href="http://localhost/new_vue_tagxi/public/build/assets/vendor-f749f9ab.css" /><link rel="stylesheet" href="http://localhost/new_vue_tagxi/public/build/assets/app-5dc46014.css" /><link rel="stylesheet" href="http://localhost/new_vue_tagxi/public/build/assets/404-8c21c3cf.css" /><script type="module" src="http://localhost/new_vue_tagxi/public/build/assets/app-e076d658.js"></script><script type="module" src="http://localhost/new_vue_tagxi/public/build/assets/404-36789bcd.js"></script>
</head>
<body>
<div id="app" data-page="{"component":"pages\/404","props":{"jetstream":{"canCreateTeams":false,"canManageTwoFactorAuthentication":true,"canUpdatePassword":true,"canUpdateProfileInformation":true,"hasEmailVerification":true,"flash":[],"hasAccountDeletionFeatures":true,"hasApiFeatures":true,"hasTeamFeatures":false,"hasTermsAndPrivacyPolicyFeature":true,"managesProfilePhotos":true},"auth":{"user":null},"errorBags":[],"errors":{},"flash":{"successMessage":null}},"url":"\/new_vue_tagxi\/public\/\/api\/compliance-content","version":"6417c333e668146bc61c7fac84a8b3e4"}"></div> <script>
window.headers = [{"id":"d488f364-f420-4415-85a2-e4b1a154863b","header_logo":"Y8Xg6Y3kQHYzGSsVonTjE5aI1SZu8lEWhuXPsz5L.png","home":"Home","aboutus":"About Us","driver":"Driver","user":"User","contact":"Contact","book_now_btn":"Book Now","footer_logo":"TvZGGFUp14QFjqR2gJZPrJ28gt0EYakPBp75vj7C.png","footer_para":"Tagxi is a rideshare platform facilitating peer to peer ridesharing by means of connecting passengers who are in need of rides from drivers with available cars to get from point A to point B with the press of a button.","quick_links":"Quick Links","compliance":"Compliance","privacy":"Privacy Policy","terms":"Terms \u0026 Conditions","dmv":"DMV Check","user_app":"User Apps","user_play":"Play Store","user_play_link":"https:\/\/play.google.com\/store\/apps\/details?id=tagxi.bidding.user","user_apple":"Apple Store","user_apple_link":"https:\/\/apps.apple.com\/in\/app\/super-bidding-user\/id6449780067","driver_app":"Driver Apps","driver_play":"Play Store","driver_play_link":"https:\/\/play.google.com\/store\/apps\/details?id=tagxi.bidding.driver","driver_apple":"Apple Store","driver_apple_link":"https:\/\/apps.apple.com\/in\/app\/super-bidding-driver\/id6449778880","copy_rights":"2021 @ misoftwares","fb_link":"https:\/\/www.facebook.com\/","linkdin_link":"https:\/\/in.linkedin.com\/","x_link":"https:\/\/x.com\/","insta_link":"https:\/\/www.instagram.com\/","locale":"En","language":"English","direction":"ltr","created_at":null,"updated_at":"2024-11-20T18:33:22.000000Z","header_logo_url":"http:\/\/localhost\/new_vue_tagxi\/public\/storage\/uploads\/website\/images\/Y8Xg6Y3kQHYzGSsVonTjE5aI1SZu8lEWhuXPsz5L.png","footer_logo_url":"http:\/\/localhost\/new_vue_tagxi\/public\/storage\/uploads\/website\/images\/TvZGGFUp14QFjqR2gJZPrJ28gt0EYakPBp75vj7C.png"}];
window.recaptchaKey = null;
window.logo = "http:\/\/localhost\/new_vue_tagxi\/public\/storage\/uploads\/system-admin\/logo\/logo-light.png";
window.favicon = "http:\/\/localhost\/new_vue_tagxi\/public\/storage\/uploads\/system-admin\/logo\/logo-mini.png";
window.footer_content1 = "2024 \u00a9 Misoftwares.";
window.footer_content2 = "Design \u0026 Develop by Misoftwares";
</script>
</body>
<script>
document.addEventListener('DOMContentLoaded', function () {
// Check if window.favicon is available and set it dynamically
if (window.favicon) {
document.getElementById('dynamic-favicon').setAttribute('href', window.favicon);
} else {
// Fallback if the favicon is not set
document.getElementById('dynamic-favicon').setAttribute('href', 'http://localhost/new_vue_tagxi/public/image/favicon.ico');
}
});
</script>
<style>
:root{
--top_nav: #0ab39c;
--side_menu: #405189;
--side_menu_txt: #ffffff;
--loginbg: url('http://localhost/new_vue_tagxi/public/storage/uploads/system-admin/logo/workspace.jpg');
--owner_loginbg: url('http://localhost/new_vue_tagxi/public/storage/uploads/system-admin/logo/workspace.jpg');
}
</style>
</html>
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DMV
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/dmv-content" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"locale\": \"wo_SN\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/dmv-content"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"locale": "wo_SN"
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
Show headers
cache-control: no-cache, private
content-type: application/json
link: <http://localhost/new_vue_tagxi/public/build/assets/vendor-f749f9ab.css>; rel="preload"; as="style", <http://localhost/new_vue_tagxi/public/build/assets/app-5dc46014.css>; rel="preload"; as="style", <http://localhost/new_vue_tagxi/public/build/assets/404-8c21c3cf.css>; rel="preload"; as="style", <http://localhost/new_vue_tagxi/public/build/assets/app-e076d658.js>; rel="modulepreload", <http://localhost/new_vue_tagxi/public/build/assets/vendor-b6e68d09.js>; rel="modulepreload", <http://localhost/new_vue_tagxi/public/build/assets/404-36789bcd.js>; rel="modulepreload", <http://localhost/new_vue_tagxi/public/build/assets/error-ff2a41aa.js>; rel="modulepreload"
vary: X-Inertia
set-cookie: XSRF-TOKEN=eyJpdiI6IlBWUGRwN0tHeVpFMUxiY29STkVzWUE9PSIsInZhbHVlIjoieGEvNitsTFNVV2J2anBndWVxSldWdXR4QjA3OWpTc0JVb2ZkTTgwSFlzdktQYnI1YXdDZlc3VlZNMDBWUWlOWnFKMWUxc3pIVkVIU3A1Y3ZNaWNjNEJtWHphb3N0U29nejRVTkFxNjVPV3FicWxGODhlMHVKU3pOR3gxOEhqS3UiLCJtYWMiOiJkMjBlZDViMGIzNTRiNzBiNGQyM2VmNDQwYjA4YmU3NmY3ZTVhMmNkZTNiMGNhZjVjY2I2MzRiMDE2ZWE5NjRkIiwidGFnIjoiIn0%3D; expires=Tue, 26 Nov 2024 11:37:51 GMT; Max-Age=7200; path=/; samesite=lax; vuetaxi_session=eyJpdiI6IjZkTlIyVTV5TlZYVUFlMFZaSHhCRVE9PSIsInZhbHVlIjoiZzhMbHdEUmsvQmxmVGxubjdDaXVzWmwvRjlPcmQ5N3ppZnM5SExxT1hUVUJuRVlZYzRYczZOOUQ3ZGlOdVRWOVZTUCt0L1lGY3NIK2xubkZBdEFKL3hSTjE3dUN6Mk1tUzBtSE1tT2ZMSWhERHZGS0J3aVhpYmNhZHhWSmVpaGciLCJtYWMiOiJiNGRmNGQ4MmViY2NmZjE2NjMwNzVhM2I2YTc4NGRhMjhjNjM0ZjY5NDViNzBlM2VhZWJjYTczMDk3MDQzNDY2IiwidGFnIjoiIn0%3D; expires=Tue, 26 Nov 2024 11:37:51 GMT; Max-Age=7200; path=/; httponly; samesite=lax
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title inertia>Misoftwares</title>
<meta name="description"
content="Taxi App - Fast, Safe, and Convenient Rides at Your Fingertips">
<meta name="keywords"
content="Taxi booking app admin panel,Taxi fleet management software,Taxi service admin panel features,Real-time taxi management dashboard">
<meta name="author" content="Misoftwares">
<!-- Social Media Meta Tags -->
<meta property="og:title" content="Misoftwares - Inertia + Vue & Laravel Admin & Dashboard Template">
<meta property="og:description"
content="Simplify web application development with Misoftwares, a feature-rich taxi app admin and dashboard template built with Inertia.js, Vue.js, and Laravel.">
<meta property="og:image" content="URL to the template's logo or featured image">
<meta property="og:url" content="URL to the template's webpage">
<meta name="twitter:card" content="summary_large_image">
<!-- App favicon -->
<!-- <link rel="shortcut icon" href="http://localhost/new_vue_tagxi/public/image/favicon.ico"> -->
<link rel="shortcut icon" id="dynamic-favicon" href="">
<!-- Firebase SDK -->
<!-- Use the Firebase 8.x version for CommonJS support -->
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-database.js"></script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/select2@4.1.0-beta.1/dist/css/select2.min.css" rel="stylesheet" />
<script src="https://cdn.jsdelivr.net/npm/select2@4.1.0-beta.1/dist/js/select2.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/driver.js@1.0.1/dist/driver.js.iife.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/driver.js@1.0.1/dist/driver.css"/>
<!-- Scripts -->
<script type="text/javascript">
(function () {
const routes = {"admin-login":{"uri":"login","methods":["POST"]},"logout":{"uri":"logout","methods":["POST"]},"password.request":{"uri":"forgot-password","methods":["GET","HEAD"]},"password.reset":{"uri":"reset-password\/{token}","methods":["GET","HEAD"],"parameters":["token"]},"password.email":{"uri":"forgot-password","methods":["POST"]},"password.update":{"uri":"reset-password","methods":["POST"]},"register":{"uri":"register","methods":["GET","HEAD"]},"verification.notice":{"uri":"email\/verify","methods":["GET","HEAD"]},"verification.verify":{"uri":"email\/verify\/{id}\/{hash}","methods":["GET","HEAD"],"parameters":["id","hash"]},"verification.send":{"uri":"email\/verification-notification","methods":["POST"]},"user-profile-information.update":{"uri":"user\/profile-information","methods":["PUT"]},"user-password.update":{"uri":"user\/password","methods":["PUT"]},"password.confirmation":{"uri":"user\/confirmed-password-status","methods":["GET","HEAD"]},"password.confirm":{"uri":"user\/confirm-password","methods":["POST"]},"two-factor.login":{"uri":"two-factor-challenge","methods":["GET","HEAD"]},"two-factor.enable":{"uri":"user\/two-factor-authentication","methods":["POST"]},"two-factor.confirm":{"uri":"user\/confirmed-two-factor-authentication","methods":["POST"]},"two-factor.disable":{"uri":"user\/two-factor-authentication","methods":["DELETE"]},"two-factor.qr-code":{"uri":"user\/two-factor-qr-code","methods":["GET","HEAD"]},"two-factor.secret-key":{"uri":"user\/two-factor-secret-key","methods":["GET","HEAD"]},"two-factor.recovery-codes":{"uri":"user\/two-factor-recovery-codes","methods":["GET","HEAD"]},"terms.show":{"uri":"terms-of-service","methods":["GET","HEAD"]},"policy.show":{"uri":"privacy-policy","methods":["GET","HEAD"]},"profile.show":{"uri":"user\/profile","methods":["GET","HEAD"]},"other-browser-sessions.destroy":{"uri":"user\/other-browser-sessions","methods":["DELETE"]},"current-user-photo.destroy":{"uri":"user\/profile-photo","methods":["DELETE"]},"current-user.destroy":{"uri":"user","methods":["DELETE"]},"api-tokens.index":{"uri":"user\/api-tokens","methods":["GET","HEAD"]},"api-tokens.store":{"uri":"user\/api-tokens","methods":["POST"]},"api-tokens.update":{"uri":"user\/api-tokens\/{token}","methods":["PUT"],"parameters":["token"]},"api-tokens.destroy":{"uri":"user\/api-tokens\/{token}","methods":["DELETE"],"parameters":["token"]},"sanctum.csrf-cookie":{"uri":"sanctum\/csrf-cookie","methods":["GET","HEAD"]},"ignition.healthCheck":{"uri":"_ignition\/health-check","methods":["GET","HEAD"]},"ignition.executeSolution":{"uri":"_ignition\/execute-solution","methods":["POST"]},"ignition.updateConfig":{"uri":"_ignition\/update-config","methods":["POST"]},"privacy-content":{"uri":"api\/privacy-content","methods":["GET","HEAD"]},"terms-content":{"uri":"api\/terms-content","methods":["GET","HEAD"]},"compliance-content":{"uri":"api\/compliance-content","methods":["GET","HEAD"]},"dmv-content":{"uri":"api\/dmv-content","methods":["GET","HEAD"]},"view-countries":{"uri":"countries","methods":["GET","HEAD"]},"list-countries":{"uri":"countries-list","methods":["GET","HEAD"]},"languages.index":{"uri":"languages","methods":["GET","HEAD"]},"languages.create":{"uri":"languages\/create","methods":["GET","HEAD"]},"languages.list":{"uri":"languages\/list","methods":["GET","HEAD"]},"languages.browse":{"uri":"languages\/browse\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"languages.store":{"uri":"languages\/store","methods":["POST"]},"language.update":{"uri":"languages\/update\/{language}","methods":["PUT"],"parameters":["language"]},"current-languages":{"uri":"current-languages","methods":["GET","HEAD"]},"current-locations":{"uri":"current-locations","methods":["GET","HEAD"]},"current-notifications":{"uri":"current-notifications","methods":["GET","HEAD"]},"read-notifications":{"uri":"mark-notification-as-read","methods":["POST"]},"spa-user-login":{"uri":"user\/login","methods":["POST"]},"spa-owner-login":{"uri":"owner-login","methods":["POST"]},"owner-login":{"uri":"owner-login","methods":["GET","HEAD"]},"user-register":{"uri":"user\/register","methods":["POST"]},"dashboard":{"uri":"dashboard","methods":["GET","HEAD"]},"owner.dashboard":{"uri":"owner-dashboard","methods":["GET","HEAD"]},"dashboard-todayEarnings":{"uri":"dashboard\/today-earnings","methods":["GET","HEAD"]},"dashboard-overallEarnings":{"uri":"dashboard\/overall-earnings","methods":["GET","HEAD"]},"dashboard-cancelChart":{"uri":"dashboard\/cancel-chart","methods":["GET","HEAD"]},"serviceLocation.dashboard":{"uri":"dashboard\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"owner.IndividualDashboard":{"uri":"individual-owner-dashboard","methods":["GET","HEAD"]},"servicelocation.index":{"uri":"service-locations","methods":["GET","HEAD"]},"fleet-login":{"uri":"owner\/login","methods":["POST"]},"roles.index":{"uri":"roles","methods":["GET","HEAD"]},"roles.list":{"uri":"roles\/list","methods":["GET","HEAD"]},"roles.store":{"uri":"roles","methods":["POST"]},"roles.update":{"uri":"roles\/{role}","methods":["PUT"],"parameters":["role"],"bindings":{"role":"id"}},"permission.index":{"uri":"permissions\/{permission}","methods":["GET","HEAD"],"parameters":["permission"]},"permission.store":{"uri":"permissions\/{role}","methods":["POST"],"parameters":["role"]},"roles1.index":{"uri":"roles1","methods":["GET","HEAD"]},"roles1.list":{"uri":"roles1\/list","methods":["GET","HEAD"]},"roles1.store":{"uri":"roles1","methods":["POST"]},"roles1.update":{"uri":"roles1\/update\/{role}","methods":["PUT"],"parameters":["role"],"bindings":{"role":"id"}},"role1.import":{"uri":"roles1\/import-csv","methods":["POST"]},"service-location-list":{"uri":"service-locations\/list","methods":["GET","HEAD"]},"servicelocation.create":{"uri":"service-locations\/create","methods":["GET","HEAD"]},"servicelocation.edit":{"uri":"service-locations\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"servicelocation.store":{"uri":"service-locations\/store","methods":["POST"]},"servicelocation.update":{"uri":"service-locations\/update\/{location}","methods":["POST"],"parameters":["location"],"bindings":{"location":"id"}},"servicelocation.toggle":{"uri":"service-locations\/toggle\/{location}","methods":["POST"],"parameters":["location"],"bindings":{"location":"id"}},"servicelocation.delete":{"uri":"service-locations\/delete\/{location}","methods":["DELETE"],"parameters":["location"],"bindings":{"location":"id"}},"rentalpackagetype.index":{"uri":"rental-package-types","methods":["GET","HEAD"]},"rentalpackagetype.create":{"uri":"rental-package-types\/create","methods":["GET","HEAD"]},"rentalpackagetype.store":{"uri":"rental-package-types\/store","methods":["POST"]},"rentalpackagetype.list":{"uri":"rental-package-types\/list","methods":["GET","HEAD"]},"rentalpackagetype.edit":{"uri":"rental-package-types\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"rentalpackagetype.update":{"uri":"rental-package-types\/update\/{packageType}","methods":["POST"],"parameters":["packageType"],"bindings":{"packageType":"id"}},"rentalpackagetype.updateStatus":{"uri":"rental-package-types\/update-status","methods":["POST"]},"rentalpackagetype.delete":{"uri":"rental-package-types\/delete\/{packageType}","methods":["DELETE"],"parameters":["packageType"],"bindings":{"packageType":"id"}},"category.index":{"uri":"category","methods":["GET","HEAD"]},"category.create":{"uri":"category\/create","methods":["GET","HEAD"]},"category.store":{"uri":"category\/store","methods":["POST"]},"category.list":{"uri":"category\/list","methods":["GET","HEAD"]},"category.edit":{"uri":"category\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"category.update":{"uri":"category\/update\/{category}","methods":["POST"],"parameters":["category"]},"category.updateStatus":{"uri":"category\/update-status","methods":["POST"]},"category.delete":{"uri":"category\/delete\/{category}","methods":["DELETE"],"parameters":["category"]},"setprice.index":{"uri":"set-prices","methods":["GET","HEAD"]},"setprice.create":{"uri":"set-prices\/create","methods":["GET","HEAD"]},"setprice.vehiclelist":{"uri":"set-prices\/vehicle_types","methods":["GET","HEAD"]},"setprice.store":{"uri":"set-prices\/store","methods":["POST"]},"setprice.list":{"uri":"set-prices\/list","methods":["GET","HEAD"]},"setprice.edit":{"uri":"set-prices\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"setprice.update":{"uri":"set-prices\/update\/{zoneTypePrice}","methods":["POST"],"parameters":["zoneTypePrice"],"bindings":{"zoneTypePrice":"id"}},"setprice.delete":{"uri":"set-prices\/delete\/{id}","methods":["DELETE"],"parameters":["id"]},"setprice.updateStatus":{"uri":"set-prices\/update-status","methods":["POST"]},"setprice.packageIndex":{"uri":"set-prices\/packages\/{zoneType}","methods":["GET","HEAD"],"parameters":["zoneType"],"bindings":{"zoneType":"id"}},"setprice.packageList":{"uri":"set-prices\/packages\/list\/{zoneTypePrice}","methods":["GET","HEAD"],"parameters":["zoneTypePrice"],"bindings":{"zoneTypePrice":"id"}},"setprice.package-create":{"uri":"set-prices\/packages\/create\/{zoneTypePrice}","methods":["GET","HEAD"],"parameters":["zoneTypePrice"],"bindings":{"zoneTypePrice":"id"}},"setprice.packageStore":{"uri":"set-prices\/packages\/store","methods":["POST"]},"setprice.package-edit":{"uri":"set-prices\/packages\/edit\/{zoneTypePackage}","methods":["GET","HEAD"],"parameters":["zoneTypePackage"],"bindings":{"zoneTypePackage":"id"}},"setprice.package-update":{"uri":"set-prices\/packages\/update\/{zoneTypePackage}","methods":["POST"],"parameters":["zoneTypePackage"],"bindings":{"zoneTypePackage":"id"}},"setprice.package-delete":{"uri":"set-prices\/packages\/delete\/{zoneTypePackage}","methods":["DELETE"],"parameters":["zoneTypePackage"],"bindings":{"zoneTypePackage":"id"}},"setprice.updatePackageStatus":{"uri":"set-prices\/packages\/update-status","methods":["POST"]},"vehicletype.index":{"uri":"vehicle_type","methods":["GET","HEAD"]},"vehicletype.create":{"uri":"vehicle_type\/create","methods":["GET","HEAD"]},"vehicletype.store":{"uri":"vehicle_type\/store","methods":["POST"]},"vehicletype.list":{"uri":"vehicle_type\/list","methods":["GET","HEAD"]},"vehicletype.edit":{"uri":"vehicle_type\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"vehicletype.update":{"uri":"vehicle_type\/update\/{vehicle_type}","methods":["POST"],"parameters":["vehicle_type"],"bindings":{"vehicle_type":"id"}},"vehicletype.delete":{"uri":"vehicle_type\/delete\/{vehicle_type}","methods":["DELETE"],"parameters":["vehicle_type"],"bindings":{"vehicle_type":"id"}},"vehicletype.updateStatus":{"uri":"vehicle_type\/update-status","methods":["POST"]},"vehicletype.getCategory":{"uri":"vehicle_type\/getCategory","methods":["GET","HEAD"]},"vehiclemodel.index":{"uri":"vehicle-model","methods":["GET","HEAD"]},"vehiclemodel.create":{"uri":"vehicle-model\/create","methods":["GET","HEAD"]},"vehiclemodel.update":{"uri":"vehicle-model\/update","methods":["GET","HEAD"]},"vehiclemodel.test":{"uri":"vehicle-model\/test-url","methods":["GET","HEAD"]},"sos.index":{"uri":"sos","methods":["GET","HEAD"]},"sos.list":{"uri":"sos\/list","methods":["GET","HEAD"]},"sos.create":{"uri":"sos\/create","methods":["GET","HEAD"]},"sos.store":{"uri":"sos\/store","methods":["POST"]},"sos.edit":{"uri":"sos\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"sos.update":{"uri":"sos\/update\/{sos}","methods":["POST"],"parameters":["sos"],"bindings":{"sos":"id"}},"sos.updateStatus":{"uri":"sos\/update-status","methods":["POST"]},"sos.delete":{"uri":"sos\/delete\/{sos}","methods":["DELETE"],"parameters":["sos"],"bindings":{"sos":"id"}},"bank.index":{"uri":"driver-bank-info","methods":["GET","HEAD"]},"bank.list":{"uri":"driver-bank-info\/list","methods":["GET","HEAD"]},"bank.create":{"uri":"driver-bank-info\/create","methods":["GET","HEAD"]},"bank.store":{"uri":"driver-bank-info\/store","methods":["POST"]},"bank.edit":{"uri":"driver-bank-info\/edit\/{method}","methods":["GET","HEAD"],"parameters":["method"]},"bank.update":{"uri":"driver-bank-info\/update\/{method}","methods":["POST"],"parameters":["method"],"bindings":{"method":"id"}},"bank.updateStatus":{"uri":"driver-bank-info\/update-status","methods":["POST"]},"bank.delete":{"uri":"driver-bank-info\/delete\/{method}","methods":["DELETE"],"parameters":["method"],"bindings":{"method":"id"}},"promocode.index":{"uri":"promo-code","methods":["GET","HEAD"]},"promocode.list":{"uri":"promo-code\/list","methods":["GET","HEAD"]},"promocode.userList":{"uri":"promo-code\/userList","methods":["GET","HEAD"]},"promocode.create":{"uri":"promo-code\/create","methods":["GET","HEAD"]},"promocode.store":{"uri":"promo-code\/store","methods":["POST"]},"promocode.edit":{"uri":"promo-code\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"promocode.fetchServiceLocation":{"uri":"promo-code\/fetch","methods":["GET","HEAD"]},"promocode.update":{"uri":"promo-code\/update\/{promo}","methods":["POST"],"parameters":["promo"]},"promocode.delete":{"uri":"promo-code\/delete\/{promo}","methods":["DELETE"],"parameters":["promo"],"bindings":{"promo":"id"}},"promocode.updateStatus":{"uri":"promo-code\/update-status","methods":["POST"]},"pushnotification.index":{"uri":"push-notifications","methods":["GET","HEAD"]},"pushnotification.create":{"uri":"push-notifications\/create","methods":["GET","HEAD"]},"pushnotification.list":{"uri":"push-notifications\/list","methods":["GET","HEAD"]},"pushnotification.edit":{"uri":"push-notifications\/edit\/{notification}","methods":["GET","HEAD"],"parameters":["notification"],"bindings":{"notification":"id"}},"pushnotification.delete":{"uri":"push-notifications\/delete\/{notification}","methods":["DELETE"],"parameters":["notification"],"bindings":{"notification":"id"}},"pushnotification.send-push":{"uri":"push-notifications\/send-push","methods":["POST"]},"pushnotification.update":{"uri":"push-notifications\/update","methods":["POST"]},"cancellation.index":{"uri":"cancellation","methods":["GET","HEAD"]},"cancellation.list":{"uri":"cancellation\/list","methods":["GET","HEAD"]},"cancellation.create":{"uri":"cancellation\/create","methods":["GET","HEAD"]},"cancellation.store":{"uri":"cancellation\/store","methods":["POST"]},"cancellation.edit":{"uri":"cancellation\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"cancellation.update":{"uri":"cancellation\/update\/{cancellationReason}","methods":["POST"],"parameters":["cancellationReason"],"bindings":{"cancellationReason":"id"}},"cancellation.updateStatus":{"uri":"cancellation\/update-status","methods":["POST"]},"cancellation.delete":{"uri":"cancellation\/delete\/{cancellationReason}","methods":["DELETE"],"parameters":["cancellationReason"],"bindings":{"cancellationReason":"id"}},"faq.index":{"uri":"faq","methods":["GET","HEAD"]},"faq.list":{"uri":"faq\/list","methods":["GET","HEAD"]},"faq.create":{"uri":"faq\/create","methods":["GET","HEAD"]},"faq.store":{"uri":"faq\/store","methods":["POST"]},"faq.edit":{"uri":"faq\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"faq.update":{"uri":"faq\/update\/{faq}","methods":["POST"],"parameters":["faq"],"bindings":{"faq":"id"}},"faq.updateStatus":{"uri":"faq\/update-status","methods":["POST"]},"faq.delete":{"uri":"faq\/delete\/{faq}","methods":["DELETE"],"parameters":["faq"],"bindings":{"faq":"id"}},"complainttitle.index":{"uri":"complaint-title","methods":["GET","HEAD"]},"complainttitle.create":{"uri":"complaint-title\/create","methods":["GET","HEAD"]},"complainttitle.list":{"uri":"complaint-title\/list","methods":["GET","HEAD"]},"complainttitle.store":{"uri":"complaint-title\/store","methods":["POST"]},"complainttitle.edit":{"uri":"complaint-title\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"complainttitle.update":{"uri":"complaint-title\/update\/{complaintTitle}","methods":["POST"],"parameters":["complaintTitle"],"bindings":{"complaintTitle":"id"}},"complainttitle.updateStatus":{"uri":"complaint-title\/update-status","methods":["POST"]},"complainttitle.delete":{"uri":"complaint-title\/delete\/{complaintTitle}","methods":["DELETE"],"parameters":["complaintTitle"],"bindings":{"complaintTitle":"id"}},"drivergeneralcomplaint.driverGeneralComplaint":{"uri":"driver-complaint\/general-complaint","methods":["GET","HEAD"]},"driverGeneralComplaint.listComplaint":{"uri":"driver-complaint\/list","methods":["GET","HEAD"]},"driverGeneralComplaint.taken":{"uri":"driver-complaint\/taken\/{complaint}","methods":["GET","HEAD"],"parameters":["complaint"],"bindings":{"complaint":"id"}},"driverrequestcomplaint.driverRequestComplaint":{"uri":"driver-complaint\/request-complaint","methods":["GET","HEAD"]},"driverrequestcomplaint.requestListComplaint":{"uri":"driver-complaint\/driver-request-list","methods":["GET","HEAD"]},"usergeneralcomplaint.userGeneralComplaint":{"uri":"user-complaint\/general-complaint","methods":["GET","HEAD"]},"usergeneralcomplaint.listComplaint":{"uri":"user-complaint\/list","methods":["GET","HEAD"]},"usergeneralcomplaint.taken":{"uri":"user-complaint\/taken\/{complaint}","methods":["GET","HEAD"],"parameters":["complaint"],"bindings":{"complaint":"id"}},"userrequestcomplaint.userRequestComplaint":{"uri":"user-complaint\/request-complaint","methods":["GET","HEAD"]},"usergeneralcomplaint.requestComplaint":{"uri":"user-complaint\/request-list","methods":["GET","HEAD"]},"ownergeneralcomplaint.ownerGeneralComplaint":{"uri":"owner-complaint\/general-complaint","methods":["GET","HEAD"]},"ownergeneralcomplaint.listComplaint":{"uri":"owner-complaint\/list","methods":["GET","HEAD"]},"ownergeneralcomplaint.taken":{"uri":"owner-complaint\/taken\/{complaint}","methods":["GET","HEAD"],"parameters":["complaint"],"bindings":{"complaint":"id"}},"ownerrequestcomplaint.ownerRequestComplaint":{"uri":"owner-complaint\/request-complaint","methods":["GET","HEAD"]},"ownerrequestcomplaint.requestComplaint":{"uri":"owner-complaint\/request-list","methods":["GET","HEAD"]},"dispatch.index":{"uri":"dispatch","methods":["GET","HEAD"]},"dispatch.userRequestComplaint":{"uri":"dispatch\/request-complaint","methods":["GET","HEAD"]},"paymentgateway.index":{"uri":"payment-gateway","methods":["GET","HEAD"]},"paymentgateway.update":{"uri":"payment-gateway\/update","methods":["POST"]},"paymentgateway.updateStatus":{"uri":"payment-gateway\/update-statuss","methods":["POST"]},"smsgateway.index":{"uri":"sms-gateway","methods":["GET","HEAD"]},"firebase.index":{"uri":"firebase","methods":["GET","HEAD"]},"firebase.get":{"uri":"firebase\/get","methods":["GET","HEAD"]},"map.settings":{"uri":" map-settings","methods":["GET","HEAD"]},"mailconfiguration.index":{"uri":"mail-configuration","methods":["GET","HEAD"]},"mapapis.index":{"uri":"map-apis","methods":["GET","HEAD"]},"recaptcha.index":{"uri":"recaptcha","methods":["GET","HEAD"]},"mail-template.index":{"uri":"mail-template","methods":["GET","HEAD"]},"mail-template.create":{"uri":"mail-template\/create","methods":["GET","HEAD"]},"mail-template.list":{"uri":"mail-template\/list","methods":["GET","HEAD"]},"mail-template.store":{"uri":"mail-template\/store","methods":["POST"]},"mail-template.edit":{"uri":"mail-template\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"mail-template.update":{"uri":"mail-template\/update\/{emails}","methods":["POST"],"parameters":["emails"],"bindings":{"emails":"id"}},"mail-template.destroy":{"uri":"mail-template\/delete\/{emails}","methods":["DELETE"],"parameters":["emails"],"bindings":{"emails":"id"}},"map.heatmap":{"uri":"map\/heat_map","methods":["GET","HEAD"]},"map.godseye":{"uri":"map\/gods_eye","methods":["GET","HEAD"]},"map.openGodseye":{"uri":"map\/open_gods_eye","methods":["GET","HEAD"]},"approveddriver.Index":{"uri":"approved-drivers","methods":["GET","HEAD"]},"approveddriver.create":{"uri":"approved-drivers\/create","methods":["GET","HEAD"]},"approveddriver.store":{"uri":"approved-drivers\/store","methods":["POST"]},"approveddriver.edit":{"uri":"approved-drivers\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"approveddriver.update":{"uri":"approved-drivers\/update\/{driver}","methods":["POST"],"parameters":["driver"],"bindings":{"driver":"id"}},"approveddriver.disapprove":{"uri":"approved-drivers\/disapprove\/{driver}","methods":["POST"],"parameters":["driver"],"bindings":{"driver":"id"}},"approveddriver.viewProfile":{"uri":"approved-drivers\/view-profile\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"approveddriver.uploadDocument":{"uri":"approved-drivers\/document-upolad","methods":["GET","HEAD"]},"approveddriver.checkMobileExists":{"uri":"approved-drivers\/check-mobile\/{mobile}\/{driverId}","methods":["GET","HEAD"],"parameters":["mobile","driverId"]},"approveddriver.checkEmailExists":{"uri":"approved-drivers\/check-email\/{email}\/{driverId}","methods":["GET","HEAD"],"parameters":["email","driverId"]},"approveddriver.list":{"uri":"approved-drivers\/list","methods":["GET","HEAD"]},"approveddriver.ViewDocument":{"uri":"approved-drivers\/document\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"approveddriver.listDocument":{"uri":"approved-drivers\/document\/list\/{driverId}","methods":["GET","HEAD"],"parameters":["driverId"]},"approveddriver.documentUpload":{"uri":"approved-drivers\/document-upload\/{document}\/{driverId}","methods":["GET","HEAD"],"parameters":["document","driverId"],"bindings":{"document":"id","driverId":"id"}},"approveddriver.documentUploadStore":{"uri":"approved-drivers\/document-upload\/{document}\/{driverId}","methods":["POST"],"parameters":["document","driverId"],"bindings":{"document":"id","driverId":"id"}},"approveddriver.approveDriverDocument":{"uri":"approved-drivers\/document-toggle\/{documentId}\/{driverId}\/{status}","methods":["GET","HEAD"],"parameters":["documentId","driverId","status"]},"approveddriver.addAmount":{"uri":"approved-drivers\/wallet-add-amount\/{driver}","methods":["POST"],"parameters":["driver"],"bindings":{"driver":"id"}},"approveddriver.walletHistoryList":{"uri":"approved-drivers\/wallet-history\/list\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"approveddrivers.requestList":{"uri":"approved-drivers\/request\/list\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"pendingdriver.indexIndex":{"uri":"pending-drivers","methods":["GET","HEAD"]},"driverlevelup.index":{"uri":"drivers-levelup","methods":["GET","HEAD"]},"driverlevelup.list":{"uri":"drivers-levelup\/list","methods":["GET","HEAD"]},"approveddriver.driverLeveStore":{"uri":"drivers-levelup\/store","methods":["POST"]},"driverlevelup.edit":{"uri":"drivers-levelup\/edit\/{level}","methods":["GET","HEAD"],"parameters":["level"],"bindings":{"level":"id"}},"driverlevelup.settingsUpdate":{"uri":"drivers-levelup\/settingsUpdate","methods":["POST"]},"approveddriver.driverLevelUpdate":{"uri":"drivers-levelup\/update\/{level}","methods":["POST"],"parameters":["level"],"bindings":{"level":"id"}},"approveddriver.driverLevelDelete":{"uri":"drivers-levelup\/delete\/{level}","methods":["DELETE"],"parameters":["level"],"bindings":{"level":"id"}},"driverlevelup.create":{"uri":"drivers-levelup\/create","methods":["GET","HEAD"]},"driversrating.driverRatingIndex":{"uri":"drivers-rating","methods":["GET","HEAD"]},"driversrating.list":{"uri":"drivers-rating\/list","methods":["GET","HEAD"]},"driversrating.viewDriverRating":{"uri":"drivers-rating\/view-profile\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"driversRequestRating.history":{"uri":"drivers-rating\/request-list\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"deleterequestdrivers.index":{"uri":"delete-request-drivers","methods":["GET","HEAD"]},"deleterequestdrivers.list":{"uri":"delete-request-drivers\/list","methods":["GET","HEAD"]},"deleterequestdrivers.destroyDriver":{"uri":"delete-request-drivers\/delete\/{driver}","methods":["DELETE"],"parameters":["driver"],"bindings":{"driver":"id"}},"driverneededdocuments.Index":{"uri":"driver-needed-documents","methods":["GET","HEAD"]},"driverneededdocuments.list":{"uri":"driver-needed-documents\/list","methods":["GET","HEAD"]},"driverneededdocuments.Create":{"uri":"driver-needed-documents\/create","methods":["GET","HEAD"]},"driverneededdocuments.store":{"uri":"driver-needed-documents\/store","methods":["POST"]},"driverneededdocuments.Update":{"uri":"driver-needed-documents\/update\/{driverNeededDocument}","methods":["POST"],"parameters":["driverNeededDocument"],"bindings":{"driverNeededDocument":"id"}},"driverneededdocuments.edit":{"uri":"driver-needed-documents\/edit\/{driverNeededDocument}","methods":["GET","HEAD"],"parameters":["driverNeededDocument"],"bindings":{"driverNeededDocument":"id"}},"driverneededdocuments.updateDocumentStatus":{"uri":"driver-needed-documents\/update-status","methods":["POST"]},"driverneededdocuments.destroyDriverDocument":{"uri":"driver-needed-documents\/delete\/{driverNeededDocument}","methods":["DELETE"],"parameters":["driverNeededDocument"],"bindings":{"driverNeededDocument":"id"}},"withdrawalrequestdrivers.index":{"uri":"withdrawal-request-drivers","methods":["GET","HEAD"]},"withdrawalrequestdrivers.list":{"uri":"withdrawal-request-drivers\/list","methods":["GET","HEAD"]},"withdrawalrequestdrivers.ViewDetails":{"uri":"withdrawal-request-drivers\/view-in-detail\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"withdrawalrequestAmount.list":{"uri":"withdrawal-request-drivers\/amounts\/{driver_id}","methods":["GET","HEAD"],"parameters":["driver_id"],"bindings":{"driver_id":"id"}},"withdrawalrequest.updateStatus":{"uri":"withdrawal-request-drivers\/update-status","methods":["POST"]},"negativebalancedrivers.index":{"uri":"negative-balance-drivers","methods":["GET","HEAD"]},"negativebalancedrivers.list":{"uri":"negative-balance-drivers\/list","methods":["GET","HEAD"]},"negativebalancedrivers.payment":{"uri":"negative-balance-drivers\/view-profile\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"admins.index":{"uri":"admins","methods":["GET","HEAD"]},"admins.list":{"uri":"admins\/list","methods":["GET","HEAD"]},"admins.create":{"uri":"admins\/create","methods":["GET","HEAD"]},"admins.store":{"uri":"admins\/store","methods":["POST"]},"admins.update":{"uri":"admins\/update\/{adminDetail}","methods":["POST"],"parameters":["adminDetail"],"bindings":{"adminDetail":"id"}},"admins.edit":{"uri":"admins\/edit\/{adminDetail}","methods":["GET","HEAD"],"parameters":["adminDetail"],"bindings":{"adminDetail":"id"}},"admin.destroy":{"uri":"admins\/delete\/{adminDetail}","methods":["DELETE"],"parameters":["adminDetail"],"bindings":{"adminDetail":"id"}},"admin.updateDocumentStatus":{"uri":"admins\/update-status","methods":["POST"]},"report.userReport":{"uri":"report\/user-report","methods":["GET","HEAD"]},"report.userReportDownload":{"uri":"report\/user-report-download","methods":["POST"]},"report.driverReport":{"uri":"report\/driver-report","methods":["GET","HEAD"]},"report.driverReportDownload":{"uri":"report\/driver-report-download","methods":["POST"]},"report.getVehicletypes":{"uri":"report\/getVehicleTypes","methods":["GET","HEAD"]},"report.ownerReport":{"uri":"report\/owner-report","methods":["GET","HEAD"]},"report.ownerReportDownload":{"uri":"report\/owner-report-download","methods":["POST"]},"report.financeReport":{"uri":"report\/finance-report","methods":["GET","HEAD"]},"report.financeReportDownload":{"uri":"report\/finance-report-download","methods":["POST"]},"report.fleetReport":{"uri":"report\/fleet-report","methods":["GET","HEAD"]},"report.listFleet":{"uri":"report\/list-fleets","methods":["GET","HEAD"]},"report.fleetReportDownload":{"uri":"report\/fleet-report-download","methods":["POST"]},"report.driverDutyReport":{"uri":"report\/driver-duty-report","methods":["GET","HEAD"]},"report.driverDutyReportDownload":{"uri":"report\/driver-duty-report-download","methods":["POST"]},"report.getDrivers":{"uri":"report\/getDrivers","methods":["GET","HEAD"]},"manageowners.index":{"uri":"manage-owners","methods":["GET","HEAD"]},"manageowners.Create":{"uri":"manage-owners\/create","methods":["GET","HEAD"]},"manageowners.list":{"uri":"manage-owners\/list","methods":["GET","HEAD"]},"manageowners.store":{"uri":"manage-owners\/store","methods":["POST"]},"manageowners.edit":{"uri":"manage-owners\/edit\/{owner}","methods":["GET","HEAD"],"parameters":["owner"],"bindings":{"owner":"id"}},"manageowners.update":{"uri":"manage-owners\/update\/{owner}","methods":["POST"],"parameters":["owner"],"bindings":{"owner":"id"}},"manageowners.approve":{"uri":"manage-owners\/approve\/{owner}","methods":["POST"],"parameters":["owner"]},"manageowners.delete":{"uri":"manage-owners\/delete\/{owner}","methods":["DELETE"],"parameters":["owner"],"bindings":{"owner":"id"}},"manageowners.document":{"uri":"manage-owners\/document\/{owner}","methods":["GET","HEAD"],"parameters":["owner"],"bindings":{"owner":"id"}},"manageowners.checkEmailExists":{"uri":"manage-owners\/check-email","methods":["POST"]},"manageowners.checkMobileExists":{"uri":"manage-owners\/check-mobile","methods":["POST"]},"manageowners.listDocument":{"uri":"manage-owners\/document\/list\/{owner}","methods":["GET","HEAD"],"parameters":["owner"]},"manageowners.documentUpload":{"uri":"manage-owners\/document-upload\/{document}\/{ownerId}","methods":["GET","HEAD"],"parameters":["document","ownerId"],"bindings":{"document":"id","ownerId":"id"}},"manageowners.documentUploadStore":{"uri":"manage-owners\/document-upload\/{document}\/{ownerId}","methods":["POST"],"parameters":["document","ownerId"],"bindings":{"document":"id","ownerId":"id"}},"manageowners.approveOwnerDocument":{"uri":"manage-owners\/document-toggle\/{documentId}\/{ownerId}\/{status}","methods":["GET","HEAD"],"parameters":["documentId","ownerId","status"]},"manageowners.ownerPaymentHistory":{"uri":"manage-owners\/owner-payment-history\/{owner}","methods":["GET","HEAD"],"parameters":["owner"]},"withdrawalrequestOwners.index":{"uri":"withdrawal-request-owners","methods":["GET","HEAD"]},"withdrawalrequestOwners.list":{"uri":"withdrawal-request-owners\/list","methods":["GET","HEAD"]},"withdrawalrequestOwners.ViewDetails":{"uri":"withdrawal-request-owners\/view-in-detail\/{owner}","methods":["GET","HEAD"],"parameters":["owner"],"bindings":{"owner":"id"}},"withdrawalrequestOwner.list":{"uri":"withdrawal-request-owners\/amounts\/{owner_id}","methods":["GET","HEAD"],"parameters":["owner_id"],"bindings":{"owner_id":"id"}},"withdrawalrequestOwners.updateStatus":{"uri":"withdrawal-request-owners\/update-status","methods":["POST"]},"fleetneeddocuments.index":{"uri":"fleet-needed-documents","methods":["GET","HEAD"]},"fleetneeddocuments.list":{"uri":"fleet-needed-documents\/list","methods":["GET","HEAD"]},"fleetneeddocuments.create":{"uri":"fleet-needed-documents\/create","methods":["GET","HEAD"]},"fleetneeddocuments.store":{"uri":"fleet-needed-documents\/store","methods":["POST"]},"fleetneeddocuments.edit":{"uri":"fleet-needed-documents\/edit\/{document}","methods":["GET","HEAD"],"parameters":["document"],"bindings":{"document":"id"}},"fleetneeddocuments.update":{"uri":"fleet-needed-documents\/update\/{document}","methods":["POST"],"parameters":["document"],"bindings":{"document":"id"}},"fleetneeddocuments.updatestatus":{"uri":"fleet-needed-documents\/toggle","methods":["POST"]},"fleetneeddocuments.delete":{"uri":"fleet-needed-documents\/delete\/{document}","methods":["DELETE"],"parameters":["document"],"bindings":{"document":"id"}},"managefleets.index":{"uri":"manage-fleet","methods":["GET","HEAD"]},"managefleets.Create":{"uri":"manage-fleet\/create","methods":["GET","HEAD"]},"managefleets.list":{"uri":"manage-fleet\/list","methods":["GET","HEAD"]},"managefleets.store":{"uri":"manage-fleet\/store","methods":["POST"]},"managefleets.edit":{"uri":"manage-fleet\/edit\/{fleet}","methods":["GET","HEAD"],"parameters":["fleet"],"bindings":{"fleet":"id"}},"managefleets.update":{"uri":"manage-fleet\/update\/{fleet}","methods":["POST"],"parameters":["fleet"],"bindings":{"fleet":"id"}},"managefleets.assignDriver":{"uri":"manage-fleet\/assign\/{fleet}\/{driver}","methods":["POST"],"parameters":["fleet","driver"],"bindings":{"fleet":"id","driver":"id"}},"managefleets.approve":{"uri":"manage-fleet\/approve\/{fleet}","methods":["POST"],"parameters":["fleet"]},"managefleets.delete":{"uri":"manage-fleet\/delete\/{fleet}","methods":["DELETE"],"parameters":["fleet"],"bindings":{"fleet":"id"}},"managefleets.document":{"uri":"manage-fleet\/document\/{fleet}","methods":["GET","HEAD"],"parameters":["fleet"],"bindings":{"fleet":"id"}},"managefleets.listDocument":{"uri":"manage-fleet\/document\/list\/{fleet}","methods":["GET","HEAD"],"parameters":["fleet"]},"managefleets.listFleetDrivers":{"uri":"manage-fleet\/listFleetDriver\/{fleet}","methods":["GET","HEAD"],"parameters":["fleet"],"bindings":{"fleet":"id"}},"managefleets.documentUpload":{"uri":"manage-fleet\/document-upload\/{document}\/{fleetId}","methods":["GET","HEAD"],"parameters":["document","fleetId"],"bindings":{"document":"id","fleetId":"id"}},"managefleets.documentUploadStore":{"uri":"manage-fleet\/document-upload\/{document}\/{fleetId}","methods":["POST"],"parameters":["document","fleetId"],"bindings":{"document":"id","fleetId":"id"}},"managefleets.approvefleetDocument":{"uri":"manage-fleet\/document-toggle\/{documentId}\/{fleetId}\/{status}","methods":["GET","HEAD"],"parameters":["documentId","fleetId","status"]},"managefleets.fleetPaymentHistory":{"uri":"manage-fleet\/fleet-payment-history\/{fleet}","methods":["GET","HEAD"],"parameters":["fleet"]},"approvedFleetdriver.Index":{"uri":"fleet-drivers","methods":["GET","HEAD"]},"approvedFleetdriver.pendingIndex":{"uri":"fleet-drivers\/pending","methods":["GET","HEAD"]},"fleet-drivers.list":{"uri":"fleet-drivers\/list","methods":["GET","HEAD"]},"fleet-drivers.store":{"uri":"fleet-drivers\/store","methods":["POST"]},"fleet-drivers.edit":{"uri":"fleet-drivers\/edit\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"fleet-drivers.create":{"uri":"fleet-drivers\/create","methods":["GET","HEAD"]},"fleet-drivers.update":{"uri":"fleet-drivers\/update\/{driver}","methods":["POST"],"parameters":["driver"],"bindings":{"driver":"id"}},"fleet-drivers.approve":{"uri":"fleet-drivers\/approve\/{driver}","methods":["POST"],"parameters":["driver"],"bindings":{"driver":"id"}},"fleet-drivers.delete":{"uri":"fleet-drivers\/delete\/{driver}","methods":["DELETE"],"parameters":["driver"]},"fleet-drivers.listOwnersByLocation":{"uri":"fleet-drivers\/ownerList","methods":["GET","HEAD"]},"fleet-drivers.listOwners":{"uri":"fleet-drivers\/list-owners","methods":["GET","HEAD"]},"approvedFleetdriver.ViewDocument":{"uri":"fleet-drivers\/document\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"approvedFleetdriver.listDocument":{"uri":"fleet-drivers\/document\/list\/{driverId}","methods":["GET","HEAD"],"parameters":["driverId"]},"approvedFleetdriver.documentUpload":{"uri":"fleet-drivers\/document-upload\/{document}\/{driverId}","methods":["GET","HEAD"],"parameters":["document","driverId"],"bindings":{"document":"id","driverId":"id"}},"approvedFleetdriver.documentUploadStore":{"uri":"fleet-drivers\/document-upload-store\/{document}\/{driverId}","methods":["POST"],"parameters":["document","driverId"],"bindings":{"document":"id","driverId":"id"}},"approvedFleetdriver.approveDriverDocument":{"uri":"fleet-drivers\/document-toggle\/{documentId}\/{driverId}\/{status}","methods":["GET","HEAD"],"parameters":["documentId","driverId","status"]},"pendingdriver.fleetIndex":{"uri":"fleet-drivers\/pending-drivers","methods":["GET","HEAD"]},"goodstype.index":{"uri":"goods-type","methods":["GET","HEAD"]},"goodstype.create":{"uri":"goods-type\/create","methods":["GET","HEAD"]},"goodstype.store":{"uri":"goods-type\/store","methods":["POST"]},"goodstype.list":{"uri":"goods-type\/list","methods":["GET","HEAD"]},"goodstype.edit":{"uri":"goods-type\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"goodstype.update":{"uri":"goods-type\/update\/{goods_type}","methods":["POST"],"parameters":["goods_type"]},"goodstype.delete":{"uri":"goods-type\/delete\/{goods_type}","methods":["DELETE"],"parameters":["goods_type"]},"goodstype.updateStatus":{"uri":"goods-type\/update-status","methods":["POST"]},"bannerimage.index":{"uri":"banner-image","methods":["GET","HEAD"]},"bannerimage.create":{"uri":"banner-image\/create","methods":["GET","HEAD"]},"bannerimage.list":{"uri":"banner-image\/list","methods":["GET","HEAD"]},"bannerimage.update":{"uri":"banner-image\/update\/{bannerimage}","methods":["POST"],"parameters":["bannerimage"],"bindings":{"bannerimage":"id"}},"bannerimage.store":{"uri":"banner-image\/store","methods":["POST"]},"bannerimage.edit":{"uri":"banner-image\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"bannerimage.delete":{"uri":"banner-image\/delete\/{bannerimage}","methods":["DELETE"],"parameters":["bannerimage"],"bindings":{"bannerimage":"id"}},"bannerimage.updateStatus":{"uri":"banner-image\/update-status","methods":["POST"]},"ownerneeddocuments.index":{"uri":"owner-needed-documents","methods":["GET","HEAD"]},"ownerneeddocuments.list":{"uri":"owner-needed-documents\/list","methods":["GET","HEAD"]},"ownerneeddocuments.create":{"uri":"owner-needed-documents\/create","methods":["GET","HEAD"]},"ownerneeddocuments.store":{"uri":"owner-needed-documents\/store","methods":["POST"]},"ownerneeddocuments.edit":{"uri":"owner-needed-documents\/edit\/{document}","methods":["GET","HEAD"],"parameters":["document"],"bindings":{"document":"id"}},"ownerneeddocuments.update":{"uri":"owner-needed-documents\/update\/{document}","methods":["POST"],"parameters":["document"],"bindings":{"document":"id"}},"ownerneeddocuments.updatestatus":{"uri":"owner-needed-documents\/toggle","methods":["POST"]},"ownerneeddocuments.delete":{"uri":"owner-needed-documents\/delete\/{document}","methods":["DELETE"],"parameters":["document"],"bindings":{"document":"id"}},"onboardingscreen.index":{"uri":"onboarding-screen","methods":["GET","HEAD"]},"onboardingscreen.list":{"uri":"onboarding-screen\/list","methods":["GET","HEAD"]},"onboardingscreen.edit":{"uri":"onboarding-screen\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"onboardingscreen.update":{"uri":"onboarding-screen\/update\/{id}","methods":["POST"],"parameters":["id"]},"onboardingscreen.updateStatus":{"uri":"onboarding-screen\/update-status","methods":["POST"]},"invoiceconfiguration.index":{"uri":"invoice-configuration","methods":["GET","HEAD"]},"mapsettings.index":{"uri":"map-setting","methods":["GET","HEAD"]},"mapsettings.update":{"uri":"map-setting\/update","methods":["POST"]},"settings.generalSettings":{"uri":"general-settings","methods":["GET","HEAD"]},"settings.updateGeneralSettings":{"uri":"general-settings\/update","methods":["POST"]},"settings.updateStatus":{"uri":"general-settings\/update-status","methods":["POST"]},"settings.customizationSettings":{"uri":"customization-settings","methods":["GET","HEAD"]},"settings.updateCustomizationSettings":{"uri":"customization-settings\/update","methods":["POST"]},"settings.updateCustomizationStatus":{"uri":"customization-settings\/update-status","methods":["POST"]},"settings.transportRideSettings":{"uri":"transport-ride-settings","methods":["GET","HEAD"]},"settings.updateTransportSettings":{"uri":"transport-ride-settings\/update","methods":["POST"]},"settings.updateTransportStatus":{"uri":"transport-ride-settings\/update-status","methods":["POST"]},"settings.bidRideSettings":{"uri":"bid-ride-settings","methods":["GET","HEAD"]},"settings.updateBidSettings":{"uri":"bid-ride-settings\/update","methods":["POST"]},"settings.walletSettings":{"uri":"wallet-settings","methods":["GET","HEAD"]},"settings.updateWalletSettings":{"uri":"wallet-settings\/update","methods":["POST"]},"settings.referralSettings":{"uri":"referral-settings","methods":["GET","HEAD"]},"settings.updateRefrerralSettings":{"uri":"referral-settings\/update","methods":["POST"]},"triprequest.ridesRequest":{"uri":"rides-request","methods":["GET","HEAD"]},"triprequest.list":{"uri":"rides-request\/list","methods":["GET","HEAD"]},"triprequest.driverFind":{"uri":"rides-request\/driver\/{driver}","methods":["POST"],"parameters":["driver"],"bindings":{"driver":"id"}},"triprequest.viewDetails":{"uri":"rides-request\/view\/{requestmodel}","methods":["GET","HEAD"],"parameters":["requestmodel"],"bindings":{"requestmodel":"id"}},"triprequest.cancel":{"uri":"rides-request\/cancel\/{requestmodel}","methods":["GET","HEAD"],"parameters":["requestmodel"],"bindings":{"requestmodel":"id"}},"triprequest.sosDetail":{"uri":"rides-request\/detail\/{request}","methods":["GET","HEAD"],"parameters":["request"],"bindings":{"request":"id"}},"triprequest.scheduledRides":{"uri":"scheduled-rides","methods":["GET","HEAD"]},"triprequest.outstationRides":{"uri":"out-station-rides","methods":["GET","HEAD"]},"triprequest.cancellationRides":{"uri":"cancellation-rides","methods":["GET","HEAD"]},"triprequest.cancellationRidesViewDetails":{"uri":"cancellation-rides\/view","methods":["GET","HEAD"]},"deliveryTriprequest.ridesRequest":{"uri":"delivery-rides-request","methods":["GET","HEAD"]},"deliveryTriprequest.list":{"uri":"delivery-rides-request\/list","methods":["GET","HEAD"]},"deliveryTriprequest.driverFind":{"uri":"delivery-rides-request\/driver\/{driver}","methods":["POST"],"parameters":["driver"],"bindings":{"driver":"id"}},"deliveryTriprequest.viewDetails":{"uri":"delivery-rides-request\/view\/{requestmodel}","methods":["GET","HEAD"],"parameters":["requestmodel"],"bindings":{"requestmodel":"id"}},"deliveryTriprequest.cancel":{"uri":"delivery-rides-request\/cancel\/{requestmodel}","methods":["GET","HEAD"],"parameters":["requestmodel"],"bindings":{"requestmodel":"id"}},"delivery-scheduled-rides.scheduledRides":{"uri":"delivery-scheduled-rides","methods":["GET","HEAD"]},"delivery-scheduled-rides.viewDetails":{"uri":"delivery-scheduled-rides\/view","methods":["GET","HEAD"]},"deliveryrequest.cancellationRides":{"uri":"delivery-cancellation-rides","methods":["GET","HEAD"]},"deliveryrequest.viewCancelDetails":{"uri":"delivery-cancellation-rides\/view","methods":["GET","HEAD"]},"triprequest.ongoingRides":{"uri":"ongoing-rides","methods":["GET","HEAD"]},"triprequest.ongoingRideDetail":{"uri":"ongoing-rides\/find-ride\/{request}","methods":["GET","HEAD"],"parameters":["request"],"bindings":{"request":"id"}},"triprequest.assignView":{"uri":"ongoing-rides\/assign\/{request}","methods":["GET","HEAD"],"parameters":["request"],"bindings":{"request":"id"}},"triprequest.assignDriver":{"uri":"ongoing-rides\/assign-driver\/{requestmodel}","methods":["POST"],"parameters":["requestmodel"],"bindings":{"requestmodel":"id"}},"images.index":{"uri":"images","methods":["GET","HEAD"]},"images.create":{"uri":"images\/create","methods":["GET","HEAD"]},"images.update":{"uri":"images\/update","methods":["GET","HEAD"]},"users.index":{"uri":"users","methods":["GET","HEAD"]},"users.list":{"uri":"users\/list","methods":["GET","HEAD"]},"users.create":{"uri":"users\/create","methods":["GET","HEAD"]},"users.store":{"uri":"users\/store","methods":["POST"]},"users.edit":{"uri":"users\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"users.update":{"uri":"users\/update\/{user}","methods":["POST"],"parameters":["user"],"bindings":{"user":"id"}},"users.checkMobileExists":{"uri":"users\/check-mobile\/{mobile}\/{id}","methods":["GET","HEAD"],"parameters":["mobile","id"]},"users.checkEmailExists":{"uri":"users\/check-email\/{email}\/{id}","methods":["GET","HEAD"],"parameters":["email","id"]},"users.updateStatus":{"uri":"users\/update-status","methods":["POST"]},"users.view-profile":{"uri":"users\/view-profile\/{user}","methods":["GET","HEAD"],"parameters":["user"],"bindings":{"user":"id"}},"users.addAmount":{"uri":"users\/wallet-add-amount\/{user}","methods":["POST"],"parameters":["user"],"bindings":{"user":"id"}},"users.walletHistoryList":{"uri":"users\/wallet-history\/list\/{user}","methods":["GET","HEAD"],"parameters":["user"],"bindings":{"user":"id"}},"users.requestList":{"uri":"users\/request\/list\/{user}","methods":["GET","HEAD"],"parameters":["user"],"bindings":{"user":"id"}},"users.deleted-users":{"uri":"users\/deleted-user","methods":["GET","HEAD"]},"users.deletedList":{"uri":"users\/deletedList","methods":["GET","HEAD"]},"zone.index":{"uri":"zones","methods":["GET","HEAD"]},"zone.create":{"uri":"zones\/create","methods":["GET","HEAD"]},"zone.store":{"uri":"zones\/store","methods":["POST"]},"zone.fetch":{"uri":"zones\/fetch","methods":["GET","HEAD"]},"zone.list":{"uri":"zones\/list","methods":["GET","HEAD"]},"zone.edit":{"uri":"zones\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"zone.update":{"uri":"zones\/update\/{zone}","methods":["POST"],"parameters":["zone"],"bindings":{"zone":"id"}},"zone.updateStatus":{"uri":"zones\/update-status","methods":["POST"]},"zone.map":{"uri":"zones\/map\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"zone.surge":{"uri":"zones\/surge\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"zone.updateSurge":{"uri":"zones\/surge\/update\/{zone}","methods":["POST"],"parameters":["zone"],"bindings":{"zone":"id"}},"incentives.index":{"uri":"incentives","methods":["GET","HEAD"]},"incentives.update":{"uri":"incentives\/update","methods":["POST"]},"landing.index":{"uri":"\/","methods":["GET","HEAD"]},"landing.driver":{"uri":"driver","methods":["GET","HEAD"]},"landing.aboutus":{"uri":"aboutus","methods":["GET","HEAD"]},"landing.user":{"uri":"user","methods":["GET","HEAD"]},"landing.contact":{"uri":"contact","methods":["GET","HEAD"]},"landing.privacy":{"uri":"privacy","methods":["GET","HEAD"]},"landing.compliance":{"uri":"compliance","methods":["GET","HEAD"]},"landing.terms":{"uri":"terms","methods":["GET","HEAD"]},"landing.dmv":{"uri":"dmv","methods":["GET","HEAD"]},"web-booking.create-booking":{"uri":"create-booking","methods":["GET","HEAD"]},"web-booking.profile":{"uri":"profile","methods":["GET","HEAD"]},"user.updateProfile":{"uri":"user\/update-profile","methods":["POST"]},"web-booking.history":{"uri":"history","methods":["GET","HEAD"]},"history.viewDetails":{"uri":"history\/view\/{requestmodel}","methods":["GET","HEAD"],"parameters":["requestmodel"],"bindings":{"requestmodel":"id"}},"web-users.list":{"uri":"webuser\/list","methods":["GET","HEAD"]},"app.install":{"uri":"installation","methods":["GET","HEAD"]},"overall.menu":{"uri":"overall-menu","methods":["GET","HEAD"]},"chat.index":{"uri":"chat","methods":["GET","HEAD"]},"chat.fetchUser":{"uri":"chat\/fetch-user","methods":["GET","HEAD"]},"chat.messages":{"uri":"chat\/messages\/{conversationId}","methods":["GET","HEAD"],"parameters":["conversationId"],"bindings":{"conversationId":"id"}},"chat.sendAdmin":{"uri":"chat\/send-admin","methods":["POST"]},"chat.closeChat":{"uri":"chat\/close-chat","methods":["POST"]},"chat.fetchChats":{"uri":"chat\/fetchChat","methods":["GET","HEAD"]},"chat.readAll":{"uri":"chat\/readAll","methods":["GET","HEAD"]},"landing_home.index":{"uri":"landing-home","methods":["GET","HEAD"]},"landing_home.list":{"uri":"landing-home\/list","methods":["GET","HEAD"]},"landing_home.create":{"uri":"landing-home\/create","methods":["GET","HEAD"]},"landing_home.store":{"uri":"landing-home\/store","methods":["POST"]},"landing_home.edit":{"uri":"landing-home\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"landing_home.update":{"uri":"landing-home\/update\/{landingHome}","methods":["POST"],"parameters":["landingHome"],"bindings":{"landingHome":"id"}},"landing_home.delete":{"uri":"landing-home\/delete\/{landingHome}","methods":["DELETE"],"parameters":["landingHome"],"bindings":{"landingHome":"id"}},"landing_abouts.index":{"uri":"landing-aboutus","methods":["GET","HEAD"]},"landing_abouts.list":{"uri":"landing-aboutus\/list","methods":["GET","HEAD"]},"landing_abouts.create":{"uri":"landing-aboutus\/create","methods":["GET","HEAD"]},"landing_abouts.store":{"uri":"landing-aboutus\/store","methods":["POST"]},"landing_abouts.edit":{"uri":"landing-aboutus\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"landing_abouts.update":{"uri":"landing-aboutus\/update\/{landingAbouts}","methods":["POST"],"parameters":["landingAbouts"],"bindings":{"landingAbouts":"id"}},"landing_abouts.delete":{"uri":"landing-aboutus\/delete\/{landingAbouts}","methods":["DELETE"],"parameters":["landingAbouts"],"bindings":{"landingAbouts":"id"}},"landing_driver.index":{"uri":"landing-driver","methods":["GET","HEAD"]},"landing_driver.list":{"uri":"landing-driver\/list","methods":["GET","HEAD"]},"landing_driver.create":{"uri":"landing-driver\/create","methods":["GET","HEAD"]},"landing_driver.store":{"uri":"landing-driver\/store","methods":["POST"]},"landing_driver.edit":{"uri":"landing-driver\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"landing_driver.update":{"uri":"landing-driver\/update\/{landingDriver}","methods":["POST"],"parameters":["landingDriver"],"bindings":{"landingDriver":"id"}},"landing_driver.delete":{"uri":"landing-driver\/delete\/{landingDriver}","methods":["DELETE"],"parameters":["landingDriver"],"bindings":{"landingDriver":"id"}},"landing_user.index":{"uri":"landing-user","methods":["GET","HEAD"]},"landing_user.list":{"uri":"landing-user\/list","methods":["GET","HEAD"]},"landing_user.create":{"uri":"landing-user\/create","methods":["GET","HEAD"]},"landing_user.store":{"uri":"landing-user\/store","methods":["POST"]},"landing_user.edit":{"uri":"landing-user\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"landing_user.update":{"uri":"landing-user\/update\/{landingUser}","methods":["POST"],"parameters":["landingUser"],"bindings":{"landingUser":"id"}},"landing_user.delete":{"uri":"landing-user\/delete\/{landingUser}","methods":["DELETE"],"parameters":["landingUser"],"bindings":{"landingUser":"id"}},"landing_header.index":{"uri":"landing-header","methods":["GET","HEAD"]},"landing_header.list":{"uri":"landing-header\/list","methods":["GET","HEAD"]},"landing_header.create":{"uri":"landing-header\/create","methods":["GET","HEAD"]},"landing_header.store":{"uri":"landing-header\/store","methods":["POST"]},"landing_header.edit":{"uri":"landing-header\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"landing_header.update":{"uri":"landing-header\/update\/{landingHeader}","methods":["POST"],"parameters":["landingHeader"],"bindings":{"landingHeader":"id"}},"landing_header.delete":{"uri":"landing-header\/delete\/{landingHeader}","methods":["DELETE"],"parameters":["landingHeader"],"bindings":{"landingHeader":"id"}},"landing_quicklink.index":{"uri":"landing-quicklink","methods":["GET","HEAD"]},"landing_quicklink.list":{"uri":"landing-quicklink\/list","methods":["GET","HEAD"]},"landing_quicklink.create":{"uri":"landing-quicklink\/create","methods":["GET","HEAD"]},"landing_quicklink.store":{"uri":"landing-quicklink\/store","methods":["POST"]},"landing_quicklink.edit":{"uri":"landing-quicklink\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"landing_quicklink.update":{"uri":"landing-quicklink\/update\/{landingQuickLink}","methods":["POST"],"parameters":["landingQuickLink"],"bindings":{"landingQuickLink":"id"}},"landing_quicklink.delete":{"uri":"landing-quicklink\/delete\/{landingQuickLink}","methods":["DELETE"],"parameters":["landingQuickLink"],"bindings":{"landingQuickLink":"id"}},"landing_contact.index":{"uri":"landing-contact","methods":["GET","HEAD"]},"landing_contact.list":{"uri":"landing-contact\/list","methods":["GET","HEAD"]},"landing_contact.create":{"uri":"landing-contact\/create","methods":["GET","HEAD"]},"landing_contact.store":{"uri":"landing-contact\/store","methods":["POST"]},"landing_contact.edit":{"uri":"landing-contact\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"landing_contact.update":{"uri":"landing-contact\/update\/{landingContact}","methods":["POST"],"parameters":["landingContact"],"bindings":{"landingContact":"id"}},"landing_contact.delete":{"uri":"landing-contact\/delete\/{landingContact}","methods":["DELETE"],"parameters":["landingContact"],"bindings":{"landingContact":"id"}},"landing_contact.contactmessage":{"uri":"landing-contact\/contactmessage","methods":["POST"]},"paypal":{"uri":"paypal","methods":["GET","HEAD"]},"paypal.payment":{"uri":"paypal\/payment","methods":["POST"]},"paypal.payment.success":{"uri":"paypal\/payment\/success","methods":["GET","HEAD"]},"paypal.payment\/cancel":{"uri":"paypal\/payment\/cancel","methods":["GET","HEAD"]},"checkout.process":{"uri":"stripe-checkout","methods":["POST"]},"checkout.success":{"uri":"stripe-checkout-success","methods":["GET","HEAD"]},"checkout.failure":{"uri":"stripe-checkout-error","methods":["GET","HEAD"]},"flutterwave.success":{"uri":"flutterwave\/payment\/success","methods":["GET","HEAD"]},"paystack.success":{"uri":"paystack\/payment\/success","methods":["GET","HEAD"]},"khalti.success":{"uri":"khalti\/checkout","methods":["POST"]},"razorpay.success":{"uri":"payment-success","methods":["GET","HEAD"]},"mercadopago.success":{"uri":"mercadopago\/payment\/success","methods":["GET","HEAD"]},"ccavenue.checkout":{"uri":"ccavenue\/checkout","methods":["POST"]},"ccavenue.payment.response":{"uri":"ccavenue\/payment\/success","methods":["GET","HEAD"]},"ccavenue.payment.cancel":{"uri":"ccavenue\/payment\/failure","methods":["GET","HEAD"]}};
Object.assign(Ziggy.routes, routes);
})();
</script> <link rel="preload" as="style" href="http://localhost/new_vue_tagxi/public/build/assets/vendor-f749f9ab.css" /><link rel="preload" as="style" href="http://localhost/new_vue_tagxi/public/build/assets/app-5dc46014.css" /><link rel="preload" as="style" href="http://localhost/new_vue_tagxi/public/build/assets/404-8c21c3cf.css" /><link rel="modulepreload" href="http://localhost/new_vue_tagxi/public/build/assets/app-e076d658.js" /><link rel="modulepreload" href="http://localhost/new_vue_tagxi/public/build/assets/vendor-b6e68d09.js" /><link rel="modulepreload" href="http://localhost/new_vue_tagxi/public/build/assets/404-36789bcd.js" /><link rel="modulepreload" href="http://localhost/new_vue_tagxi/public/build/assets/error-ff2a41aa.js" /><link rel="stylesheet" href="http://localhost/new_vue_tagxi/public/build/assets/vendor-f749f9ab.css" /><link rel="stylesheet" href="http://localhost/new_vue_tagxi/public/build/assets/app-5dc46014.css" /><link rel="stylesheet" href="http://localhost/new_vue_tagxi/public/build/assets/404-8c21c3cf.css" /><script type="module" src="http://localhost/new_vue_tagxi/public/build/assets/app-e076d658.js"></script><script type="module" src="http://localhost/new_vue_tagxi/public/build/assets/404-36789bcd.js"></script>
</head>
<body>
<div id="app" data-page="{"component":"pages\/404","props":{"jetstream":{"canCreateTeams":false,"canManageTwoFactorAuthentication":true,"canUpdatePassword":true,"canUpdateProfileInformation":true,"hasEmailVerification":true,"flash":[],"hasAccountDeletionFeatures":true,"hasApiFeatures":true,"hasTeamFeatures":false,"hasTermsAndPrivacyPolicyFeature":true,"managesProfilePhotos":true},"auth":{"user":null},"errorBags":[],"errors":{},"flash":{"successMessage":null}},"url":"\/new_vue_tagxi\/public\/\/api\/dmv-content","version":"6417c333e668146bc61c7fac84a8b3e4"}"></div> <script>
window.headers = [{"id":"d488f364-f420-4415-85a2-e4b1a154863b","header_logo":"Y8Xg6Y3kQHYzGSsVonTjE5aI1SZu8lEWhuXPsz5L.png","home":"Home","aboutus":"About Us","driver":"Driver","user":"User","contact":"Contact","book_now_btn":"Book Now","footer_logo":"TvZGGFUp14QFjqR2gJZPrJ28gt0EYakPBp75vj7C.png","footer_para":"Tagxi is a rideshare platform facilitating peer to peer ridesharing by means of connecting passengers who are in need of rides from drivers with available cars to get from point A to point B with the press of a button.","quick_links":"Quick Links","compliance":"Compliance","privacy":"Privacy Policy","terms":"Terms \u0026 Conditions","dmv":"DMV Check","user_app":"User Apps","user_play":"Play Store","user_play_link":"https:\/\/play.google.com\/store\/apps\/details?id=tagxi.bidding.user","user_apple":"Apple Store","user_apple_link":"https:\/\/apps.apple.com\/in\/app\/super-bidding-user\/id6449780067","driver_app":"Driver Apps","driver_play":"Play Store","driver_play_link":"https:\/\/play.google.com\/store\/apps\/details?id=tagxi.bidding.driver","driver_apple":"Apple Store","driver_apple_link":"https:\/\/apps.apple.com\/in\/app\/super-bidding-driver\/id6449778880","copy_rights":"2021 @ misoftwares","fb_link":"https:\/\/www.facebook.com\/","linkdin_link":"https:\/\/in.linkedin.com\/","x_link":"https:\/\/x.com\/","insta_link":"https:\/\/www.instagram.com\/","locale":"En","language":"English","direction":"ltr","created_at":null,"updated_at":"2024-11-20T18:33:22.000000Z","header_logo_url":"http:\/\/localhost\/new_vue_tagxi\/public\/storage\/uploads\/website\/images\/Y8Xg6Y3kQHYzGSsVonTjE5aI1SZu8lEWhuXPsz5L.png","footer_logo_url":"http:\/\/localhost\/new_vue_tagxi\/public\/storage\/uploads\/website\/images\/TvZGGFUp14QFjqR2gJZPrJ28gt0EYakPBp75vj7C.png"}];
window.recaptchaKey = null;
window.logo = "http:\/\/localhost\/new_vue_tagxi\/public\/storage\/uploads\/system-admin\/logo\/logo-light.png";
window.favicon = "http:\/\/localhost\/new_vue_tagxi\/public\/storage\/uploads\/system-admin\/logo\/logo-mini.png";
window.footer_content1 = "2024 \u00a9 Misoftwares.";
window.footer_content2 = "Design \u0026 Develop by Misoftwares";
</script>
</body>
<script>
document.addEventListener('DOMContentLoaded', function () {
// Check if window.favicon is available and set it dynamically
if (window.favicon) {
document.getElementById('dynamic-favicon').setAttribute('href', window.favicon);
} else {
// Fallback if the favicon is not set
document.getElementById('dynamic-favicon').setAttribute('href', 'http://localhost/new_vue_tagxi/public/image/favicon.ico');
}
});
</script>
<style>
:root{
--top_nav: #0ab39c;
--side_menu: #405189;
--side_menu_txt: #ffffff;
--loginbg: url('http://localhost/new_vue_tagxi/public/storage/uploads/system-admin/logo/workspace.jpg');
--owner_loginbg: url('http://localhost/new_vue_tagxi/public/storage/uploads/system-admin/logo/workspace.jpg');
}
</style>
</html>
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
FAQ
APIs for faq lists for user & driver
List Faq
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/common/faq/list/autem/voluptas" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/common/faq/list/autem/voluptas"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success",
"data": [
{
"id": "2dabbc46-dac2-41e3-b35a-b671d8db3bde",
"service_location_id": "48e861b5-8d4d-4281-807c-1cdd2a5fee3e",
"question": "wbevejhefbwefmbef",
"answer": "qekjfbqefbqff",
"user_type": "both",
"active": true
},
{
"id": "4f3d4cb1-29f6-49c9-aff4-dffe0681828e",
"service_location_id": "48e861b5-8d4d-4281-807c-1cdd2a5fee3e",
"question": "test dklfhbvkeg b?",
"answer": "etstkewnlfkwrg",
"user_type": "user",
"active": true
}
],
"meta": {
"pagination": {
"total": 2,
"count": 2,
"per_page": 10,
"current_page": 1,
"total_pages": 1,
"links": {}
}
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Fleet-Owner-apis
List Fleets
requires authentication
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/owner/list-fleets" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/owner/list-fleets"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "fleet_listed",
"data": [
{
"id": "343efadd-a67a-4a56-955e-402a79ca321d",
"owner_id": 39,
"driver_id": null,
"driver_name": null,
"license_number": "TN 35 W 5486",
"vehicle_type": "Sedan",
"brand": "Suxuki",
"model": "Swift",
"approve": 0,
"car_color": "White",
"type_icon": "http://localhost/new_vue_tagxi/public/storage/uploads/types/images/VrD7TsjDJgx2ypg3QadEGfvvAr15yzShsygQXpTo.jpeg",
"status": "waiting",
"total_earnings": 0,
"total_driver_earnings": 0,
"total_admin_earnings": 0,
"total_trips": 0,
"completed_requests": 0,
"average_user_rating": 0,
"driverDetail": null
}
]
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
List of Fleet Needed Documents
requires authentication
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/owner/fleet/documents/needed" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/owner/fleet/documents/needed"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success",
"enable_submit_button": false,
"data": [
{
"id": 1,
"name": "RC Book",
"doc_type": "image",
"has_identify_number": false,
"has_expiry_date": true,
"active": 1,
"identify_number_locale_key": null,
"is_uploaded": false,
"document_status": 2,
"document_status_string": "Not Uploaded",
"fleet_document": null
}
]
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
List Drivers For Assign Drivers
requires authentication
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/owner/list-drivers" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/owner/list-drivers"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"data": [
{
"id": 20,
"name": "Nakul",
"email": "driver3@nakul.com",
"owner_id": "62e99924-4e59-48d4-a378-b3ec25e482cd",
"mobile": "+917438245845",
"profile_picture": "http://restart.local/assets/images/Male_default_image.png",
"active": false,
"fleet_id": null,
"approve": false,
"available": false,
"uploaded_document": false,
"declined_reason": null,
"service_location_id": "8841c737-357f-4f9a-ad8d-f585504e0694",
"vehicle_type_id": null,
"vehicle_type_name": null,
"vehicle_type_icon": null,
"car_make": null,
"car_model": null,
"car_make_name": null,
"car_model_name": null,
"car_color": null,
"driver_lat": null,
"driver_lng": null,
"car_number": null,
"rating": 0,
"no_of_ratings": 0,
"timezone": null,
"refferal_code": "BfSSc9",
"company_key": null,
"show_instant_ride": true,
"currency_symbol": "₹",
"currency_code": "INR",
"languages": null,
"total_earnings": 0,
"current_date": "2024-11-25",
"completed_ride_count": 0
}
]
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Assign Drivers
requires authentication
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/owner/assign-driver/84af402f-e78d-4a39-a9a2-d7ef23892709" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"driver_id\": \"qui\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/owner/assign-driver/84af402f-e78d-4a39-a9a2-d7ef23892709"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"driver_id": "qui"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success",
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store Fleets
requires authentication
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/owner/add-fleet" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"vehicle_type\": 1,
\"car_color\": \"\\\"Red\\\"\",
\"car_make\": 10,
\"car_model\": 20,
\"custom_make\": \"\\\"CustomBrand\\\"\",
\"custom_model\": \"\\\"CustomModelX\\\"\",
\"car_number\": \"\\\"ABC-1234\\\"\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/owner/add-fleet"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"vehicle_type": 1,
"car_color": "\"Red\"",
"car_make": 10,
"car_model": 20,
"custom_make": "\"CustomBrand\"",
"custom_model": "\"CustomModelX\"",
"car_number": "\"ABC-1234\""
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success",
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Add Driver
requires authentication
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/owner/add-drivers" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"deserunt\",
\"email\": \"awitting@example.com\",
\"mobile\": \"veniam\",
\"address\": \"nihil\",
\"profile\": \"iste\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/owner/add-drivers"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "deserunt",
"email": "awitting@example.com",
"mobile": "veniam",
"address": "nihil",
"profile": "iste"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "driver_added_succesfully",
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete Drivers
requires authentication
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/owner/delete-driver/2" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/owner/delete-driver/2"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "driver_deleted_succesfully",
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Owner Dashboard Detail
requires authentication
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/owner/dashboard" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/owner/dashboard"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "owner_dashboard_listed",
"data": {
"id": "0b886eed-a4e3-4c58-9545-3f325932a9cf",
"user_id": 129,
"company_name": "ship company",
"blocked_fleets": 0,
"active_fleets": 0,
"inactive_fleets": 0,
"card_earnings": 0,
"cash_earnings": 0,
"wallet_earnings": 0,
"revenue": 0,
"admin_commission": 0,
"net_earnings": 0,
"discount": 0,
"digital_earnings": 0,
"fleetDetail": {
"data": []
},
"driverDetail": {
"data": []
}
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Owner Dashboard Fleet Detail
requires authentication
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/owner/fleet-dashboard" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/owner/fleet-dashboard"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"fleet_data": {
"fleet_id": "84af402f-e78d-4a39-a9a2-d7ef23892709",
"license_number": "qwert",
"vehicle_type_name": "Delivery",
"total_earnings": 0,
"total_distance": 0,
"total_admin_earnings": 0,
"total_revenue": 0,
"per_day_revenue": 0,
"total_trips": 0,
"completed_requests": "0",
"average_user_rating": 0,
"rating_1_average": "0.0000",
"rating_2_average": "0.0000",
"rating_3_average": "0.0000",
"rating_4_average": "0.0000",
"rating_5_average": "0.0000",
"total_duration_in_hours": 0,
"average_login_hours_per_day": 0
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Goods Types List
APIs for vehilce management apis. i.e types,car makes,models apis
Get All Goods Types
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/common/goods-types" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/common/goods-types"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "goods_types_listed",
"data": [
{
"id": 1,
"goods_type_name": "Timber/Plywood/Laminate",
"translation_dataset": "{\"en\":{\"locale\":\"en\",\"name\":\"Timber\\/Plywood\\/Laminate\"}}",
"goods_types_for": "both",
"company_key": null,
"active": 1,
"created_at": "2024-10-23T12:59:08.000000Z",
"updated_at": "2024-10-23T12:59:08.000000Z"
},
]
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Loyalty And Reward History
List Driver levels and targets for the next level
requires authentication
Authorization: Requires a Bearer token in the Authorization header.
Header Example:
Authorization: Bearer <your_token_here>
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/driver/loyalty/history" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/driver/loyalty/history"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "levels-listed",
"data": [
{
"id": "0300b763-673a-420b-b740-04e0e8ed1624",
"level": 1,
"min_ride_count": 2,
"min_ride_amount": 10,
"is_min_ride": 1,
"is_min_earning": 1,
"level_icon": "http://localhost/new_vue_tagxi/public/storage/uploads/driver/levels/1KFhqrwdf6NByKYUHbVHBKMF5WSJSEheIp2v6Qn5.jpg",
"created_at": "2024-10-28 04:41 PM",
"levelDetails": {
"data": {
"id": "38dfeae2-a0ef-4081-b28c-e81cb953ae0a",
"level": 1,
"level_id": "0300b763-673a-420b-b740-04e0e8ed1624",
"is_min_ride_completed": 1,
"is_min_earning_completed": 1,
"level_icon": "http://localhost/new_vue_tagxi/public/storage/uploads/driver/levels/1KFhqrwdf6NByKYUHbVHBKMF5WSJSEheIp2v6Qn5.jpg",
"created_at": "2024-11-14 02:28 PM"
}
}
}
],
"meta": {
"pagination": {
"total": 1,
"count": 1,
"per_page": 15,
"current_page": 1,
"total_pages": 1,
"links": {}
}
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
List User reward History
requires authentication
Retrieve the reward history of a user or driver based on their role.
Authorization: Requires a Bearer token in the Authorization header.
Header Example:
Authorization: Bearer <your_token_here>
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/driver/rewards/history" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/driver/rewards/history"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "rewards-listed",
"data": [
{
"id": "8f89240a-98e5-410c-80c8-8ddbb912ba03",
"request_id": null,
"is_credit": true,
"amount": 0,
"reward_points": 15,
"remarks": "Driver Level Up Bonus Reward",
"created_at": "14th Nov 02:28 PM"
},
],
"meta": {
"pagination": {
"total": 9,
"count": 9,
"per_page": 15,
"current_page": 1,
"total_pages": 1,
"links": {}
}
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Notification
List Notification
requires authentication
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/notifications/get-notification" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/notifications/get-notification"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success",
"data": [
{
"id" : "8841c737-357f-4f9a-ad8d-f585504e0694",
"title" : "Title",
"body" : "Body",
"image": "https://scribe.knuckles.wtf/img/logo.png",
"converted_created_at": "23rd Nov 04:07 PM"
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete Notifications
requires authentication
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/notifications/delete-notification/90df0049-e139-44e2-a0ff-c1c90df2a991" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/notifications/delete-notification/90df0049-e139-44e2-a0ff-c1c90df2a991"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success",
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Password-Reset
APIs for Email-Management
Send the password reset email to the user.
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/password/forgot" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"email\": \"toy45@example.org\",
\"mobile\": \"sint\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/password/forgot"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"email": "toy45@example.org",
"mobile": "sint"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Validate the password reset token.
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/password/validate-token" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"token\": \"unde\",
\"email\": \"swuckert@example.org\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/password/validate-token"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"token": "unde",
"email": "swuckert@example.org"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Validate the password reset token and update the password.
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/password/reset" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"token\": \"dolorum\",
\"email\": \"dgreenholt@example.org\",
\"mobile\": 400221.3709,
\"country\": \"suscipit\",
\"password\": \"f_-\'\'{DZMG_EM[l\\/gM\",
\"role\": \"nihil\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/password/reset"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"token": "dolorum",
"email": "dgreenholt@example.org",
"mobile": 400221.3709,
"country": "suscipit",
"password": "f_-''{DZMG_EM[l\/gM",
"role": "nihil"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "reset-success"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Payment
List cards
requires authentication
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/payment/cards/list" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/payment/cards/list"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "card_listed_succesfully",
"data": [
{
"id": "33f6a61d-4ddc-47dc-a601-250672dbc405",
"customer_id": "customer_765_6",
"merchant_id": "pwc2hd46g93s4zy2",
"card_token": "79dhmq",
"last_number": 521,
"card_type": "VISA",
"user_id": 6,
"is_default": 0,
"user_role": "driver",
"valid_through": "12/2021",
"created_at": "2019-05-06 13:17:40",
"updated_at": "2019-05-06 13:17:40",
"deleted_at": null
}
]
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Make card as default card
requires authentication
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/payment/cards/make-default" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"card_id\": \"sit\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/payment/cards/make-default"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"card_id": "sit"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "card_made_default_succesfully"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete Card
requires authentication
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/payment/cards/delete/afcfcb2a-398a-4cec-baba-567f1e75f1a4" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/payment/cards/delete/afcfcb2a-398a-4cec-baba-567f1e75f1a4"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "card_deleted_succesfully"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Wallet history
requires authentication
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/payment/wallet/history" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/payment/wallet/history"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "wallet_history_listed",
"wallet_balance": 5500,
"default_card_id": "cb26f413-3dcb-44e5-9976-c41d0547214b",
"currency_code": "INR",
"currency_symbol": "₹",
"wallet_history": {
"data": [
{
"id": "ec102ac8-7ceb-4a9b-999f-8461933f814c",
"user_id": 15,
"card_id": "cb26f413-3dcb-44e5-9976-c41d0547214b",
"transaction_id": "nwz56dbv",
"amount": 1500,
"conversion": "INR-USD:1500-20.42",
"merchant": "nplustechnologies",
"remarks": "Money Deposited",
"is_credit": 1,
"created_at": "4th Sep 01:07 PM",
"updated_at": "4th Sep 01:07 PM"
},
{
"id": "5d08d769-21ac-4dc3-a56c-0ac0eef4b0c2",
"user_id": 15,
"card_id": "cb26f413-3dcb-44e5-9976-c41d0547214b",
"transaction_id": "5qmad4pe",
"amount": 1500,
"conversion": "INR-USD:1500-20.42",
"merchant": "nplustechnologies",
"remarks": "Money Deposited",
"is_credit": 0,
"created_at": "4th Sep 12:53 PM",
"updated_at": "4th Sep 12:53 PM"
},
{
"id": "6be510e7-436d-4daf-a711-b3d17fb68452",
"user_id": 15,
"card_id": "cb26f413-3dcb-44e5-9976-c41d0547214b",
"transaction_id": "pd4hv6kh",
"amount": 1500,
"conversion": "INR-USD:1500-20.53",
"merchant": "nplustechnologies",
"remarks": null,
"is_credit": 0,
"created_at": "1st Sep 10:51 PM",
"updated_at": "1st Sep 10:51 PM"
},
{
"id": "01dc4bdd-154f-43b9-80d2-88de6354ff45",
"user_id": 15,
"card_id": "cb26f413-3dcb-44e5-9976-c41d0547214b",
"transaction_id": "0rncvw9n",
"amount": 1000,
"conversion": "INR-USD:1000-13.69",
"merchant": "nplustechnologies",
"remarks": null,
"is_credit": 0,
"created_at": "1st Sep 10:45 PM",
"updated_at": "1st Sep 10:45 PM"
}
],
"meta": {
"pagination": {
"total": 4,
"count": 4,
"per_page": 10,
"current_page": 1,
"total_pages": 1,
"links": {}
}
}
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Wallet Withdrawal Requests LIst
requires authentication
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/payment/wallet/withdrawal-requests" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/payment/wallet/withdrawal-requests"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "withdrawal-requests-listed",
"withdrawal_history": {
"data": [
{
"id": 2,
"requested_amount": 10,
"driver_id": 2,
"owner_id": null,
"driver_name": "bala",
"driver_mobile": "9790200663",
"owner_name": "",
"owner_mobile": "",
"created_at": "25th Nov 12:05 PM",
"updated_at": "25th Nov 12:05 PM",
"payment_status": "requested",
"status": "Requested"
}
],
"meta": {
"pagination": {
"total": 1,
"count": 1,
"per_page": 10,
"current_page": 1,
"total_pages": 1,
"links": {}
}
}
},
"wallet_balance": 610
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Request for withdrawal
requires authentication
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/payment/wallet/request-for-withdrawal" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"requested_amount\": 63403.68
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/payment/wallet/request-for-withdrawal"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"requested_amount": 63403.68
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "wallet_withdrawal_requested"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Transfer money from wallet
requires authentication
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/payment/wallet/transfer-money-from-wallet" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"mobile\": \"accusantium\",
\"role\": \"eos\",
\"amount\": \"assumenda\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/payment/wallet/transfer-money-from-wallet"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"mobile": "accusantium",
"role": "eos",
"amount": "assumenda"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"transfer_remarks": false,
"receiver_remarks": false
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Convert Points to Wallet Points
requires authentication
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/payment/wallet/convert-point-to-wallet" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"amount\": 100
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/payment/wallet/convert-point-to-wallet"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"amount": 100
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"wallet_remarks": {
"user_id": 2,
"amount": "0.50",
"transaction_id": "GASdCW",
"remarks": "conversion-from-point",
"is_credit": true,
"id": "29d600fa-fd5d-4afb-a284-2917797f843a",
"updated_at": "2024-11-25T06:44:56.000000Z",
"created_at": "2024-11-25T06:44:56.000000Z",
"converted_created_at": "25th Nov 12:14 PM"
},
"loyalty_remarks": {
"reward_points": "10",
"is_credit": false,
"remarks": "conversion-from-point",
"user_id": 3,
"id": "bf871067-6830-4c9b-80c8-4942913b7232",
"updated_at": "2024-11-25T06:44:56.000000Z",
"created_at": "2024-11-25T06:44:56.000000Z"
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Profile-Management
APIs for Profile-Management
Update user profile.
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/user/profile" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"rmkiielvjbggbdeyov\",
\"email\": \"huel.brenden@example.com\",
\"profile_picture\": \"bsqbbsaokebvueaitvi\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/user/profile"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "rmkiielvjbggbdeyov",
"email": "huel.brenden@example.com",
"profile_picture": "bsqbbsaokebvueaitvi"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update Driver Profile
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/user/driver-profile" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"mc\",
\"email\": \"ctreutel@example.net\",
\"profile_picture\": \"hjhhw\",
\"vehicle_type\": \"quidem\",
\"car_color\": \"itaque\",
\"car_number\": \"cum\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/user/driver-profile"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "mc",
"email": "ctreutel@example.net",
"profile_picture": "hjhhw",
"vehicle_type": "quidem",
"car_color": "itaque",
"car_number": "cum"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update My Language
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/user/update-my-lang" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"lang\": \"molestias\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/user/update-my-lang"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"lang": "molestias"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Add/Update Bank Info
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/user/update-bank-info" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"account_name\": \"earum\",
\"account_no\": 16,
\"bank_code\": \"sapiente\",
\"bank_name\": \"maiores\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/user/update-bank-info"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"account_name": "earum",
"account_no": 16,
"bank_code": "sapiente",
"bank_name": "maiores"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "bank info updated successfully"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get Bank info
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/user/get-bank-info" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/user/get-bank-info"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
Show headers
cache-control: no-cache, private
content-type: application/json
link: <http://localhost/new_vue_tagxi/public/build/assets/vendor-f749f9ab.css>; rel="preload"; as="style", <http://localhost/new_vue_tagxi/public/build/assets/app-5dc46014.css>; rel="preload"; as="style", <http://localhost/new_vue_tagxi/public/build/assets/404-8c21c3cf.css>; rel="preload"; as="style", <http://localhost/new_vue_tagxi/public/build/assets/app-e076d658.js>; rel="modulepreload", <http://localhost/new_vue_tagxi/public/build/assets/vendor-b6e68d09.js>; rel="modulepreload", <http://localhost/new_vue_tagxi/public/build/assets/404-36789bcd.js>; rel="modulepreload", <http://localhost/new_vue_tagxi/public/build/assets/error-ff2a41aa.js>; rel="modulepreload"
vary: X-Inertia
set-cookie: XSRF-TOKEN=eyJpdiI6IjZmejNHY2p2V1BEK1pJbmFmSEU5K2c9PSIsInZhbHVlIjoiN1UrRlpLWTNBdjI4eGc3MjdNYVRoVjhudmFhZE55czNjS3M1N0F0Vk9BR2hRTlNBTFRIcWFQditlL010NzN4d1NJRmxyNkE5WTAwZ3NHWitsaGZWZ1hYdEFEa2RJcHFzdVBucW0rUVNnVTFpaVdpRkdIM25vZmM4OEMvZkhLUjkiLCJtYWMiOiJhMjRiYzM0ODFjN2QzMGRhYmE5MjRkM2NlZjQ0ZjIxODZhZDljMjdlN2I1YjQ4MDU3Mjc3ZTllOWRmM2UwZDMzIiwidGFnIjoiIn0%3D; expires=Tue, 26 Nov 2024 11:37:51 GMT; Max-Age=7200; path=/; samesite=lax; vuetaxi_session=eyJpdiI6Im9qQjZyNXA0YjFkVy82R3lwSDhzRlE9PSIsInZhbHVlIjoiT1drcy9oZkFEaThxRGNieWJjZnlkRnhJUnRYSXEzRkFPQkM0MHd5UWFGNkQvc2Y2ZjEzbVVDbE5XZnlxWEFJZ1drSERpSlkvc1BjMkVnRFRlaXVuMS9HenB6MzgvR1lhRkVyNFVwaXJMbk1hc3lRZmwwdFVWSkVWM1plQ3g2akoiLCJtYWMiOiIzYzdjNTI3NTI0OTc1YmMyOGZjZGEyYzc5NTljNjJmZmMxMmM4ODAwZDEwOGRkYzU1OTViNDVjNzk4MmIyMTVlIiwidGFnIjoiIn0%3D; expires=Tue, 26 Nov 2024 11:37:51 GMT; Max-Age=7200; path=/; httponly; samesite=lax
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title inertia>Misoftwares</title>
<meta name="description"
content="Taxi App - Fast, Safe, and Convenient Rides at Your Fingertips">
<meta name="keywords"
content="Taxi booking app admin panel,Taxi fleet management software,Taxi service admin panel features,Real-time taxi management dashboard">
<meta name="author" content="Misoftwares">
<!-- Social Media Meta Tags -->
<meta property="og:title" content="Misoftwares - Inertia + Vue & Laravel Admin & Dashboard Template">
<meta property="og:description"
content="Simplify web application development with Misoftwares, a feature-rich taxi app admin and dashboard template built with Inertia.js, Vue.js, and Laravel.">
<meta property="og:image" content="URL to the template's logo or featured image">
<meta property="og:url" content="URL to the template's webpage">
<meta name="twitter:card" content="summary_large_image">
<!-- App favicon -->
<!-- <link rel="shortcut icon" href="http://localhost/new_vue_tagxi/public/image/favicon.ico"> -->
<link rel="shortcut icon" id="dynamic-favicon" href="">
<!-- Firebase SDK -->
<!-- Use the Firebase 8.x version for CommonJS support -->
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-database.js"></script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/select2@4.1.0-beta.1/dist/css/select2.min.css" rel="stylesheet" />
<script src="https://cdn.jsdelivr.net/npm/select2@4.1.0-beta.1/dist/js/select2.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/driver.js@1.0.1/dist/driver.js.iife.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/driver.js@1.0.1/dist/driver.css"/>
<!-- Scripts -->
<script type="text/javascript">
const Ziggy = {"url":"http:\/\/localhost\/new_vue_tagxi\/public","port":null,"defaults":{},"routes":{"admin-login":{"uri":"login","methods":["POST"]},"logout":{"uri":"logout","methods":["POST"]},"password.request":{"uri":"forgot-password","methods":["GET","HEAD"]},"password.reset":{"uri":"reset-password\/{token}","methods":["GET","HEAD"],"parameters":["token"]},"password.email":{"uri":"forgot-password","methods":["POST"]},"password.update":{"uri":"reset-password","methods":["POST"]},"register":{"uri":"register","methods":["GET","HEAD"]},"verification.notice":{"uri":"email\/verify","methods":["GET","HEAD"]},"verification.verify":{"uri":"email\/verify\/{id}\/{hash}","methods":["GET","HEAD"],"parameters":["id","hash"]},"verification.send":{"uri":"email\/verification-notification","methods":["POST"]},"user-profile-information.update":{"uri":"user\/profile-information","methods":["PUT"]},"user-password.update":{"uri":"user\/password","methods":["PUT"]},"password.confirmation":{"uri":"user\/confirmed-password-status","methods":["GET","HEAD"]},"password.confirm":{"uri":"user\/confirm-password","methods":["POST"]},"two-factor.login":{"uri":"two-factor-challenge","methods":["GET","HEAD"]},"two-factor.enable":{"uri":"user\/two-factor-authentication","methods":["POST"]},"two-factor.confirm":{"uri":"user\/confirmed-two-factor-authentication","methods":["POST"]},"two-factor.disable":{"uri":"user\/two-factor-authentication","methods":["DELETE"]},"two-factor.qr-code":{"uri":"user\/two-factor-qr-code","methods":["GET","HEAD"]},"two-factor.secret-key":{"uri":"user\/two-factor-secret-key","methods":["GET","HEAD"]},"two-factor.recovery-codes":{"uri":"user\/two-factor-recovery-codes","methods":["GET","HEAD"]},"terms.show":{"uri":"terms-of-service","methods":["GET","HEAD"]},"policy.show":{"uri":"privacy-policy","methods":["GET","HEAD"]},"profile.show":{"uri":"user\/profile","methods":["GET","HEAD"]},"other-browser-sessions.destroy":{"uri":"user\/other-browser-sessions","methods":["DELETE"]},"current-user-photo.destroy":{"uri":"user\/profile-photo","methods":["DELETE"]},"current-user.destroy":{"uri":"user","methods":["DELETE"]},"api-tokens.index":{"uri":"user\/api-tokens","methods":["GET","HEAD"]},"api-tokens.store":{"uri":"user\/api-tokens","methods":["POST"]},"api-tokens.update":{"uri":"user\/api-tokens\/{token}","methods":["PUT"],"parameters":["token"]},"api-tokens.destroy":{"uri":"user\/api-tokens\/{token}","methods":["DELETE"],"parameters":["token"]},"sanctum.csrf-cookie":{"uri":"sanctum\/csrf-cookie","methods":["GET","HEAD"]},"ignition.healthCheck":{"uri":"_ignition\/health-check","methods":["GET","HEAD"]},"ignition.executeSolution":{"uri":"_ignition\/execute-solution","methods":["POST"]},"ignition.updateConfig":{"uri":"_ignition\/update-config","methods":["POST"]},"privacy-content":{"uri":"api\/privacy-content","methods":["GET","HEAD"]},"terms-content":{"uri":"api\/terms-content","methods":["GET","HEAD"]},"compliance-content":{"uri":"api\/compliance-content","methods":["GET","HEAD"]},"dmv-content":{"uri":"api\/dmv-content","methods":["GET","HEAD"]},"view-countries":{"uri":"countries","methods":["GET","HEAD"]},"list-countries":{"uri":"countries-list","methods":["GET","HEAD"]},"languages.index":{"uri":"languages","methods":["GET","HEAD"]},"languages.create":{"uri":"languages\/create","methods":["GET","HEAD"]},"languages.list":{"uri":"languages\/list","methods":["GET","HEAD"]},"languages.browse":{"uri":"languages\/browse\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"languages.store":{"uri":"languages\/store","methods":["POST"]},"language.update":{"uri":"languages\/update\/{language}","methods":["PUT"],"parameters":["language"]},"current-languages":{"uri":"current-languages","methods":["GET","HEAD"]},"current-locations":{"uri":"current-locations","methods":["GET","HEAD"]},"current-notifications":{"uri":"current-notifications","methods":["GET","HEAD"]},"read-notifications":{"uri":"mark-notification-as-read","methods":["POST"]},"spa-user-login":{"uri":"user\/login","methods":["POST"]},"spa-owner-login":{"uri":"owner-login","methods":["POST"]},"owner-login":{"uri":"owner-login","methods":["GET","HEAD"]},"user-register":{"uri":"user\/register","methods":["POST"]},"dashboard":{"uri":"dashboard","methods":["GET","HEAD"]},"owner.dashboard":{"uri":"owner-dashboard","methods":["GET","HEAD"]},"dashboard-todayEarnings":{"uri":"dashboard\/today-earnings","methods":["GET","HEAD"]},"dashboard-overallEarnings":{"uri":"dashboard\/overall-earnings","methods":["GET","HEAD"]},"dashboard-cancelChart":{"uri":"dashboard\/cancel-chart","methods":["GET","HEAD"]},"serviceLocation.dashboard":{"uri":"dashboard\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"owner.IndividualDashboard":{"uri":"individual-owner-dashboard","methods":["GET","HEAD"]},"servicelocation.index":{"uri":"service-locations","methods":["GET","HEAD"]},"fleet-login":{"uri":"owner\/login","methods":["POST"]},"roles.index":{"uri":"roles","methods":["GET","HEAD"]},"roles.list":{"uri":"roles\/list","methods":["GET","HEAD"]},"roles.store":{"uri":"roles","methods":["POST"]},"roles.update":{"uri":"roles\/{role}","methods":["PUT"],"parameters":["role"],"bindings":{"role":"id"}},"permission.index":{"uri":"permissions\/{permission}","methods":["GET","HEAD"],"parameters":["permission"]},"permission.store":{"uri":"permissions\/{role}","methods":["POST"],"parameters":["role"]},"roles1.index":{"uri":"roles1","methods":["GET","HEAD"]},"roles1.list":{"uri":"roles1\/list","methods":["GET","HEAD"]},"roles1.store":{"uri":"roles1","methods":["POST"]},"roles1.update":{"uri":"roles1\/update\/{role}","methods":["PUT"],"parameters":["role"],"bindings":{"role":"id"}},"role1.import":{"uri":"roles1\/import-csv","methods":["POST"]},"service-location-list":{"uri":"service-locations\/list","methods":["GET","HEAD"]},"servicelocation.create":{"uri":"service-locations\/create","methods":["GET","HEAD"]},"servicelocation.edit":{"uri":"service-locations\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"servicelocation.store":{"uri":"service-locations\/store","methods":["POST"]},"servicelocation.update":{"uri":"service-locations\/update\/{location}","methods":["POST"],"parameters":["location"],"bindings":{"location":"id"}},"servicelocation.toggle":{"uri":"service-locations\/toggle\/{location}","methods":["POST"],"parameters":["location"],"bindings":{"location":"id"}},"servicelocation.delete":{"uri":"service-locations\/delete\/{location}","methods":["DELETE"],"parameters":["location"],"bindings":{"location":"id"}},"rentalpackagetype.index":{"uri":"rental-package-types","methods":["GET","HEAD"]},"rentalpackagetype.create":{"uri":"rental-package-types\/create","methods":["GET","HEAD"]},"rentalpackagetype.store":{"uri":"rental-package-types\/store","methods":["POST"]},"rentalpackagetype.list":{"uri":"rental-package-types\/list","methods":["GET","HEAD"]},"rentalpackagetype.edit":{"uri":"rental-package-types\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"rentalpackagetype.update":{"uri":"rental-package-types\/update\/{packageType}","methods":["POST"],"parameters":["packageType"],"bindings":{"packageType":"id"}},"rentalpackagetype.updateStatus":{"uri":"rental-package-types\/update-status","methods":["POST"]},"rentalpackagetype.delete":{"uri":"rental-package-types\/delete\/{packageType}","methods":["DELETE"],"parameters":["packageType"],"bindings":{"packageType":"id"}},"category.index":{"uri":"category","methods":["GET","HEAD"]},"category.create":{"uri":"category\/create","methods":["GET","HEAD"]},"category.store":{"uri":"category\/store","methods":["POST"]},"category.list":{"uri":"category\/list","methods":["GET","HEAD"]},"category.edit":{"uri":"category\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"category.update":{"uri":"category\/update\/{category}","methods":["POST"],"parameters":["category"]},"category.updateStatus":{"uri":"category\/update-status","methods":["POST"]},"category.delete":{"uri":"category\/delete\/{category}","methods":["DELETE"],"parameters":["category"]},"setprice.index":{"uri":"set-prices","methods":["GET","HEAD"]},"setprice.create":{"uri":"set-prices\/create","methods":["GET","HEAD"]},"setprice.vehiclelist":{"uri":"set-prices\/vehicle_types","methods":["GET","HEAD"]},"setprice.store":{"uri":"set-prices\/store","methods":["POST"]},"setprice.list":{"uri":"set-prices\/list","methods":["GET","HEAD"]},"setprice.edit":{"uri":"set-prices\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"setprice.update":{"uri":"set-prices\/update\/{zoneTypePrice}","methods":["POST"],"parameters":["zoneTypePrice"],"bindings":{"zoneTypePrice":"id"}},"setprice.delete":{"uri":"set-prices\/delete\/{id}","methods":["DELETE"],"parameters":["id"]},"setprice.updateStatus":{"uri":"set-prices\/update-status","methods":["POST"]},"setprice.packageIndex":{"uri":"set-prices\/packages\/{zoneType}","methods":["GET","HEAD"],"parameters":["zoneType"],"bindings":{"zoneType":"id"}},"setprice.packageList":{"uri":"set-prices\/packages\/list\/{zoneTypePrice}","methods":["GET","HEAD"],"parameters":["zoneTypePrice"],"bindings":{"zoneTypePrice":"id"}},"setprice.package-create":{"uri":"set-prices\/packages\/create\/{zoneTypePrice}","methods":["GET","HEAD"],"parameters":["zoneTypePrice"],"bindings":{"zoneTypePrice":"id"}},"setprice.packageStore":{"uri":"set-prices\/packages\/store","methods":["POST"]},"setprice.package-edit":{"uri":"set-prices\/packages\/edit\/{zoneTypePackage}","methods":["GET","HEAD"],"parameters":["zoneTypePackage"],"bindings":{"zoneTypePackage":"id"}},"setprice.package-update":{"uri":"set-prices\/packages\/update\/{zoneTypePackage}","methods":["POST"],"parameters":["zoneTypePackage"],"bindings":{"zoneTypePackage":"id"}},"setprice.package-delete":{"uri":"set-prices\/packages\/delete\/{zoneTypePackage}","methods":["DELETE"],"parameters":["zoneTypePackage"],"bindings":{"zoneTypePackage":"id"}},"setprice.updatePackageStatus":{"uri":"set-prices\/packages\/update-status","methods":["POST"]},"vehicletype.index":{"uri":"vehicle_type","methods":["GET","HEAD"]},"vehicletype.create":{"uri":"vehicle_type\/create","methods":["GET","HEAD"]},"vehicletype.store":{"uri":"vehicle_type\/store","methods":["POST"]},"vehicletype.list":{"uri":"vehicle_type\/list","methods":["GET","HEAD"]},"vehicletype.edit":{"uri":"vehicle_type\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"vehicletype.update":{"uri":"vehicle_type\/update\/{vehicle_type}","methods":["POST"],"parameters":["vehicle_type"],"bindings":{"vehicle_type":"id"}},"vehicletype.delete":{"uri":"vehicle_type\/delete\/{vehicle_type}","methods":["DELETE"],"parameters":["vehicle_type"],"bindings":{"vehicle_type":"id"}},"vehicletype.updateStatus":{"uri":"vehicle_type\/update-status","methods":["POST"]},"vehicletype.getCategory":{"uri":"vehicle_type\/getCategory","methods":["GET","HEAD"]},"vehiclemodel.index":{"uri":"vehicle-model","methods":["GET","HEAD"]},"vehiclemodel.create":{"uri":"vehicle-model\/create","methods":["GET","HEAD"]},"vehiclemodel.update":{"uri":"vehicle-model\/update","methods":["GET","HEAD"]},"vehiclemodel.test":{"uri":"vehicle-model\/test-url","methods":["GET","HEAD"]},"sos.index":{"uri":"sos","methods":["GET","HEAD"]},"sos.list":{"uri":"sos\/list","methods":["GET","HEAD"]},"sos.create":{"uri":"sos\/create","methods":["GET","HEAD"]},"sos.store":{"uri":"sos\/store","methods":["POST"]},"sos.edit":{"uri":"sos\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"sos.update":{"uri":"sos\/update\/{sos}","methods":["POST"],"parameters":["sos"],"bindings":{"sos":"id"}},"sos.updateStatus":{"uri":"sos\/update-status","methods":["POST"]},"sos.delete":{"uri":"sos\/delete\/{sos}","methods":["DELETE"],"parameters":["sos"],"bindings":{"sos":"id"}},"bank.index":{"uri":"driver-bank-info","methods":["GET","HEAD"]},"bank.list":{"uri":"driver-bank-info\/list","methods":["GET","HEAD"]},"bank.create":{"uri":"driver-bank-info\/create","methods":["GET","HEAD"]},"bank.store":{"uri":"driver-bank-info\/store","methods":["POST"]},"bank.edit":{"uri":"driver-bank-info\/edit\/{method}","methods":["GET","HEAD"],"parameters":["method"]},"bank.update":{"uri":"driver-bank-info\/update\/{method}","methods":["POST"],"parameters":["method"],"bindings":{"method":"id"}},"bank.updateStatus":{"uri":"driver-bank-info\/update-status","methods":["POST"]},"bank.delete":{"uri":"driver-bank-info\/delete\/{method}","methods":["DELETE"],"parameters":["method"],"bindings":{"method":"id"}},"promocode.index":{"uri":"promo-code","methods":["GET","HEAD"]},"promocode.list":{"uri":"promo-code\/list","methods":["GET","HEAD"]},"promocode.userList":{"uri":"promo-code\/userList","methods":["GET","HEAD"]},"promocode.create":{"uri":"promo-code\/create","methods":["GET","HEAD"]},"promocode.store":{"uri":"promo-code\/store","methods":["POST"]},"promocode.edit":{"uri":"promo-code\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"promocode.fetchServiceLocation":{"uri":"promo-code\/fetch","methods":["GET","HEAD"]},"promocode.update":{"uri":"promo-code\/update\/{promo}","methods":["POST"],"parameters":["promo"]},"promocode.delete":{"uri":"promo-code\/delete\/{promo}","methods":["DELETE"],"parameters":["promo"],"bindings":{"promo":"id"}},"promocode.updateStatus":{"uri":"promo-code\/update-status","methods":["POST"]},"pushnotification.index":{"uri":"push-notifications","methods":["GET","HEAD"]},"pushnotification.create":{"uri":"push-notifications\/create","methods":["GET","HEAD"]},"pushnotification.list":{"uri":"push-notifications\/list","methods":["GET","HEAD"]},"pushnotification.edit":{"uri":"push-notifications\/edit\/{notification}","methods":["GET","HEAD"],"parameters":["notification"],"bindings":{"notification":"id"}},"pushnotification.delete":{"uri":"push-notifications\/delete\/{notification}","methods":["DELETE"],"parameters":["notification"],"bindings":{"notification":"id"}},"pushnotification.send-push":{"uri":"push-notifications\/send-push","methods":["POST"]},"pushnotification.update":{"uri":"push-notifications\/update","methods":["POST"]},"cancellation.index":{"uri":"cancellation","methods":["GET","HEAD"]},"cancellation.list":{"uri":"cancellation\/list","methods":["GET","HEAD"]},"cancellation.create":{"uri":"cancellation\/create","methods":["GET","HEAD"]},"cancellation.store":{"uri":"cancellation\/store","methods":["POST"]},"cancellation.edit":{"uri":"cancellation\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"cancellation.update":{"uri":"cancellation\/update\/{cancellationReason}","methods":["POST"],"parameters":["cancellationReason"],"bindings":{"cancellationReason":"id"}},"cancellation.updateStatus":{"uri":"cancellation\/update-status","methods":["POST"]},"cancellation.delete":{"uri":"cancellation\/delete\/{cancellationReason}","methods":["DELETE"],"parameters":["cancellationReason"],"bindings":{"cancellationReason":"id"}},"faq.index":{"uri":"faq","methods":["GET","HEAD"]},"faq.list":{"uri":"faq\/list","methods":["GET","HEAD"]},"faq.create":{"uri":"faq\/create","methods":["GET","HEAD"]},"faq.store":{"uri":"faq\/store","methods":["POST"]},"faq.edit":{"uri":"faq\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"faq.update":{"uri":"faq\/update\/{faq}","methods":["POST"],"parameters":["faq"],"bindings":{"faq":"id"}},"faq.updateStatus":{"uri":"faq\/update-status","methods":["POST"]},"faq.delete":{"uri":"faq\/delete\/{faq}","methods":["DELETE"],"parameters":["faq"],"bindings":{"faq":"id"}},"complainttitle.index":{"uri":"complaint-title","methods":["GET","HEAD"]},"complainttitle.create":{"uri":"complaint-title\/create","methods":["GET","HEAD"]},"complainttitle.list":{"uri":"complaint-title\/list","methods":["GET","HEAD"]},"complainttitle.store":{"uri":"complaint-title\/store","methods":["POST"]},"complainttitle.edit":{"uri":"complaint-title\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"complainttitle.update":{"uri":"complaint-title\/update\/{complaintTitle}","methods":["POST"],"parameters":["complaintTitle"],"bindings":{"complaintTitle":"id"}},"complainttitle.updateStatus":{"uri":"complaint-title\/update-status","methods":["POST"]},"complainttitle.delete":{"uri":"complaint-title\/delete\/{complaintTitle}","methods":["DELETE"],"parameters":["complaintTitle"],"bindings":{"complaintTitle":"id"}},"drivergeneralcomplaint.driverGeneralComplaint":{"uri":"driver-complaint\/general-complaint","methods":["GET","HEAD"]},"driverGeneralComplaint.listComplaint":{"uri":"driver-complaint\/list","methods":["GET","HEAD"]},"driverGeneralComplaint.taken":{"uri":"driver-complaint\/taken\/{complaint}","methods":["GET","HEAD"],"parameters":["complaint"],"bindings":{"complaint":"id"}},"driverrequestcomplaint.driverRequestComplaint":{"uri":"driver-complaint\/request-complaint","methods":["GET","HEAD"]},"driverrequestcomplaint.requestListComplaint":{"uri":"driver-complaint\/driver-request-list","methods":["GET","HEAD"]},"usergeneralcomplaint.userGeneralComplaint":{"uri":"user-complaint\/general-complaint","methods":["GET","HEAD"]},"usergeneralcomplaint.listComplaint":{"uri":"user-complaint\/list","methods":["GET","HEAD"]},"usergeneralcomplaint.taken":{"uri":"user-complaint\/taken\/{complaint}","methods":["GET","HEAD"],"parameters":["complaint"],"bindings":{"complaint":"id"}},"userrequestcomplaint.userRequestComplaint":{"uri":"user-complaint\/request-complaint","methods":["GET","HEAD"]},"usergeneralcomplaint.requestComplaint":{"uri":"user-complaint\/request-list","methods":["GET","HEAD"]},"ownergeneralcomplaint.ownerGeneralComplaint":{"uri":"owner-complaint\/general-complaint","methods":["GET","HEAD"]},"ownergeneralcomplaint.listComplaint":{"uri":"owner-complaint\/list","methods":["GET","HEAD"]},"ownergeneralcomplaint.taken":{"uri":"owner-complaint\/taken\/{complaint}","methods":["GET","HEAD"],"parameters":["complaint"],"bindings":{"complaint":"id"}},"ownerrequestcomplaint.ownerRequestComplaint":{"uri":"owner-complaint\/request-complaint","methods":["GET","HEAD"]},"ownerrequestcomplaint.requestComplaint":{"uri":"owner-complaint\/request-list","methods":["GET","HEAD"]},"dispatch.index":{"uri":"dispatch","methods":["GET","HEAD"]},"dispatch.userRequestComplaint":{"uri":"dispatch\/request-complaint","methods":["GET","HEAD"]},"paymentgateway.index":{"uri":"payment-gateway","methods":["GET","HEAD"]},"paymentgateway.update":{"uri":"payment-gateway\/update","methods":["POST"]},"paymentgateway.updateStatus":{"uri":"payment-gateway\/update-statuss","methods":["POST"]},"smsgateway.index":{"uri":"sms-gateway","methods":["GET","HEAD"]},"firebase.index":{"uri":"firebase","methods":["GET","HEAD"]},"firebase.get":{"uri":"firebase\/get","methods":["GET","HEAD"]},"map.settings":{"uri":" map-settings","methods":["GET","HEAD"]},"mailconfiguration.index":{"uri":"mail-configuration","methods":["GET","HEAD"]},"mapapis.index":{"uri":"map-apis","methods":["GET","HEAD"]},"recaptcha.index":{"uri":"recaptcha","methods":["GET","HEAD"]},"mail-template.index":{"uri":"mail-template","methods":["GET","HEAD"]},"mail-template.create":{"uri":"mail-template\/create","methods":["GET","HEAD"]},"mail-template.list":{"uri":"mail-template\/list","methods":["GET","HEAD"]},"mail-template.store":{"uri":"mail-template\/store","methods":["POST"]},"mail-template.edit":{"uri":"mail-template\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"mail-template.update":{"uri":"mail-template\/update\/{emails}","methods":["POST"],"parameters":["emails"],"bindings":{"emails":"id"}},"mail-template.destroy":{"uri":"mail-template\/delete\/{emails}","methods":["DELETE"],"parameters":["emails"],"bindings":{"emails":"id"}},"map.heatmap":{"uri":"map\/heat_map","methods":["GET","HEAD"]},"map.godseye":{"uri":"map\/gods_eye","methods":["GET","HEAD"]},"map.openGodseye":{"uri":"map\/open_gods_eye","methods":["GET","HEAD"]},"approveddriver.Index":{"uri":"approved-drivers","methods":["GET","HEAD"]},"approveddriver.create":{"uri":"approved-drivers\/create","methods":["GET","HEAD"]},"approveddriver.store":{"uri":"approved-drivers\/store","methods":["POST"]},"approveddriver.edit":{"uri":"approved-drivers\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"approveddriver.update":{"uri":"approved-drivers\/update\/{driver}","methods":["POST"],"parameters":["driver"],"bindings":{"driver":"id"}},"approveddriver.disapprove":{"uri":"approved-drivers\/disapprove\/{driver}","methods":["POST"],"parameters":["driver"],"bindings":{"driver":"id"}},"approveddriver.viewProfile":{"uri":"approved-drivers\/view-profile\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"approveddriver.uploadDocument":{"uri":"approved-drivers\/document-upolad","methods":["GET","HEAD"]},"approveddriver.checkMobileExists":{"uri":"approved-drivers\/check-mobile\/{mobile}\/{driverId}","methods":["GET","HEAD"],"parameters":["mobile","driverId"]},"approveddriver.checkEmailExists":{"uri":"approved-drivers\/check-email\/{email}\/{driverId}","methods":["GET","HEAD"],"parameters":["email","driverId"]},"approveddriver.list":{"uri":"approved-drivers\/list","methods":["GET","HEAD"]},"approveddriver.ViewDocument":{"uri":"approved-drivers\/document\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"approveddriver.listDocument":{"uri":"approved-drivers\/document\/list\/{driverId}","methods":["GET","HEAD"],"parameters":["driverId"]},"approveddriver.documentUpload":{"uri":"approved-drivers\/document-upload\/{document}\/{driverId}","methods":["GET","HEAD"],"parameters":["document","driverId"],"bindings":{"document":"id","driverId":"id"}},"approveddriver.documentUploadStore":{"uri":"approved-drivers\/document-upload\/{document}\/{driverId}","methods":["POST"],"parameters":["document","driverId"],"bindings":{"document":"id","driverId":"id"}},"approveddriver.approveDriverDocument":{"uri":"approved-drivers\/document-toggle\/{documentId}\/{driverId}\/{status}","methods":["GET","HEAD"],"parameters":["documentId","driverId","status"]},"approveddriver.addAmount":{"uri":"approved-drivers\/wallet-add-amount\/{driver}","methods":["POST"],"parameters":["driver"],"bindings":{"driver":"id"}},"approveddriver.walletHistoryList":{"uri":"approved-drivers\/wallet-history\/list\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"approveddrivers.requestList":{"uri":"approved-drivers\/request\/list\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"pendingdriver.indexIndex":{"uri":"pending-drivers","methods":["GET","HEAD"]},"driverlevelup.index":{"uri":"drivers-levelup","methods":["GET","HEAD"]},"driverlevelup.list":{"uri":"drivers-levelup\/list","methods":["GET","HEAD"]},"approveddriver.driverLeveStore":{"uri":"drivers-levelup\/store","methods":["POST"]},"driverlevelup.edit":{"uri":"drivers-levelup\/edit\/{level}","methods":["GET","HEAD"],"parameters":["level"],"bindings":{"level":"id"}},"driverlevelup.settingsUpdate":{"uri":"drivers-levelup\/settingsUpdate","methods":["POST"]},"approveddriver.driverLevelUpdate":{"uri":"drivers-levelup\/update\/{level}","methods":["POST"],"parameters":["level"],"bindings":{"level":"id"}},"approveddriver.driverLevelDelete":{"uri":"drivers-levelup\/delete\/{level}","methods":["DELETE"],"parameters":["level"],"bindings":{"level":"id"}},"driverlevelup.create":{"uri":"drivers-levelup\/create","methods":["GET","HEAD"]},"driversrating.driverRatingIndex":{"uri":"drivers-rating","methods":["GET","HEAD"]},"driversrating.list":{"uri":"drivers-rating\/list","methods":["GET","HEAD"]},"driversrating.viewDriverRating":{"uri":"drivers-rating\/view-profile\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"driversRequestRating.history":{"uri":"drivers-rating\/request-list\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"deleterequestdrivers.index":{"uri":"delete-request-drivers","methods":["GET","HEAD"]},"deleterequestdrivers.list":{"uri":"delete-request-drivers\/list","methods":["GET","HEAD"]},"deleterequestdrivers.destroyDriver":{"uri":"delete-request-drivers\/delete\/{driver}","methods":["DELETE"],"parameters":["driver"],"bindings":{"driver":"id"}},"driverneededdocuments.Index":{"uri":"driver-needed-documents","methods":["GET","HEAD"]},"driverneededdocuments.list":{"uri":"driver-needed-documents\/list","methods":["GET","HEAD"]},"driverneededdocuments.Create":{"uri":"driver-needed-documents\/create","methods":["GET","HEAD"]},"driverneededdocuments.store":{"uri":"driver-needed-documents\/store","methods":["POST"]},"driverneededdocuments.Update":{"uri":"driver-needed-documents\/update\/{driverNeededDocument}","methods":["POST"],"parameters":["driverNeededDocument"],"bindings":{"driverNeededDocument":"id"}},"driverneededdocuments.edit":{"uri":"driver-needed-documents\/edit\/{driverNeededDocument}","methods":["GET","HEAD"],"parameters":["driverNeededDocument"],"bindings":{"driverNeededDocument":"id"}},"driverneededdocuments.updateDocumentStatus":{"uri":"driver-needed-documents\/update-status","methods":["POST"]},"driverneededdocuments.destroyDriverDocument":{"uri":"driver-needed-documents\/delete\/{driverNeededDocument}","methods":["DELETE"],"parameters":["driverNeededDocument"],"bindings":{"driverNeededDocument":"id"}},"withdrawalrequestdrivers.index":{"uri":"withdrawal-request-drivers","methods":["GET","HEAD"]},"withdrawalrequestdrivers.list":{"uri":"withdrawal-request-drivers\/list","methods":["GET","HEAD"]},"withdrawalrequestdrivers.ViewDetails":{"uri":"withdrawal-request-drivers\/view-in-detail\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"withdrawalrequestAmount.list":{"uri":"withdrawal-request-drivers\/amounts\/{driver_id}","methods":["GET","HEAD"],"parameters":["driver_id"],"bindings":{"driver_id":"id"}},"withdrawalrequest.updateStatus":{"uri":"withdrawal-request-drivers\/update-status","methods":["POST"]},"negativebalancedrivers.index":{"uri":"negative-balance-drivers","methods":["GET","HEAD"]},"negativebalancedrivers.list":{"uri":"negative-balance-drivers\/list","methods":["GET","HEAD"]},"negativebalancedrivers.payment":{"uri":"negative-balance-drivers\/view-profile\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"admins.index":{"uri":"admins","methods":["GET","HEAD"]},"admins.list":{"uri":"admins\/list","methods":["GET","HEAD"]},"admins.create":{"uri":"admins\/create","methods":["GET","HEAD"]},"admins.store":{"uri":"admins\/store","methods":["POST"]},"admins.update":{"uri":"admins\/update\/{adminDetail}","methods":["POST"],"parameters":["adminDetail"],"bindings":{"adminDetail":"id"}},"admins.edit":{"uri":"admins\/edit\/{adminDetail}","methods":["GET","HEAD"],"parameters":["adminDetail"],"bindings":{"adminDetail":"id"}},"admin.destroy":{"uri":"admins\/delete\/{adminDetail}","methods":["DELETE"],"parameters":["adminDetail"],"bindings":{"adminDetail":"id"}},"admin.updateDocumentStatus":{"uri":"admins\/update-status","methods":["POST"]},"report.userReport":{"uri":"report\/user-report","methods":["GET","HEAD"]},"report.userReportDownload":{"uri":"report\/user-report-download","methods":["POST"]},"report.driverReport":{"uri":"report\/driver-report","methods":["GET","HEAD"]},"report.driverReportDownload":{"uri":"report\/driver-report-download","methods":["POST"]},"report.getVehicletypes":{"uri":"report\/getVehicleTypes","methods":["GET","HEAD"]},"report.ownerReport":{"uri":"report\/owner-report","methods":["GET","HEAD"]},"report.ownerReportDownload":{"uri":"report\/owner-report-download","methods":["POST"]},"report.financeReport":{"uri":"report\/finance-report","methods":["GET","HEAD"]},"report.financeReportDownload":{"uri":"report\/finance-report-download","methods":["POST"]},"report.fleetReport":{"uri":"report\/fleet-report","methods":["GET","HEAD"]},"report.listFleet":{"uri":"report\/list-fleets","methods":["GET","HEAD"]},"report.fleetReportDownload":{"uri":"report\/fleet-report-download","methods":["POST"]},"report.driverDutyReport":{"uri":"report\/driver-duty-report","methods":["GET","HEAD"]},"report.driverDutyReportDownload":{"uri":"report\/driver-duty-report-download","methods":["POST"]},"report.getDrivers":{"uri":"report\/getDrivers","methods":["GET","HEAD"]},"manageowners.index":{"uri":"manage-owners","methods":["GET","HEAD"]},"manageowners.Create":{"uri":"manage-owners\/create","methods":["GET","HEAD"]},"manageowners.list":{"uri":"manage-owners\/list","methods":["GET","HEAD"]},"manageowners.store":{"uri":"manage-owners\/store","methods":["POST"]},"manageowners.edit":{"uri":"manage-owners\/edit\/{owner}","methods":["GET","HEAD"],"parameters":["owner"],"bindings":{"owner":"id"}},"manageowners.update":{"uri":"manage-owners\/update\/{owner}","methods":["POST"],"parameters":["owner"],"bindings":{"owner":"id"}},"manageowners.approve":{"uri":"manage-owners\/approve\/{owner}","methods":["POST"],"parameters":["owner"]},"manageowners.delete":{"uri":"manage-owners\/delete\/{owner}","methods":["DELETE"],"parameters":["owner"],"bindings":{"owner":"id"}},"manageowners.document":{"uri":"manage-owners\/document\/{owner}","methods":["GET","HEAD"],"parameters":["owner"],"bindings":{"owner":"id"}},"manageowners.checkEmailExists":{"uri":"manage-owners\/check-email","methods":["POST"]},"manageowners.checkMobileExists":{"uri":"manage-owners\/check-mobile","methods":["POST"]},"manageowners.listDocument":{"uri":"manage-owners\/document\/list\/{owner}","methods":["GET","HEAD"],"parameters":["owner"]},"manageowners.documentUpload":{"uri":"manage-owners\/document-upload\/{document}\/{ownerId}","methods":["GET","HEAD"],"parameters":["document","ownerId"],"bindings":{"document":"id","ownerId":"id"}},"manageowners.documentUploadStore":{"uri":"manage-owners\/document-upload\/{document}\/{ownerId}","methods":["POST"],"parameters":["document","ownerId"],"bindings":{"document":"id","ownerId":"id"}},"manageowners.approveOwnerDocument":{"uri":"manage-owners\/document-toggle\/{documentId}\/{ownerId}\/{status}","methods":["GET","HEAD"],"parameters":["documentId","ownerId","status"]},"manageowners.ownerPaymentHistory":{"uri":"manage-owners\/owner-payment-history\/{owner}","methods":["GET","HEAD"],"parameters":["owner"]},"withdrawalrequestOwners.index":{"uri":"withdrawal-request-owners","methods":["GET","HEAD"]},"withdrawalrequestOwners.list":{"uri":"withdrawal-request-owners\/list","methods":["GET","HEAD"]},"withdrawalrequestOwners.ViewDetails":{"uri":"withdrawal-request-owners\/view-in-detail\/{owner}","methods":["GET","HEAD"],"parameters":["owner"],"bindings":{"owner":"id"}},"withdrawalrequestOwner.list":{"uri":"withdrawal-request-owners\/amounts\/{owner_id}","methods":["GET","HEAD"],"parameters":["owner_id"],"bindings":{"owner_id":"id"}},"withdrawalrequestOwners.updateStatus":{"uri":"withdrawal-request-owners\/update-status","methods":["POST"]},"fleetneeddocuments.index":{"uri":"fleet-needed-documents","methods":["GET","HEAD"]},"fleetneeddocuments.list":{"uri":"fleet-needed-documents\/list","methods":["GET","HEAD"]},"fleetneeddocuments.create":{"uri":"fleet-needed-documents\/create","methods":["GET","HEAD"]},"fleetneeddocuments.store":{"uri":"fleet-needed-documents\/store","methods":["POST"]},"fleetneeddocuments.edit":{"uri":"fleet-needed-documents\/edit\/{document}","methods":["GET","HEAD"],"parameters":["document"],"bindings":{"document":"id"}},"fleetneeddocuments.update":{"uri":"fleet-needed-documents\/update\/{document}","methods":["POST"],"parameters":["document"],"bindings":{"document":"id"}},"fleetneeddocuments.updatestatus":{"uri":"fleet-needed-documents\/toggle","methods":["POST"]},"fleetneeddocuments.delete":{"uri":"fleet-needed-documents\/delete\/{document}","methods":["DELETE"],"parameters":["document"],"bindings":{"document":"id"}},"managefleets.index":{"uri":"manage-fleet","methods":["GET","HEAD"]},"managefleets.Create":{"uri":"manage-fleet\/create","methods":["GET","HEAD"]},"managefleets.list":{"uri":"manage-fleet\/list","methods":["GET","HEAD"]},"managefleets.store":{"uri":"manage-fleet\/store","methods":["POST"]},"managefleets.edit":{"uri":"manage-fleet\/edit\/{fleet}","methods":["GET","HEAD"],"parameters":["fleet"],"bindings":{"fleet":"id"}},"managefleets.update":{"uri":"manage-fleet\/update\/{fleet}","methods":["POST"],"parameters":["fleet"],"bindings":{"fleet":"id"}},"managefleets.assignDriver":{"uri":"manage-fleet\/assign\/{fleet}\/{driver}","methods":["POST"],"parameters":["fleet","driver"],"bindings":{"fleet":"id","driver":"id"}},"managefleets.approve":{"uri":"manage-fleet\/approve\/{fleet}","methods":["POST"],"parameters":["fleet"]},"managefleets.delete":{"uri":"manage-fleet\/delete\/{fleet}","methods":["DELETE"],"parameters":["fleet"],"bindings":{"fleet":"id"}},"managefleets.document":{"uri":"manage-fleet\/document\/{fleet}","methods":["GET","HEAD"],"parameters":["fleet"],"bindings":{"fleet":"id"}},"managefleets.listDocument":{"uri":"manage-fleet\/document\/list\/{fleet}","methods":["GET","HEAD"],"parameters":["fleet"]},"managefleets.listFleetDrivers":{"uri":"manage-fleet\/listFleetDriver\/{fleet}","methods":["GET","HEAD"],"parameters":["fleet"],"bindings":{"fleet":"id"}},"managefleets.documentUpload":{"uri":"manage-fleet\/document-upload\/{document}\/{fleetId}","methods":["GET","HEAD"],"parameters":["document","fleetId"],"bindings":{"document":"id","fleetId":"id"}},"managefleets.documentUploadStore":{"uri":"manage-fleet\/document-upload\/{document}\/{fleetId}","methods":["POST"],"parameters":["document","fleetId"],"bindings":{"document":"id","fleetId":"id"}},"managefleets.approvefleetDocument":{"uri":"manage-fleet\/document-toggle\/{documentId}\/{fleetId}\/{status}","methods":["GET","HEAD"],"parameters":["documentId","fleetId","status"]},"managefleets.fleetPaymentHistory":{"uri":"manage-fleet\/fleet-payment-history\/{fleet}","methods":["GET","HEAD"],"parameters":["fleet"]},"approvedFleetdriver.Index":{"uri":"fleet-drivers","methods":["GET","HEAD"]},"approvedFleetdriver.pendingIndex":{"uri":"fleet-drivers\/pending","methods":["GET","HEAD"]},"fleet-drivers.list":{"uri":"fleet-drivers\/list","methods":["GET","HEAD"]},"fleet-drivers.store":{"uri":"fleet-drivers\/store","methods":["POST"]},"fleet-drivers.edit":{"uri":"fleet-drivers\/edit\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"fleet-drivers.create":{"uri":"fleet-drivers\/create","methods":["GET","HEAD"]},"fleet-drivers.update":{"uri":"fleet-drivers\/update\/{driver}","methods":["POST"],"parameters":["driver"],"bindings":{"driver":"id"}},"fleet-drivers.approve":{"uri":"fleet-drivers\/approve\/{driver}","methods":["POST"],"parameters":["driver"],"bindings":{"driver":"id"}},"fleet-drivers.delete":{"uri":"fleet-drivers\/delete\/{driver}","methods":["DELETE"],"parameters":["driver"]},"fleet-drivers.listOwnersByLocation":{"uri":"fleet-drivers\/ownerList","methods":["GET","HEAD"]},"fleet-drivers.listOwners":{"uri":"fleet-drivers\/list-owners","methods":["GET","HEAD"]},"approvedFleetdriver.ViewDocument":{"uri":"fleet-drivers\/document\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"approvedFleetdriver.listDocument":{"uri":"fleet-drivers\/document\/list\/{driverId}","methods":["GET","HEAD"],"parameters":["driverId"]},"approvedFleetdriver.documentUpload":{"uri":"fleet-drivers\/document-upload\/{document}\/{driverId}","methods":["GET","HEAD"],"parameters":["document","driverId"],"bindings":{"document":"id","driverId":"id"}},"approvedFleetdriver.documentUploadStore":{"uri":"fleet-drivers\/document-upload-store\/{document}\/{driverId}","methods":["POST"],"parameters":["document","driverId"],"bindings":{"document":"id","driverId":"id"}},"approvedFleetdriver.approveDriverDocument":{"uri":"fleet-drivers\/document-toggle\/{documentId}\/{driverId}\/{status}","methods":["GET","HEAD"],"parameters":["documentId","driverId","status"]},"pendingdriver.fleetIndex":{"uri":"fleet-drivers\/pending-drivers","methods":["GET","HEAD"]},"goodstype.index":{"uri":"goods-type","methods":["GET","HEAD"]},"goodstype.create":{"uri":"goods-type\/create","methods":["GET","HEAD"]},"goodstype.store":{"uri":"goods-type\/store","methods":["POST"]},"goodstype.list":{"uri":"goods-type\/list","methods":["GET","HEAD"]},"goodstype.edit":{"uri":"goods-type\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"goodstype.update":{"uri":"goods-type\/update\/{goods_type}","methods":["POST"],"parameters":["goods_type"]},"goodstype.delete":{"uri":"goods-type\/delete\/{goods_type}","methods":["DELETE"],"parameters":["goods_type"]},"goodstype.updateStatus":{"uri":"goods-type\/update-status","methods":["POST"]},"bannerimage.index":{"uri":"banner-image","methods":["GET","HEAD"]},"bannerimage.create":{"uri":"banner-image\/create","methods":["GET","HEAD"]},"bannerimage.list":{"uri":"banner-image\/list","methods":["GET","HEAD"]},"bannerimage.update":{"uri":"banner-image\/update\/{bannerimage}","methods":["POST"],"parameters":["bannerimage"],"bindings":{"bannerimage":"id"}},"bannerimage.store":{"uri":"banner-image\/store","methods":["POST"]},"bannerimage.edit":{"uri":"banner-image\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"bannerimage.delete":{"uri":"banner-image\/delete\/{bannerimage}","methods":["DELETE"],"parameters":["bannerimage"],"bindings":{"bannerimage":"id"}},"bannerimage.updateStatus":{"uri":"banner-image\/update-status","methods":["POST"]},"ownerneeddocuments.index":{"uri":"owner-needed-documents","methods":["GET","HEAD"]},"ownerneeddocuments.list":{"uri":"owner-needed-documents\/list","methods":["GET","HEAD"]},"ownerneeddocuments.create":{"uri":"owner-needed-documents\/create","methods":["GET","HEAD"]},"ownerneeddocuments.store":{"uri":"owner-needed-documents\/store","methods":["POST"]},"ownerneeddocuments.edit":{"uri":"owner-needed-documents\/edit\/{document}","methods":["GET","HEAD"],"parameters":["document"],"bindings":{"document":"id"}},"ownerneeddocuments.update":{"uri":"owner-needed-documents\/update\/{document}","methods":["POST"],"parameters":["document"],"bindings":{"document":"id"}},"ownerneeddocuments.updatestatus":{"uri":"owner-needed-documents\/toggle","methods":["POST"]},"ownerneeddocuments.delete":{"uri":"owner-needed-documents\/delete\/{document}","methods":["DELETE"],"parameters":["document"],"bindings":{"document":"id"}},"onboardingscreen.index":{"uri":"onboarding-screen","methods":["GET","HEAD"]},"onboardingscreen.list":{"uri":"onboarding-screen\/list","methods":["GET","HEAD"]},"onboardingscreen.edit":{"uri":"onboarding-screen\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"onboardingscreen.update":{"uri":"onboarding-screen\/update\/{id}","methods":["POST"],"parameters":["id"]},"onboardingscreen.updateStatus":{"uri":"onboarding-screen\/update-status","methods":["POST"]},"invoiceconfiguration.index":{"uri":"invoice-configuration","methods":["GET","HEAD"]},"mapsettings.index":{"uri":"map-setting","methods":["GET","HEAD"]},"mapsettings.update":{"uri":"map-setting\/update","methods":["POST"]},"settings.generalSettings":{"uri":"general-settings","methods":["GET","HEAD"]},"settings.updateGeneralSettings":{"uri":"general-settings\/update","methods":["POST"]},"settings.updateStatus":{"uri":"general-settings\/update-status","methods":["POST"]},"settings.customizationSettings":{"uri":"customization-settings","methods":["GET","HEAD"]},"settings.updateCustomizationSettings":{"uri":"customization-settings\/update","methods":["POST"]},"settings.updateCustomizationStatus":{"uri":"customization-settings\/update-status","methods":["POST"]},"settings.transportRideSettings":{"uri":"transport-ride-settings","methods":["GET","HEAD"]},"settings.updateTransportSettings":{"uri":"transport-ride-settings\/update","methods":["POST"]},"settings.updateTransportStatus":{"uri":"transport-ride-settings\/update-status","methods":["POST"]},"settings.bidRideSettings":{"uri":"bid-ride-settings","methods":["GET","HEAD"]},"settings.updateBidSettings":{"uri":"bid-ride-settings\/update","methods":["POST"]},"settings.walletSettings":{"uri":"wallet-settings","methods":["GET","HEAD"]},"settings.updateWalletSettings":{"uri":"wallet-settings\/update","methods":["POST"]},"settings.referralSettings":{"uri":"referral-settings","methods":["GET","HEAD"]},"settings.updateRefrerralSettings":{"uri":"referral-settings\/update","methods":["POST"]},"triprequest.ridesRequest":{"uri":"rides-request","methods":["GET","HEAD"]},"triprequest.list":{"uri":"rides-request\/list","methods":["GET","HEAD"]},"triprequest.driverFind":{"uri":"rides-request\/driver\/{driver}","methods":["POST"],"parameters":["driver"],"bindings":{"driver":"id"}},"triprequest.viewDetails":{"uri":"rides-request\/view\/{requestmodel}","methods":["GET","HEAD"],"parameters":["requestmodel"],"bindings":{"requestmodel":"id"}},"triprequest.cancel":{"uri":"rides-request\/cancel\/{requestmodel}","methods":["GET","HEAD"],"parameters":["requestmodel"],"bindings":{"requestmodel":"id"}},"triprequest.sosDetail":{"uri":"rides-request\/detail\/{request}","methods":["GET","HEAD"],"parameters":["request"],"bindings":{"request":"id"}},"triprequest.scheduledRides":{"uri":"scheduled-rides","methods":["GET","HEAD"]},"triprequest.outstationRides":{"uri":"out-station-rides","methods":["GET","HEAD"]},"triprequest.cancellationRides":{"uri":"cancellation-rides","methods":["GET","HEAD"]},"triprequest.cancellationRidesViewDetails":{"uri":"cancellation-rides\/view","methods":["GET","HEAD"]},"deliveryTriprequest.ridesRequest":{"uri":"delivery-rides-request","methods":["GET","HEAD"]},"deliveryTriprequest.list":{"uri":"delivery-rides-request\/list","methods":["GET","HEAD"]},"deliveryTriprequest.driverFind":{"uri":"delivery-rides-request\/driver\/{driver}","methods":["POST"],"parameters":["driver"],"bindings":{"driver":"id"}},"deliveryTriprequest.viewDetails":{"uri":"delivery-rides-request\/view\/{requestmodel}","methods":["GET","HEAD"],"parameters":["requestmodel"],"bindings":{"requestmodel":"id"}},"deliveryTriprequest.cancel":{"uri":"delivery-rides-request\/cancel\/{requestmodel}","methods":["GET","HEAD"],"parameters":["requestmodel"],"bindings":{"requestmodel":"id"}},"delivery-scheduled-rides.scheduledRides":{"uri":"delivery-scheduled-rides","methods":["GET","HEAD"]},"delivery-scheduled-rides.viewDetails":{"uri":"delivery-scheduled-rides\/view","methods":["GET","HEAD"]},"deliveryrequest.cancellationRides":{"uri":"delivery-cancellation-rides","methods":["GET","HEAD"]},"deliveryrequest.viewCancelDetails":{"uri":"delivery-cancellation-rides\/view","methods":["GET","HEAD"]},"triprequest.ongoingRides":{"uri":"ongoing-rides","methods":["GET","HEAD"]},"triprequest.ongoingRideDetail":{"uri":"ongoing-rides\/find-ride\/{request}","methods":["GET","HEAD"],"parameters":["request"],"bindings":{"request":"id"}},"triprequest.assignView":{"uri":"ongoing-rides\/assign\/{request}","methods":["GET","HEAD"],"parameters":["request"],"bindings":{"request":"id"}},"triprequest.assignDriver":{"uri":"ongoing-rides\/assign-driver\/{requestmodel}","methods":["POST"],"parameters":["requestmodel"],"bindings":{"requestmodel":"id"}},"images.index":{"uri":"images","methods":["GET","HEAD"]},"images.create":{"uri":"images\/create","methods":["GET","HEAD"]},"images.update":{"uri":"images\/update","methods":["GET","HEAD"]},"users.index":{"uri":"users","methods":["GET","HEAD"]},"users.list":{"uri":"users\/list","methods":["GET","HEAD"]},"users.create":{"uri":"users\/create","methods":["GET","HEAD"]},"users.store":{"uri":"users\/store","methods":["POST"]},"users.edit":{"uri":"users\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"users.update":{"uri":"users\/update\/{user}","methods":["POST"],"parameters":["user"],"bindings":{"user":"id"}},"users.checkMobileExists":{"uri":"users\/check-mobile\/{mobile}\/{id}","methods":["GET","HEAD"],"parameters":["mobile","id"]},"users.checkEmailExists":{"uri":"users\/check-email\/{email}\/{id}","methods":["GET","HEAD"],"parameters":["email","id"]},"users.updateStatus":{"uri":"users\/update-status","methods":["POST"]},"users.view-profile":{"uri":"users\/view-profile\/{user}","methods":["GET","HEAD"],"parameters":["user"],"bindings":{"user":"id"}},"users.addAmount":{"uri":"users\/wallet-add-amount\/{user}","methods":["POST"],"parameters":["user"],"bindings":{"user":"id"}},"users.walletHistoryList":{"uri":"users\/wallet-history\/list\/{user}","methods":["GET","HEAD"],"parameters":["user"],"bindings":{"user":"id"}},"users.requestList":{"uri":"users\/request\/list\/{user}","methods":["GET","HEAD"],"parameters":["user"],"bindings":{"user":"id"}},"users.deleted-users":{"uri":"users\/deleted-user","methods":["GET","HEAD"]},"users.deletedList":{"uri":"users\/deletedList","methods":["GET","HEAD"]},"zone.index":{"uri":"zones","methods":["GET","HEAD"]},"zone.create":{"uri":"zones\/create","methods":["GET","HEAD"]},"zone.store":{"uri":"zones\/store","methods":["POST"]},"zone.fetch":{"uri":"zones\/fetch","methods":["GET","HEAD"]},"zone.list":{"uri":"zones\/list","methods":["GET","HEAD"]},"zone.edit":{"uri":"zones\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"zone.update":{"uri":"zones\/update\/{zone}","methods":["POST"],"parameters":["zone"],"bindings":{"zone":"id"}},"zone.updateStatus":{"uri":"zones\/update-status","methods":["POST"]},"zone.map":{"uri":"zones\/map\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"zone.surge":{"uri":"zones\/surge\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"zone.updateSurge":{"uri":"zones\/surge\/update\/{zone}","methods":["POST"],"parameters":["zone"],"bindings":{"zone":"id"}},"incentives.index":{"uri":"incentives","methods":["GET","HEAD"]},"incentives.update":{"uri":"incentives\/update","methods":["POST"]},"landing.index":{"uri":"\/","methods":["GET","HEAD"]},"landing.driver":{"uri":"driver","methods":["GET","HEAD"]},"landing.aboutus":{"uri":"aboutus","methods":["GET","HEAD"]},"landing.user":{"uri":"user","methods":["GET","HEAD"]},"landing.contact":{"uri":"contact","methods":["GET","HEAD"]},"landing.privacy":{"uri":"privacy","methods":["GET","HEAD"]},"landing.compliance":{"uri":"compliance","methods":["GET","HEAD"]},"landing.terms":{"uri":"terms","methods":["GET","HEAD"]},"landing.dmv":{"uri":"dmv","methods":["GET","HEAD"]},"web-booking.create-booking":{"uri":"create-booking","methods":["GET","HEAD"]},"web-booking.profile":{"uri":"profile","methods":["GET","HEAD"]},"user.updateProfile":{"uri":"user\/update-profile","methods":["POST"]},"web-booking.history":{"uri":"history","methods":["GET","HEAD"]},"history.viewDetails":{"uri":"history\/view\/{requestmodel}","methods":["GET","HEAD"],"parameters":["requestmodel"],"bindings":{"requestmodel":"id"}},"web-users.list":{"uri":"webuser\/list","methods":["GET","HEAD"]},"app.install":{"uri":"installation","methods":["GET","HEAD"]},"overall.menu":{"uri":"overall-menu","methods":["GET","HEAD"]},"chat.index":{"uri":"chat","methods":["GET","HEAD"]},"chat.fetchUser":{"uri":"chat\/fetch-user","methods":["GET","HEAD"]},"chat.messages":{"uri":"chat\/messages\/{conversationId}","methods":["GET","HEAD"],"parameters":["conversationId"],"bindings":{"conversationId":"id"}},"chat.sendAdmin":{"uri":"chat\/send-admin","methods":["POST"]},"chat.closeChat":{"uri":"chat\/close-chat","methods":["POST"]},"chat.fetchChats":{"uri":"chat\/fetchChat","methods":["GET","HEAD"]},"chat.readAll":{"uri":"chat\/readAll","methods":["GET","HEAD"]},"landing_home.index":{"uri":"landing-home","methods":["GET","HEAD"]},"landing_home.list":{"uri":"landing-home\/list","methods":["GET","HEAD"]},"landing_home.create":{"uri":"landing-home\/create","methods":["GET","HEAD"]},"landing_home.store":{"uri":"landing-home\/store","methods":["POST"]},"landing_home.edit":{"uri":"landing-home\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"landing_home.update":{"uri":"landing-home\/update\/{landingHome}","methods":["POST"],"parameters":["landingHome"],"bindings":{"landingHome":"id"}},"landing_home.delete":{"uri":"landing-home\/delete\/{landingHome}","methods":["DELETE"],"parameters":["landingHome"],"bindings":{"landingHome":"id"}},"landing_abouts.index":{"uri":"landing-aboutus","methods":["GET","HEAD"]},"landing_abouts.list":{"uri":"landing-aboutus\/list","methods":["GET","HEAD"]},"landing_abouts.create":{"uri":"landing-aboutus\/create","methods":["GET","HEAD"]},"landing_abouts.store":{"uri":"landing-aboutus\/store","methods":["POST"]},"landing_abouts.edit":{"uri":"landing-aboutus\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"landing_abouts.update":{"uri":"landing-aboutus\/update\/{landingAbouts}","methods":["POST"],"parameters":["landingAbouts"],"bindings":{"landingAbouts":"id"}},"landing_abouts.delete":{"uri":"landing-aboutus\/delete\/{landingAbouts}","methods":["DELETE"],"parameters":["landingAbouts"],"bindings":{"landingAbouts":"id"}},"landing_driver.index":{"uri":"landing-driver","methods":["GET","HEAD"]},"landing_driver.list":{"uri":"landing-driver\/list","methods":["GET","HEAD"]},"landing_driver.create":{"uri":"landing-driver\/create","methods":["GET","HEAD"]},"landing_driver.store":{"uri":"landing-driver\/store","methods":["POST"]},"landing_driver.edit":{"uri":"landing-driver\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"landing_driver.update":{"uri":"landing-driver\/update\/{landingDriver}","methods":["POST"],"parameters":["landingDriver"],"bindings":{"landingDriver":"id"}},"landing_driver.delete":{"uri":"landing-driver\/delete\/{landingDriver}","methods":["DELETE"],"parameters":["landingDriver"],"bindings":{"landingDriver":"id"}},"landing_user.index":{"uri":"landing-user","methods":["GET","HEAD"]},"landing_user.list":{"uri":"landing-user\/list","methods":["GET","HEAD"]},"landing_user.create":{"uri":"landing-user\/create","methods":["GET","HEAD"]},"landing_user.store":{"uri":"landing-user\/store","methods":["POST"]},"landing_user.edit":{"uri":"landing-user\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"landing_user.update":{"uri":"landing-user\/update\/{landingUser}","methods":["POST"],"parameters":["landingUser"],"bindings":{"landingUser":"id"}},"landing_user.delete":{"uri":"landing-user\/delete\/{landingUser}","methods":["DELETE"],"parameters":["landingUser"],"bindings":{"landingUser":"id"}},"landing_header.index":{"uri":"landing-header","methods":["GET","HEAD"]},"landing_header.list":{"uri":"landing-header\/list","methods":["GET","HEAD"]},"landing_header.create":{"uri":"landing-header\/create","methods":["GET","HEAD"]},"landing_header.store":{"uri":"landing-header\/store","methods":["POST"]},"landing_header.edit":{"uri":"landing-header\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"landing_header.update":{"uri":"landing-header\/update\/{landingHeader}","methods":["POST"],"parameters":["landingHeader"],"bindings":{"landingHeader":"id"}},"landing_header.delete":{"uri":"landing-header\/delete\/{landingHeader}","methods":["DELETE"],"parameters":["landingHeader"],"bindings":{"landingHeader":"id"}},"landing_quicklink.index":{"uri":"landing-quicklink","methods":["GET","HEAD"]},"landing_quicklink.list":{"uri":"landing-quicklink\/list","methods":["GET","HEAD"]},"landing_quicklink.create":{"uri":"landing-quicklink\/create","methods":["GET","HEAD"]},"landing_quicklink.store":{"uri":"landing-quicklink\/store","methods":["POST"]},"landing_quicklink.edit":{"uri":"landing-quicklink\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"landing_quicklink.update":{"uri":"landing-quicklink\/update\/{landingQuickLink}","methods":["POST"],"parameters":["landingQuickLink"],"bindings":{"landingQuickLink":"id"}},"landing_quicklink.delete":{"uri":"landing-quicklink\/delete\/{landingQuickLink}","methods":["DELETE"],"parameters":["landingQuickLink"],"bindings":{"landingQuickLink":"id"}},"landing_contact.index":{"uri":"landing-contact","methods":["GET","HEAD"]},"landing_contact.list":{"uri":"landing-contact\/list","methods":["GET","HEAD"]},"landing_contact.create":{"uri":"landing-contact\/create","methods":["GET","HEAD"]},"landing_contact.store":{"uri":"landing-contact\/store","methods":["POST"]},"landing_contact.edit":{"uri":"landing-contact\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"landing_contact.update":{"uri":"landing-contact\/update\/{landingContact}","methods":["POST"],"parameters":["landingContact"],"bindings":{"landingContact":"id"}},"landing_contact.delete":{"uri":"landing-contact\/delete\/{landingContact}","methods":["DELETE"],"parameters":["landingContact"],"bindings":{"landingContact":"id"}},"landing_contact.contactmessage":{"uri":"landing-contact\/contactmessage","methods":["POST"]},"paypal":{"uri":"paypal","methods":["GET","HEAD"]},"paypal.payment":{"uri":"paypal\/payment","methods":["POST"]},"paypal.payment.success":{"uri":"paypal\/payment\/success","methods":["GET","HEAD"]},"paypal.payment\/cancel":{"uri":"paypal\/payment\/cancel","methods":["GET","HEAD"]},"checkout.process":{"uri":"stripe-checkout","methods":["POST"]},"checkout.success":{"uri":"stripe-checkout-success","methods":["GET","HEAD"]},"checkout.failure":{"uri":"stripe-checkout-error","methods":["GET","HEAD"]},"flutterwave.success":{"uri":"flutterwave\/payment\/success","methods":["GET","HEAD"]},"paystack.success":{"uri":"paystack\/payment\/success","methods":["GET","HEAD"]},"khalti.success":{"uri":"khalti\/checkout","methods":["POST"]},"razorpay.success":{"uri":"payment-success","methods":["GET","HEAD"]},"mercadopago.success":{"uri":"mercadopago\/payment\/success","methods":["GET","HEAD"]},"ccavenue.checkout":{"uri":"ccavenue\/checkout","methods":["POST"]},"ccavenue.payment.response":{"uri":"ccavenue\/payment\/success","methods":["GET","HEAD"]},"ccavenue.payment.cancel":{"uri":"ccavenue\/payment\/failure","methods":["GET","HEAD"]}}};
!function(t,r){"object"==typeof exports&&"undefined"!=typeof module?module.exports=r():"function"==typeof define&&define.amd?define(r):(t||self).route=r()}(this,function(){function t(t,r){for(var e=0;e<r.length;e++){var n=r[e];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,"symbol"==typeof(o=function(t,r){if("object"!=typeof t||null===t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var n=e.call(t,"string");if("object"!=typeof n)return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key))?o:String(o),n)}var o}function r(r,e,n){return e&&t(r.prototype,e),n&&t(r,n),Object.defineProperty(r,"prototype",{writable:!1}),r}function e(){return e=Object.assign?Object.assign.bind():function(t){for(var r=1;r<arguments.length;r++){var e=arguments[r];for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])}return t},e.apply(this,arguments)}function n(t){return n=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},n(t)}function o(t,r){return o=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,r){return t.__proto__=r,t},o(t,r)}function i(t,r,e){return i=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(t){return!1}}()?Reflect.construct.bind():function(t,r,e){var n=[null];n.push.apply(n,r);var i=new(Function.bind.apply(t,n));return e&&o(i,e.prototype),i},i.apply(null,arguments)}function u(t){var r="function"==typeof Map?new Map:void 0;return u=function(t){if(null===t||-1===Function.toString.call(t).indexOf("[native code]"))return t;if("function"!=typeof t)throw new TypeError("Super expression must either be null or a function");if(void 0!==r){if(r.has(t))return r.get(t);r.set(t,e)}function e(){return i(t,arguments,n(this).constructor)}return e.prototype=Object.create(t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),o(e,t)},u(t)}var f=String.prototype.replace,a=/%20/g,c="RFC3986",l={default:c,formatters:{RFC1738:function(t){return f.call(t,a,"+")},RFC3986:function(t){return String(t)}},RFC1738:"RFC1738",RFC3986:c},s=Object.prototype.hasOwnProperty,v=Array.isArray,p=function(){for(var t=[],r=0;r<256;++r)t.push("%"+((r<16?"0":"")+r.toString(16)).toUpperCase());return t}(),y=function(t,r){for(var e=r&&r.plainObjects?Object.create(null):{},n=0;n<t.length;++n)void 0!==t[n]&&(e[n]=t[n]);return e},d={arrayToObject:y,assign:function(t,r){return Object.keys(r).reduce(function(t,e){return t[e]=r[e],t},t)},combine:function(t,r){return[].concat(t,r)},compact:function(t){for(var r=[{obj:{o:t},prop:"o"}],e=[],n=0;n<r.length;++n)for(var o=r[n],i=o.obj[o.prop],u=Object.keys(i),f=0;f<u.length;++f){var a=u[f],c=i[a];"object"==typeof c&&null!==c&&-1===e.indexOf(c)&&(r.push({obj:i,prop:a}),e.push(c))}return function(t){for(;t.length>1;){var r=t.pop(),e=r.obj[r.prop];if(v(e)){for(var n=[],o=0;o<e.length;++o)void 0!==e[o]&&n.push(e[o]);r.obj[r.prop]=n}}}(r),t},decode:function(t,r,e){var n=t.replace(/\+/g," ");if("iso-8859-1"===e)return n.replace(/%[0-9a-f]{2}/gi,unescape);try{return decodeURIComponent(n)}catch(t){return n}},encode:function(t,r,e,n,o){if(0===t.length)return t;var i=t;if("symbol"==typeof t?i=Symbol.prototype.toString.call(t):"string"!=typeof t&&(i=String(t)),"iso-8859-1"===e)return escape(i).replace(/%u[0-9a-f]{4}/gi,function(t){return"%26%23"+parseInt(t.slice(2),16)+"%3B"});for(var u="",f=0;f<i.length;++f){var a=i.charCodeAt(f);45===a||46===a||95===a||126===a||a>=48&&a<=57||a>=65&&a<=90||a>=97&&a<=122||o===l.RFC1738&&(40===a||41===a)?u+=i.charAt(f):a<128?u+=p[a]:a<2048?u+=p[192|a>>6]+p[128|63&a]:a<55296||a>=57344?u+=p[224|a>>12]+p[128|a>>6&63]+p[128|63&a]:(a=65536+((1023&a)<<10|1023&i.charCodeAt(f+=1)),u+=p[240|a>>18]+p[128|a>>12&63]+p[128|a>>6&63]+p[128|63&a])}return u},isBuffer:function(t){return!(!t||"object"!=typeof t||!(t.constructor&&t.constructor.isBuffer&&t.constructor.isBuffer(t)))},isRegExp:function(t){return"[object RegExp]"===Object.prototype.toString.call(t)},maybeMap:function(t,r){if(v(t)){for(var e=[],n=0;n<t.length;n+=1)e.push(r(t[n]));return e}return r(t)},merge:function t(r,e,n){if(!e)return r;if("object"!=typeof e){if(v(r))r.push(e);else{if(!r||"object"!=typeof r)return[r,e];(n&&(n.plainObjects||n.allowPrototypes)||!s.call(Object.prototype,e))&&(r[e]=!0)}return r}if(!r||"object"!=typeof r)return[r].concat(e);var o=r;return v(r)&&!v(e)&&(o=y(r,n)),v(r)&&v(e)?(e.forEach(function(e,o){if(s.call(r,o)){var i=r[o];i&&"object"==typeof i&&e&&"object"==typeof e?r[o]=t(i,e,n):r.push(e)}else r[o]=e}),r):Object.keys(e).reduce(function(r,o){var i=e[o];return r[o]=s.call(r,o)?t(r[o],i,n):i,r},o)}},b=Object.prototype.hasOwnProperty,h={brackets:function(t){return t+"[]"},comma:"comma",indices:function(t,r){return t+"["+r+"]"},repeat:function(t){return t}},g=Array.isArray,m=String.prototype.split,j=Array.prototype.push,w=function(t,r){j.apply(t,g(r)?r:[r])},O=Date.prototype.toISOString,E=l.default,R={addQueryPrefix:!1,allowDots:!1,charset:"utf-8",charsetSentinel:!1,delimiter:"&",encode:!0,encoder:d.encode,encodeValuesOnly:!1,format:E,formatter:l.formatters[E],indices:!1,serializeDate:function(t){return O.call(t)},skipNulls:!1,strictNullHandling:!1},S=function t(r,e,n,o,i,u,f,a,c,l,s,v,p,y){var b,h=r;if("function"==typeof f?h=f(e,h):h instanceof Date?h=l(h):"comma"===n&&g(h)&&(h=d.maybeMap(h,function(t){return t instanceof Date?l(t):t})),null===h){if(o)return u&&!p?u(e,R.encoder,y,"key",s):e;h=""}if("string"==typeof(b=h)||"number"==typeof b||"boolean"==typeof b||"symbol"==typeof b||"bigint"==typeof b||d.isBuffer(h)){if(u){var j=p?e:u(e,R.encoder,y,"key",s);if("comma"===n&&p){for(var O=m.call(String(h),","),E="",S=0;S<O.length;++S)E+=(0===S?"":",")+v(u(O[S],R.encoder,y,"value",s));return[v(j)+"="+E]}return[v(j)+"="+v(u(h,R.encoder,y,"value",s))]}return[v(e)+"="+v(String(h))]}var T,k=[];if(void 0===h)return k;if("comma"===n&&g(h))T=[{value:h.length>0?h.join(",")||null:void 0}];else if(g(f))T=f;else{var x=Object.keys(h);T=a?x.sort(a):x}for(var N=0;N<T.length;++N){var C=T[N],A="object"==typeof C&&void 0!==C.value?C.value:h[C];if(!i||null!==A){var D=g(h)?"function"==typeof n?n(e,C):e:e+(c?"."+C:"["+C+"]");w(k,t(A,D,n,o,i,u,f,a,c,l,s,v,p,y))}}return k},T=Object.prototype.hasOwnProperty,k=Array.isArray,x={allowDots:!1,allowPrototypes:!1,arrayLimit:20,charset:"utf-8",charsetSentinel:!1,comma:!1,decoder:d.decode,delimiter:"&",depth:5,ignoreQueryPrefix:!1,interpretNumericEntities:!1,parameterLimit:1e3,parseArrays:!0,plainObjects:!1,strictNullHandling:!1},N=function(t){return t.replace(/&#(\d+);/g,function(t,r){return String.fromCharCode(parseInt(r,10))})},C=function(t,r){return t&&"string"==typeof t&&r.comma&&t.indexOf(",")>-1?t.split(","):t},A=function(t,r,e,n){if(t){var o=e.allowDots?t.replace(/\.([^.[]+)/g,"[$1]"):t,i=/(\[[^[\]]*])/g,u=e.depth>0&&/(\[[^[\]]*])/.exec(o),f=u?o.slice(0,u.index):o,a=[];if(f){if(!e.plainObjects&&T.call(Object.prototype,f)&&!e.allowPrototypes)return;a.push(f)}for(var c=0;e.depth>0&&null!==(u=i.exec(o))&&c<e.depth;){if(c+=1,!e.plainObjects&&T.call(Object.prototype,u[1].slice(1,-1))&&!e.allowPrototypes)return;a.push(u[1])}return u&&a.push("["+o.slice(u.index)+"]"),function(t,r,e,n){for(var o=n?r:C(r,e),i=t.length-1;i>=0;--i){var u,f=t[i];if("[]"===f&&e.parseArrays)u=[].concat(o);else{u=e.plainObjects?Object.create(null):{};var a="["===f.charAt(0)&&"]"===f.charAt(f.length-1)?f.slice(1,-1):f,c=parseInt(a,10);e.parseArrays||""!==a?!isNaN(c)&&f!==a&&String(c)===a&&c>=0&&e.parseArrays&&c<=e.arrayLimit?(u=[])[c]=o:"__proto__"!==a&&(u[a]=o):u={0:o}}o=u}return o}(a,r,e,n)}},D=function(t,r){var e=function(t){if(!t)return x;if(null!=t.decoder&&"function"!=typeof t.decoder)throw new TypeError("Decoder has to be a function.");if(void 0!==t.charset&&"utf-8"!==t.charset&&"iso-8859-1"!==t.charset)throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");return{allowDots:void 0===t.allowDots?x.allowDots:!!t.allowDots,allowPrototypes:"boolean"==typeof t.allowPrototypes?t.allowPrototypes:x.allowPrototypes,arrayLimit:"number"==typeof t.arrayLimit?t.arrayLimit:x.arrayLimit,charset:void 0===t.charset?x.charset:t.charset,charsetSentinel:"boolean"==typeof t.charsetSentinel?t.charsetSentinel:x.charsetSentinel,comma:"boolean"==typeof t.comma?t.comma:x.comma,decoder:"function"==typeof t.decoder?t.decoder:x.decoder,delimiter:"string"==typeof t.delimiter||d.isRegExp(t.delimiter)?t.delimiter:x.delimiter,depth:"number"==typeof t.depth||!1===t.depth?+t.depth:x.depth,ignoreQueryPrefix:!0===t.ignoreQueryPrefix,interpretNumericEntities:"boolean"==typeof t.interpretNumericEntities?t.interpretNumericEntities:x.interpretNumericEntities,parameterLimit:"number"==typeof t.parameterLimit?t.parameterLimit:x.parameterLimit,parseArrays:!1!==t.parseArrays,plainObjects:"boolean"==typeof t.plainObjects?t.plainObjects:x.plainObjects,strictNullHandling:"boolean"==typeof t.strictNullHandling?t.strictNullHandling:x.strictNullHandling}}(r);if(""===t||null==t)return e.plainObjects?Object.create(null):{};for(var n="string"==typeof t?function(t,r){var e,n={},o=(r.ignoreQueryPrefix?t.replace(/^\?/,""):t).split(r.delimiter,Infinity===r.parameterLimit?void 0:r.parameterLimit),i=-1,u=r.charset;if(r.charsetSentinel)for(e=0;e<o.length;++e)0===o[e].indexOf("utf8=")&&("utf8=%E2%9C%93"===o[e]?u="utf-8":"utf8=%26%2310003%3B"===o[e]&&(u="iso-8859-1"),i=e,e=o.length);for(e=0;e<o.length;++e)if(e!==i){var f,a,c=o[e],l=c.indexOf("]="),s=-1===l?c.indexOf("="):l+1;-1===s?(f=r.decoder(c,x.decoder,u,"key"),a=r.strictNullHandling?null:""):(f=r.decoder(c.slice(0,s),x.decoder,u,"key"),a=d.maybeMap(C(c.slice(s+1),r),function(t){return r.decoder(t,x.decoder,u,"value")})),a&&r.interpretNumericEntities&&"iso-8859-1"===u&&(a=N(a)),c.indexOf("[]=")>-1&&(a=k(a)?[a]:a),n[f]=T.call(n,f)?d.combine(n[f],a):a}return n}(t,e):t,o=e.plainObjects?Object.create(null):{},i=Object.keys(n),u=0;u<i.length;++u){var f=i[u],a=A(f,n[f],e,"string"==typeof t);o=d.merge(o,a,e)}return d.compact(o)},$=/*#__PURE__*/function(){function t(t,r,e){var n,o;this.name=t,this.definition=r,this.bindings=null!=(n=r.bindings)?n:{},this.wheres=null!=(o=r.wheres)?o:{},this.config=e}var e=t.prototype;return e.matchesUrl=function(t){var r=this;if(!this.definition.methods.includes("GET"))return!1;var e=this.template.replace(/(\/?){([^}?]*)(\??)}/g,function(t,e,n,o){var i,u="(?<"+n+">"+((null==(i=r.wheres[n])?void 0:i.replace(/(^\^)|(\$$)/g,""))||"[^/?]+")+")";return o?"("+e+u+")?":""+e+u}).replace(/^\w+:\/\//,""),n=t.replace(/^\w+:\/\//,"").split("?"),o=n[0],i=n[1],u=new RegExp("^"+e+"/?$").exec(decodeURI(o));if(u){for(var f in u.groups)u.groups[f]="string"==typeof u.groups[f]?decodeURIComponent(u.groups[f]):u.groups[f];return{params:u.groups,query:D(i)}}return!1},e.compile=function(t){var r=this;return this.parameterSegments.length?this.template.replace(/{([^}?]+)(\??)}/g,function(e,n,o){var i,u;if(!o&&[null,void 0].includes(t[n]))throw new Error("Ziggy error: '"+n+"' parameter is required for route '"+r.name+"'.");if(r.wheres[n]&&!new RegExp("^"+(o?"("+r.wheres[n]+")?":r.wheres[n])+"$").test(null!=(u=t[n])?u:""))throw new Error("Ziggy error: '"+n+"' parameter does not match required format '"+r.wheres[n]+"' for route '"+r.name+"'.");return encodeURI(null!=(i=t[n])?i:"").replace(/%7C/g,"|").replace(/%25/g,"%").replace(/\$/g,"%24")}).replace(this.origin+"//",this.origin+"/").replace(/\/+$/,""):this.template},r(t,[{key:"template",get:function(){var t=(this.origin+"/"+this.definition.uri).replace(/\/+$/,"");return""===t?"/":t}},{key:"origin",get:function(){return this.config.absolute?this.definition.domain?""+this.config.url.match(/^\w+:\/\//)[0]+this.definition.domain+(this.config.port?":"+this.config.port:""):this.config.url:""}},{key:"parameterSegments",get:function(){var t,r;return null!=(t=null==(r=this.template.match(/{[^}?]+\??}/g))?void 0:r.map(function(t){return{name:t.replace(/{|\??}/g,""),required:!/\?}$/.test(t)}}))?t:[]}}]),t}(),F=/*#__PURE__*/function(t){var n,i;function u(r,n,o,i){var u;if(void 0===o&&(o=!0),(u=t.call(this)||this).t=null!=i?i:"undefined"!=typeof Ziggy?Ziggy:null==globalThis?void 0:globalThis.Ziggy,u.t=e({},u.t,{absolute:o}),r){if(!u.t.routes[r])throw new Error("Ziggy error: route '"+r+"' is not in the route list.");u.i=new $(r,u.t.routes[r],u.t),u.u=u.l(n)}return u}i=t,(n=u).prototype=Object.create(i.prototype),n.prototype.constructor=n,o(n,i);var f=u.prototype;return f.toString=function(){var t=this,r=Object.keys(this.u).filter(function(r){return!t.i.parameterSegments.some(function(t){return t.name===r})}).filter(function(t){return"_query"!==t}).reduce(function(r,n){var o;return e({},r,((o={})[n]=t.u[n],o))},{});return this.i.compile(this.u)+function(t,r){var e,n=t,o=function(t){if(!t)return R;if(null!=t.encoder&&"function"!=typeof t.encoder)throw new TypeError("Encoder has to be a function.");var r=t.charset||R.charset;if(void 0!==t.charset&&"utf-8"!==t.charset&&"iso-8859-1"!==t.charset)throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");var e=l.default;if(void 0!==t.format){if(!b.call(l.formatters,t.format))throw new TypeError("Unknown format option provided.");e=t.format}var n=l.formatters[e],o=R.filter;return("function"==typeof t.filter||g(t.filter))&&(o=t.filter),{addQueryPrefix:"boolean"==typeof t.addQueryPrefix?t.addQueryPrefix:R.addQueryPrefix,allowDots:void 0===t.allowDots?R.allowDots:!!t.allowDots,charset:r,charsetSentinel:"boolean"==typeof t.charsetSentinel?t.charsetSentinel:R.charsetSentinel,delimiter:void 0===t.delimiter?R.delimiter:t.delimiter,encode:"boolean"==typeof t.encode?t.encode:R.encode,encoder:"function"==typeof t.encoder?t.encoder:R.encoder,encodeValuesOnly:"boolean"==typeof t.encodeValuesOnly?t.encodeValuesOnly:R.encodeValuesOnly,filter:o,format:e,formatter:n,serializeDate:"function"==typeof t.serializeDate?t.serializeDate:R.serializeDate,skipNulls:"boolean"==typeof t.skipNulls?t.skipNulls:R.skipNulls,sort:"function"==typeof t.sort?t.sort:null,strictNullHandling:"boolean"==typeof t.strictNullHandling?t.strictNullHandling:R.strictNullHandling}}(r);"function"==typeof o.filter?n=(0,o.filter)("",n):g(o.filter)&&(e=o.filter);var i=[];if("object"!=typeof n||null===n)return"";var u=h[r&&r.arrayFormat in h?r.arrayFormat:r&&"indices"in r?r.indices?"indices":"repeat":"indices"];e||(e=Object.keys(n)),o.sort&&e.sort(o.sort);for(var f=0;f<e.length;++f){var a=e[f];o.skipNulls&&null===n[a]||w(i,S(n[a],a,u,o.strictNullHandling,o.skipNulls,o.encode?o.encoder:null,o.filter,o.sort,o.allowDots,o.serializeDate,o.format,o.formatter,o.encodeValuesOnly,o.charset))}var c=i.join(o.delimiter),s=!0===o.addQueryPrefix?"?":"";return o.charsetSentinel&&(s+="iso-8859-1"===o.charset?"utf8=%26%2310003%3B&":"utf8=%E2%9C%93&"),c.length>0?s+c:""}(e({},r,this.u._query),{addQueryPrefix:!0,arrayFormat:"indices",encodeValuesOnly:!0,skipNulls:!0,encoder:function(t,r){return"boolean"==typeof t?Number(t):r(t)}})},f.v=function(t){var r=this;t?this.t.absolute&&t.startsWith("/")&&(t=this.p().host+t):t=this.h();var n={},o=Object.entries(this.t.routes).find(function(e){return n=new $(e[0],e[1],r.t).matchesUrl(t)})||[void 0,void 0];return e({name:o[0]},n,{route:o[1]})},f.h=function(){var t=this.p(),r=t.pathname,e=t.search;return(this.t.absolute?t.host+r:r.replace(this.t.url.replace(/^\w*:\/\/[^/]+/,""),"").replace(/^\/+/,"/"))+e},f.current=function(t,r){var n=this.v(),o=n.name,i=n.params,u=n.query,f=n.route;if(!t)return o;var a=new RegExp("^"+t.replace(/\./g,"\\.").replace(/\*/g,".*")+"$").test(o);if([null,void 0].includes(r)||!a)return a;var c=new $(o,f,this.t);r=this.l(r,c);var l=e({},i,u);return!(!Object.values(r).every(function(t){return!t})||Object.values(l).some(function(t){return void 0!==t}))||function t(r,e){return Object.entries(r).every(function(r){var n=r[0],o=r[1];return Array.isArray(o)&&Array.isArray(e[n])?o.every(function(t){return e[n].includes(t)}):"object"==typeof o&&"object"==typeof e[n]&&null!==o&&null!==e[n]?t(o,e[n]):e[n]==o})}(r,l)},f.p=function(){var t,r,e,n,o,i,u="undefined"!=typeof window?window.location:{},f=u.host,a=u.pathname,c=u.search;return{host:null!=(t=null==(r=this.t.location)?void 0:r.host)?t:void 0===f?"":f,pathname:null!=(e=null==(n=this.t.location)?void 0:n.pathname)?e:void 0===a?"":a,search:null!=(o=null==(i=this.t.location)?void 0:i.search)?o:void 0===c?"":c}},f.has=function(t){return Object.keys(this.t.routes).includes(t)},f.l=function(t,r){var n=this;void 0===t&&(t={}),void 0===r&&(r=this.i),null!=t||(t={}),t=["string","number"].includes(typeof t)?[t]:t;var o=r.parameterSegments.filter(function(t){return!n.t.defaults[t.name]});if(Array.isArray(t))t=t.reduce(function(t,r,n){var i,u;return e({},t,o[n]?((i={})[o[n].name]=r,i):"object"==typeof r?r:((u={})[r]="",u))},{});else if(1===o.length&&!t[o[0].name]&&(t.hasOwnProperty(Object.values(r.bindings)[0])||t.hasOwnProperty("id"))){var i;(i={})[o[0].name]=t,t=i}return e({},this.g(r),this.m(t,r))},f.g=function(t){var r=this;return t.parameterSegments.filter(function(t){return r.t.defaults[t.name]}).reduce(function(t,n,o){var i,u=n.name;return e({},t,((i={})[u]=r.t.defaults[u],i))},{})},f.m=function(t,r){var n=r.bindings,o=r.parameterSegments;return Object.entries(t).reduce(function(t,r){var i,u,f=r[0],a=r[1];if(!a||"object"!=typeof a||Array.isArray(a)||!o.some(function(t){return t.name===f}))return e({},t,((u={})[f]=a,u));if(!a.hasOwnProperty(n[f])){if(!a.hasOwnProperty("id"))throw new Error("Ziggy error: object passed as '"+f+"' parameter is missing route model binding key '"+n[f]+"'.");n[f]="id"}return e({},t,((i={})[f]=a[n[f]],i))},{})},f.valueOf=function(){return this.toString()},f.check=function(t){return this.has(t)},r(u,[{key:"params",get:function(){var t=this.v();return e({},t.params,t.query)}}]),u}(/*#__PURE__*/u(String));return function(t,r,e,n){var o=new F(t,r,e,n);return t?o.toString():o}});
</script> <link rel="preload" as="style" href="http://localhost/new_vue_tagxi/public/build/assets/vendor-f749f9ab.css" /><link rel="preload" as="style" href="http://localhost/new_vue_tagxi/public/build/assets/app-5dc46014.css" /><link rel="preload" as="style" href="http://localhost/new_vue_tagxi/public/build/assets/404-8c21c3cf.css" /><link rel="modulepreload" href="http://localhost/new_vue_tagxi/public/build/assets/app-e076d658.js" /><link rel="modulepreload" href="http://localhost/new_vue_tagxi/public/build/assets/vendor-b6e68d09.js" /><link rel="modulepreload" href="http://localhost/new_vue_tagxi/public/build/assets/404-36789bcd.js" /><link rel="modulepreload" href="http://localhost/new_vue_tagxi/public/build/assets/error-ff2a41aa.js" /><link rel="stylesheet" href="http://localhost/new_vue_tagxi/public/build/assets/vendor-f749f9ab.css" /><link rel="stylesheet" href="http://localhost/new_vue_tagxi/public/build/assets/app-5dc46014.css" /><link rel="stylesheet" href="http://localhost/new_vue_tagxi/public/build/assets/404-8c21c3cf.css" /><script type="module" src="http://localhost/new_vue_tagxi/public/build/assets/app-e076d658.js"></script><script type="module" src="http://localhost/new_vue_tagxi/public/build/assets/404-36789bcd.js"></script>
</head>
<body>
<div id="app" data-page="{"component":"pages\/404","props":{"jetstream":{"canCreateTeams":false,"canManageTwoFactorAuthentication":true,"canUpdatePassword":true,"canUpdateProfileInformation":true,"hasEmailVerification":true,"flash":[],"hasAccountDeletionFeatures":true,"hasApiFeatures":true,"hasTeamFeatures":false,"hasTermsAndPrivacyPolicyFeature":true,"managesProfilePhotos":true},"auth":{"user":null},"errorBags":[],"errors":{},"flash":{"successMessage":null}},"url":"\/new_vue_tagxi\/public\/\/api\/v1\/user\/get-bank-info","version":"6417c333e668146bc61c7fac84a8b3e4"}"></div> <script>
window.headers = [{"id":"d488f364-f420-4415-85a2-e4b1a154863b","header_logo":"Y8Xg6Y3kQHYzGSsVonTjE5aI1SZu8lEWhuXPsz5L.png","home":"Home","aboutus":"About Us","driver":"Driver","user":"User","contact":"Contact","book_now_btn":"Book Now","footer_logo":"TvZGGFUp14QFjqR2gJZPrJ28gt0EYakPBp75vj7C.png","footer_para":"Tagxi is a rideshare platform facilitating peer to peer ridesharing by means of connecting passengers who are in need of rides from drivers with available cars to get from point A to point B with the press of a button.","quick_links":"Quick Links","compliance":"Compliance","privacy":"Privacy Policy","terms":"Terms \u0026 Conditions","dmv":"DMV Check","user_app":"User Apps","user_play":"Play Store","user_play_link":"https:\/\/play.google.com\/store\/apps\/details?id=tagxi.bidding.user","user_apple":"Apple Store","user_apple_link":"https:\/\/apps.apple.com\/in\/app\/super-bidding-user\/id6449780067","driver_app":"Driver Apps","driver_play":"Play Store","driver_play_link":"https:\/\/play.google.com\/store\/apps\/details?id=tagxi.bidding.driver","driver_apple":"Apple Store","driver_apple_link":"https:\/\/apps.apple.com\/in\/app\/super-bidding-driver\/id6449778880","copy_rights":"2021 @ misoftwares","fb_link":"https:\/\/www.facebook.com\/","linkdin_link":"https:\/\/in.linkedin.com\/","x_link":"https:\/\/x.com\/","insta_link":"https:\/\/www.instagram.com\/","locale":"En","language":"English","direction":"ltr","created_at":null,"updated_at":"2024-11-20T18:33:22.000000Z","header_logo_url":"http:\/\/localhost\/new_vue_tagxi\/public\/storage\/uploads\/website\/images\/Y8Xg6Y3kQHYzGSsVonTjE5aI1SZu8lEWhuXPsz5L.png","footer_logo_url":"http:\/\/localhost\/new_vue_tagxi\/public\/storage\/uploads\/website\/images\/TvZGGFUp14QFjqR2gJZPrJ28gt0EYakPBp75vj7C.png"}];
window.recaptchaKey = null;
window.logo = "http:\/\/localhost\/new_vue_tagxi\/public\/storage\/uploads\/system-admin\/logo\/logo-light.png";
window.favicon = "http:\/\/localhost\/new_vue_tagxi\/public\/storage\/uploads\/system-admin\/logo\/logo-mini.png";
window.footer_content1 = "2024 \u00a9 Misoftwares.";
window.footer_content2 = "Design \u0026 Develop by Misoftwares";
</script>
</body>
<script>
document.addEventListener('DOMContentLoaded', function () {
// Check if window.favicon is available and set it dynamically
if (window.favicon) {
document.getElementById('dynamic-favicon').setAttribute('href', window.favicon);
} else {
// Fallback if the favicon is not set
document.getElementById('dynamic-favicon').setAttribute('href', 'http://localhost/new_vue_tagxi/public/image/favicon.ico');
}
});
</script>
<style>
:root{
--top_nav: #0ab39c;
--side_menu: #405189;
--side_menu_txt: #ffffff;
--loginbg: url('http://localhost/new_vue_tagxi/public/storage/uploads/system-admin/logo/workspace.jpg');
--owner_loginbg: url('http://localhost/new_vue_tagxi/public/storage/uploads/system-admin/logo/workspace.jpg');
}
</style>
</html>
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
List Favourite Locations
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/user/list-favourite-location" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/user/list-favourite-location"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "address listed successfully",
"data": [
"pick_lat": 37.774929,
"pick_lng": -122.419416,
"drop_lat": 34.052235,
"drop_lng": -118.243683,
"pick_address": "1 Market St, San Francisco, CA 94105, USA",
"drop_address": "123 Main St, Los Angeles, CA 90015, USA",
"address_name": "Home to Office"
]
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Add favourite location
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/user/add-favourite-location" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"pick_lat\": 9600343.4866,
\"pick_lng\": 167.8736,
\"pick_address\": \"minus\",
\"drop_lat\": 10795.8141,
\"drop_lng\": 220228.8823,
\"drop_address\": \"laborum\",
\"address_name\": \"quod\",
\"landmark\": \"voluptate\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/user/add-favourite-location"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"pick_lat": 9600343.4866,
"pick_lng": 167.8736,
"pick_address": "minus",
"drop_lat": 10795.8141,
"drop_lng": 220228.8823,
"drop_address": "laborum",
"address_name": "quod",
"landmark": "voluptate"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "address added successfully"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete Favourite Location
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/user/delete-favourite-location/1" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/user/delete-favourite-location/1"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "favorite location deleted successfully"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
user Account Delete
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/user/delete-user-account" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/user/delete-user-account"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update My Location
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/user/update-location" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"current_lat\": \"atque\",
\"current_lng\": \"dolorum\",
\"lang\": \"necessitatibus\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/user/update-location"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"current_lat": "atque",
"current_lng": "dolorum",
"lang": "necessitatibus"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Ratings
APIs for User & Driver-trip ratig api
Rate The Request B/W User & Driver
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/request/rating" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"request_id\": \"voluptatum\",
\"rating\": 3298.60354237,
\"comment\": \"veniam\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/request/rating"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"request_id": "voluptatum",
"rating": 3298.60354237,
"comment": "veniam"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "rated_successfully"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Request-Chat
Chat history for both user & driver
requires authentication
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/request/chat-history/00495bdd-2639-471e-b29b-3697ce5e72e2" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/request/chat-history/00495bdd-2639-471e-b29b-3697ce5e72e2"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "chats_listed",
"data": [
{
"id": "dab8a4a2-f904-43ee-9dd2-35ed11321e30",
"message": "hi",
"from_type": 1,
"request_id": "30748675-21bf-478d-b74b-5ba631088138",
"user_id": 29,
"delivered": 0,
"seen": 1,
"created_at": "2024-11-06T14:25:03.000000Z",
"updated_at": "2024-11-06T14:25:48.000000Z",
"message_status": "receive",
"converted_created_at": "7:55 PM"
}
]
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Send Chat Message
requires authentication
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/request/send" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"request_id\": \"quidem\",
\"message\": \"quo\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/request/send"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"request_id": "quidem",
"message": "quo"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "message_sent_successfully",
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update Seen
requires authentication
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/request/seen" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/request/seen"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "message_seen_successfully",
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Initiate Conversation
requires authentication
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/request/user-chat-history" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/request/user-chat-history"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"data": {
"conversation": [
{
"id": "6c96f90a-bb44-4c8a-8542-e1c93f488085",
"conversation_id": "bb81d8bd-5138-4726-83f4-4903393c861a",
"sender_id": "9",
"unseen_count": 0,
"sender_type": "user",
"content": "Vanakam bha",
"created_at": "2024-10-28T18:09:39.000000Z",
"updated_at": "2024-10-29T11:24:00.000000Z",
"user_timezone": "28th Oct 11:39 PM",
"converted_created_at": "28 Oct 2024 03:09 PM"
}
],
"new_chat": 0,
"conversation_id": "bb81d8bd-5138-4726-83f4-4903393c861a",
"count": 0
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
send message to admin
requires authentication
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/request/user-send-message" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"new_conversation\": \"labore\",
\"content\": \"corporis\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/request/user-send-message"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"new_conversation": "labore",
"content": "corporis"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"data": {
"message": "Hello",
"message_id": "bdfd2cf0-331e-4e4c-a607-da3701eb21aa",
"conversation_id": "bb81d8bd-5138-4726-83f4-4903393c861a",
"sender_type": "user",
"sender_id": 9,
"created_at": {
".sv": "timestamp"
},
"message_success": "Message Sended successfully",
"user_timezone": "25th Nov 07:00 PM"
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Request-Histories
APIs request history list & history by request id
Request History List
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/request/history" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/request/history"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success",
"data": [
{
"id": "068ecb7a-7198-4322-82b2-28c8e1c90f0a",
"request_number": "REQ_000002",
"is_later": 0,
"user_id": 15,
"trip_start_time": "5th Aug 09:54 PM",
"arrived_at": null,
"accepted_at": null,
"completed_at": "5th Aug 11:49 PM",
"is_driver_started": 0,
"is_driver_arrived": 0,
"is_trip_start": 0,
"is_completed": 1,
"is_cancelled": 0,
"cancel_method": "0",
"payment_opt": "1",
"is_paid": 1,
"user_rated": 0,
"driver_rated": 0,
"unit": "0",
"zone_type_id": "b0a3a2ce-d248-4767-adea-ae2932731436",
"vehicle_type_name": "Mini",
"pick_lat": 11.0797,
"pick_lng": 76.9997,
"drop_lat": 11.41157598,
"drop_lng": 76.77196096,
"pick_address": "gandhi puram",
"drop_address": "saravanm patti",
"driverDetail": {
"data": {
"id": 6,
"name": "dilipdk",
"email": "driver1@gmail.com",
"mobile": "8667259868",
"profile_picture": "http://localhost/future/public/assets/images/default-profile-picture.png",
"active": false,
"approve": true,
"available": true,
"uploaded_document": false,
"service_location_id": "48e861b5-8d4d-4281-807c-1cdd2a5fee3e",
"vehicle_type_id": "9ea6f9a0-6fd2-4962-9d81-645e6301096f",
"vehicle_type_name": "Mini",
"car_make": null,
"car_model": null,
"car_make_name": null,
"car_model_name": null,
"car_color": null,
"car_number": null
}
},
"requestBill": {
"data": {
"id": 1,
"base_price": 5,
"base_distance": 5,
"price_per_distance": 5,
"distance_price": 398.44,
"price_per_time": 5,
"time_price": 575,
"waiting_charge": 100,
"cancellation_fee": 0,
"service_tax": 322.03,
"service_tax_percentage": 30,
"promo_discount": 0,
"admin_commission": 322.03,
"driver_commission": 1073.44,
"total_amount": 1717.51,
"requested_currency_code": "INR",
"admin_commission_with_tax": 644.07
}
}
},
{
"id": "2b4c305a-c2a7-4dd4-96ab-dcbc6ec12d29",
"request_number": "REQ_000006",
"is_later": 0,
"user_id": 15,
"trip_start_time": null,
"arrived_at": null,
"accepted_at": null,
"completed_at": null,
"is_driver_started": 0,
"is_driver_arrived": 0,
"is_trip_start": 0,
"is_completed": 0,
"is_cancelled": 1,
"cancel_method": "0",
"payment_opt": "1",
"is_paid": 0,
"user_rated": 0,
"driver_rated": 0,
"unit": "0",
"zone_type_id": "b0a3a2ce-d248-4767-adea-ae2932731436",
"vehicle_type_name": "Mini",
"pick_lat": 11.0797,
"pick_lng": 76.9997,
"drop_lat": 10.99693444,
"drop_lng": 76.9762592,
"pick_address": "gandhi puram",
"drop_address": "srp mills",
"driverDetail": null,
"requestBill": null
},
{
"id": "4b4df4df-dee5-463e-9bde-237a2fab1611",
"request_number": "REQ_000004",
"is_later": 0,
"user_id": 15,
"trip_start_time": null,
"arrived_at": null,
"accepted_at": null,
"completed_at": null,
"is_driver_started": 0,
"is_driver_arrived": 0,
"is_trip_start": 0,
"is_completed": 0,
"is_cancelled": 1,
"cancel_method": "0",
"payment_opt": "1",
"is_paid": 0,
"user_rated": 0,
"driver_rated": 0,
"unit": "0",
"zone_type_id": "b0a3a2ce-d248-4767-adea-ae2932731436",
"vehicle_type_name": "Mini",
"pick_lat": 11.0797,
"pick_lng": 76.9997,
"drop_lat": 10.99693444,
"drop_lng": 76.9762592,
"pick_address": "gandhi puram",
"drop_address": "srp mills",
"driverDetail": null,
"requestBill": null
},
{
"id": "616f4430-15c3-4fac-b584-590634f35154",
"request_number": "REQ_000008",
"is_later": 0,
"user_id": 15,
"trip_start_time": null,
"arrived_at": null,
"accepted_at": null,
"completed_at": null,
"is_driver_started": 0,
"is_driver_arrived": 0,
"is_trip_start": 0,
"is_completed": 0,
"is_cancelled": 1,
"cancel_method": "0",
"payment_opt": "1",
"is_paid": 0,
"user_rated": 0,
"driver_rated": 0,
"unit": "0",
"zone_type_id": "b0a3a2ce-d248-4767-adea-ae2932731436",
"vehicle_type_name": "Mini",
"pick_lat": 11.0797,
"pick_lng": 76.9997,
"drop_lat": 10.99693444,
"drop_lng": 76.9762592,
"pick_address": "gandhi puram",
"drop_address": "srp mills",
"driverDetail": null,
"requestBill": null
},
{
"id": "d04024fd-3608-48e5-94f1-46d1ed105872",
"request_number": "REQ_000005",
"is_later": 0,
"user_id": 15,
"trip_start_time": null,
"arrived_at": null,
"accepted_at": null,
"completed_at": null,
"is_driver_started": 0,
"is_driver_arrived": 0,
"is_trip_start": 0,
"is_completed": 0,
"is_cancelled": 1,
"cancel_method": "0",
"payment_opt": "1",
"is_paid": 0,
"user_rated": 0,
"driver_rated": 0,
"unit": "0",
"zone_type_id": "b0a3a2ce-d248-4767-adea-ae2932731436",
"vehicle_type_name": "Mini",
"pick_lat": 11.0797,
"pick_lng": 76.9997,
"drop_lat": 10.99693444,
"drop_lng": 76.9762592,
"pick_address": "gandhi puram",
"drop_address": "srp mills",
"driverDetail": null,
"requestBill": null
},
{
"id": "d941b252-48be-4b04-b969-35ff00044f3d",
"request_number": "REQ_000001",
"is_later": 0,
"user_id": 15,
"trip_start_time": null,
"arrived_at": null,
"accepted_at": null,
"completed_at": null,
"is_driver_started": 0,
"is_driver_arrived": 0,
"is_trip_start": 0,
"is_completed": 0,
"is_cancelled": 1,
"cancel_method": "0",
"payment_opt": "1",
"is_paid": 0,
"user_rated": 0,
"driver_rated": 0,
"unit": "0",
"zone_type_id": "b0a3a2ce-d248-4767-adea-ae2932731436",
"vehicle_type_name": "Mini",
"pick_lat": 11.0797,
"pick_lng": 76.9997,
"drop_lat": 10.99693444,
"drop_lng": 76.9762592,
"pick_address": "gandhi puram",
"drop_address": "srp mills",
"driverDetail": null,
"requestBill": null
},
{
"id": "fc3c94b0-e92b-4dea-b49b-98d28cd8bd6d",
"request_number": "REQ_000003",
"is_later": 0,
"user_id": 15,
"trip_start_time": null,
"arrived_at": null,
"accepted_at": null,
"completed_at": null,
"is_driver_started": 0,
"is_driver_arrived": 0,
"is_trip_start": 0,
"is_completed": 0,
"is_cancelled": 1,
"cancel_method": "0",
"payment_opt": "1",
"is_paid": 0,
"user_rated": 0,
"driver_rated": 0,
"unit": "0",
"zone_type_id": "b0a3a2ce-d248-4767-adea-ae2932731436",
"vehicle_type_name": "Mini",
"pick_lat": 11.0797,
"pick_lng": 76.9997,
"drop_lat": 10.99693444,
"drop_lng": 76.9762592,
"pick_address": "gandhi puram",
"drop_address": "srp mills",
"driverDetail": null,
"requestBill": null
}
],
"meta": {
"pagination": {
"total": 7,
"count": 7,
"per_page": 10,
"current_page": 1,
"total_pages": 1,
"links": {}
}
}
}
Example response (200):
{
"success": true,
"message": "success",
"data": [
{
"id": "068ecb7a-7198-4322-82b2-28c8e1c90f0a",
"request_number": "REQ_000002",
"is_later": 0,
"user_id": 15,
"trip_start_time": "5th Aug 09:54 PM",
"arrived_at": null,
"accepted_at": null,
"completed_at": "5th Aug 11:49 PM",
"is_driver_started": 0,
"is_driver_arrived": 0,
"is_trip_start": 0,
"is_completed": 1,
"is_cancelled": 0,
"cancel_method": "0",
"payment_opt": "1",
"is_paid": 1,
"user_rated": 0,
"driver_rated": 0,
"unit": "0",
"zone_type_id": "b0a3a2ce-d248-4767-adea-ae2932731436",
"vehicle_type_name": "Mini",
"pick_lat": 11.0797,
"pick_lng": 76.9997,
"drop_lat": 11.41157598,
"drop_lng": 76.77196096,
"pick_address": "gandhi puram",
"drop_address": "saravanm patti",
"userDetail": {
"data": {
"id": 15,
"name": "Test Test",
"last_name": null,
"username": null,
"email": "testa@gmail.com",
"mobile": "9878987812",
"profile_picture": "http://localhost/future/public/assets/images/default-profile-picture.png",
"active": 1,
"email_confirmed": 0,
"mobile_confirmed": 1,
"last_known_ip": "::1",
"last_login_at": "2020-08-05 11:26:35"
}
},
"requestBill": {
"data": {
"id": 1,
"base_price": 5,
"base_distance": 5,
"price_per_distance": 5,
"distance_price": 398.44,
"price_per_time": 5,
"time_price": 575,
"waiting_charge": 100,
"cancellation_fee": 0,
"service_tax": 322.03,
"service_tax_percentage": 30,
"promo_discount": 0,
"admin_commission": 322.03,
"driver_commission": 1073.44,
"total_amount": 1717.51,
"requested_currency_code": "INR",
"admin_commission_with_tax": 644.07
}
}
}
],
"meta": {
"pagination": {
"total": 1,
"count": 1,
"per_page": 10,
"current_page": 1,
"total_pages": 1,
"links": {}
}
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Single Request History by request id
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/request/history/voluptas" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/request/history/voluptas"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success",
"data": {
"id": "068ecb7a-7198-4322-82b2-28c8e1c90f0a",
"request_number": "REQ_000002",
"is_later": 0,
"user_id": 15,
"trip_start_time": "5th Aug 09:54 PM",
"arrived_at": null,
"accepted_at": null,
"completed_at": "5th Aug 11:49 PM",
"is_driver_started": 0,
"is_driver_arrived": 0,
"is_trip_start": 0,
"is_completed": 1,
"is_cancelled": 0,
"cancel_method": "0",
"payment_opt": "1",
"is_paid": 1,
"user_rated": 0,
"driver_rated": 0,
"unit": "0",
"zone_type_id": "b0a3a2ce-d248-4767-adea-ae2932731436",
"vehicle_type_name": "Mini",
"pick_lat": 11.0797,
"pick_lng": 76.9997,
"drop_lat": 11.41157598,
"drop_lng": 76.77196096,
"pick_address": "gandhi puram",
"drop_address": "saravanm patti",
"driverDetail": {
"data": {
"id": 6,
"name": "dilipdk",
"email": "driver1@gmail.com",
"mobile": "8667259868",
"profile_picture": "http://localhost/future/public/assets/images/default-profile-picture.png",
"active": false,
"approve": true,
"available": true,
"uploaded_document": false,
"service_location_id": "48e861b5-8d4d-4281-807c-1cdd2a5fee3e",
"vehicle_type_id": "9ea6f9a0-6fd2-4962-9d81-645e6301096f",
"vehicle_type_name": "Mini",
"car_make": null,
"car_model": null,
"car_make_name": null,
"car_model_name": null,
"car_color": null,
"car_number": null
}
},
"requestBill": {
"data": {
"id": 1,
"base_price": 5,
"base_distance": 5,
"price_per_distance": 5,
"distance_price": 398.44,
"price_per_time": 5,
"time_price": 575,
"waiting_charge": 100,
"cancellation_fee": 0,
"service_tax": 322.03,
"service_tax_percentage": 30,
"promo_discount": 0,
"admin_commission": 322.03,
"driver_commission": 1073.44,
"total_amount": 1717.51,
"requested_currency_code": "INR",
"admin_commission_with_tax": 644.07
}
}
}
}
Example response (200):
{
"success": true,
"message": "success",
"data": {
"id": "068ecb7a-7198-4322-82b2-28c8e1c90f0a",
"request_number": "REQ_000002",
"is_later": 0,
"user_id": 15,
"trip_start_time": "5th Aug 09:54 PM",
"arrived_at": null,
"accepted_at": null,
"completed_at": "5th Aug 11:49 PM",
"is_driver_started": 0,
"is_driver_arrived": 0,
"is_trip_start": 0,
"is_completed": 1,
"is_cancelled": 0,
"cancel_method": "0",
"payment_opt": "1",
"is_paid": 1,
"user_rated": 0,
"driver_rated": 0,
"unit": "0",
"zone_type_id": "b0a3a2ce-d248-4767-adea-ae2932731436",
"vehicle_type_name": "Mini",
"pick_lat": 11.0797,
"pick_lng": 76.9997,
"drop_lat": 11.41157598,
"drop_lng": 76.77196096,
"pick_address": "gandhi puram",
"drop_address": "saravanm patti",
"userDetail": {
"data": {
"id": 15,
"name": "Test Test",
"last_name": null,
"username": null,
"email": "testa@gmail.com",
"mobile": "9878987812",
"profile_picture": "http://localhost/future/public/assets/images/default-profile-picture.png",
"active": 1,
"email_confirmed": 0,
"mobile_confirmed": 1,
"last_known_ip": "::1",
"last_login_at": "2020-08-05 11:26:35"
}
},
"requestBill": {
"data": {
"id": 1,
"base_price": 5,
"base_distance": 5,
"price_per_distance": 5,
"distance_price": 398.44,
"price_per_time": 5,
"time_price": 575,
"waiting_charge": 100,
"cancellation_fee": 0,
"service_tax": 322.03,
"service_tax_percentage": 30,
"promo_discount": 0,
"admin_commission": 322.03,
"driver_commission": 1073.44,
"total_amount": 1717.51,
"requested_currency_code": "INR",
"admin_commission_with_tax": 644.07
}
}
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
ServiceLocations
Get ServiceLocatons
Get all the ServiceLocatons.
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/servicelocation" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/servicelocation"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"data": [
{
"id": "45c8948b-73dd-4557-af3c-a3dd62cd35b6",
"name": "Wolrd",
"currency_name": "Indian rupee",
"currency_symbol": "₹",
"currency_code": "INR",
"timezone": "Asia/Kolkata",
"active": 1
}
]
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
SignUp-And-Otp-Validation
APIs for User-Management
Register the user and send welcome email.
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/user/register" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"harum\",
\"last_name\": \"g\",
\"email\": \"trevion.bergstrom@example.org\",
\"password\": \"+:G5?o\\\\\",
\"mobile\": 18,
\"terms_condition\": \"1\",
\"device_token\": \"dolorum\",
\"login_by\": \"perspiciatis\",
\"oauth_token\": \"ut\",
\"company_key\": \"velit\",
\"password_confirmation\": \"cum\",
\"refferal_code\": \"voluptatibus\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/user/register"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "harum",
"last_name": "g",
"email": "trevion.bergstrom@example.org",
"password": "+:G5?o\\",
"mobile": 18,
"terms_condition": "1",
"device_token": "dolorum",
"login_by": "perspiciatis",
"oauth_token": "ut",
"company_key": "velit",
"password_confirmation": "cum",
"refferal_code": "voluptatibus"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success",
"access_token": "371|QLvCnztanDYWRop8LbmyxYE7g4RxpgNiDMxWq6QE1accc1fe"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Validate Mobile-For-User
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/user/validate-mobile" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"mobile\": 5
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/user/validate-mobile"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"mobile": 5
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success":true,
"message":"mobile_validated",
}
Example response (200):
{
"success":true,
"message":"email_does_not_exists",
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Validate Mobile-For-User-Login
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/user/validate-mobile-for-login" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"mobile\": 11
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/user/validate-mobile-for-login"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"mobile": 11
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success":true,
"message":"mobile_exists",
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update password for user
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/user/update-password" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"email\": \"lorna.kemmer@example.net\",
\"mobile\": \"et\",
\"password\": \"ygy])ZW_D1^K5%!fS(Z\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/user/update-password"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"email": "lorna.kemmer@example.net",
"mobile": "et",
"password": "ygy])ZW_D1^K5%!fS(Z"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "password_updated_successfuly"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update password for Driver or Owner
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/driver/update-password" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"email\": \"mayert.agustin@example.org\",
\"mobile\": \"et\",
\"password\": \"v37jQ-\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/driver/update-password"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"email": "mayert.agustin@example.org",
"mobile": "et",
"password": "v37jQ-"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "password_updated_successfuly"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Register the driver and send welcome email.
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/driver/register" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"aut\",
\"last_name\": \"wlzjwmuyychr\",
\"email\": \"gardner70@example.com\",
\"password\": \"?MjY\\/D810e#.JInr^H`K\",
\"mobile\": 5,
\"country\": \"et\",
\"device_token\": \"repellat\",
\"login_by\": \"eligendi\",
\"vehicle_type\": \"optio\",
\"address\": \"nmebotswurnfyvlmhvpbjjpxyuoraenycxigrck\",
\"postal_code\": \"b\",
\"car_color\": \"libero\",
\"car_number\": \"perferendis\",
\"is_company_driver\": \"consequatur\",
\"service_location_id\": \"qui\",
\"company_key\": \"repudiandae\",
\"terms_condition\": true,
\"refferal_code\": \"totam\",
\"car_make\": \"placeat\",
\"car_model\": \"ipsa\",
\"custom_make\": \"corrupti\",
\"custom_model\": \"dignissimos\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/driver/register"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "aut",
"last_name": "wlzjwmuyychr",
"email": "gardner70@example.com",
"password": "?MjY\/D810e#.JInr^H`K",
"mobile": 5,
"country": "et",
"device_token": "repellat",
"login_by": "eligendi",
"vehicle_type": "optio",
"address": "nmebotswurnfyvlmhvpbjjpxyuoraenycxigrck",
"postal_code": "b",
"car_color": "libero",
"car_number": "perferendis",
"is_company_driver": "consequatur",
"service_location_id": "qui",
"company_key": "repudiandae",
"terms_condition": true,
"refferal_code": "totam",
"car_make": "placeat",
"car_model": "ipsa",
"custom_make": "corrupti",
"custom_model": "dignissimos"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success",
"access_token": "371|QLvCnztanDYWRop8LbmyxYE7g4RxpgNiDMxWq6QE1accc1fe"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Validate Mobile-For-Driver
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/driver/validate-mobile" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"mobile\": 4
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/driver/validate-mobile"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"mobile": 4
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success":true,
"message":"mobile_validated",
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Validate Mobile-For-Driver-For-Login
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/driver/validate-mobile-for-login" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"mobile\": 18
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/driver/validate-mobile-for-login"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"mobile": 18
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success":true,
"message":"mobile_exists",
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Send the mobile number verification OTP during registration.
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/user/register/send-otp" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"country\": \"molestias\",
\"mobile\": 16,
\"email\": \"terrill.hill@example.net\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/user/register/send-otp"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"country": "molestias",
"mobile": 16,
"email": "terrill.hill@example.net"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success":true,
"message":"success",
"message_keyword":"otp_sent_successfuly"
"data":{
"uuid":"6ffa38d1-d2ca-434a-8695-701ca22168b1"
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Owner Register
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/owner/register" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"company_name\": \"repellendus\",
\"name\": \"voluptatem\",
\"address\": \"accusantium\",
\"postal_code\": \"recusandae\",
\"city\": \"explicabo\",
\"service_location_id\": \"velit\",
\"tax_number\": \"et\",
\"device_token\": \"tenetur\",
\"login_by\": \"cum\",
\"country\": \"est\",
\"mobile\": 10,
\"email\": \"rodriguez.stella@example.org\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/owner/register"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"company_name": "repellendus",
"name": "voluptatem",
"address": "accusantium",
"postal_code": "recusandae",
"city": "explicabo",
"service_location_id": "velit",
"tax_number": "et",
"device_token": "tenetur",
"login_by": "cum",
"country": "est",
"mobile": 10,
"email": "rodriguez.stella@example.org"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success",
"access_token": "371|QLvCnztanDYWRop8LbmyxYE7g4RxpgNiDMxWq6QE1accc1fe"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update User Referral
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/update/user/referral" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"refferal_code\": \"et\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/update/user/referral"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"refferal_code": "et"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update Driver Referral code
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/update/driver/referral" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"refferal_code\": \"alias\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/update/driver/referral"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"refferal_code": "alias"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get Referral code
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/get/referral" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/get/referral"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"data": {
"id": 15,
"name": "Test Test",
"last_name": null,
"username": null,
"email": "testa@gmail.com",
"mobile": "9878987812",
"profile_picture": null,
"active": 1,
"email_confirmed": 0,
"mobile_confirmed": 1,
"last_known_ip": "::1",
"last_login_at": "2020-08-05 11:26:35",
"refferal_code": "RAME123",
"rating": 5,
"no_of_ratings": 8,
"currency_code": "INR",
"currency_symbol": "$"
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Send the email verification OTP during registration.
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/send-mail-otp" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"email\": \"everardo76@example.com\",
\"otp\": \"nesciunt\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/send-mail-otp"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"email": "everardo76@example.com",
"otp": "nesciunt"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Validate the mobile number verification OTP during registration.
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/validate-email-otp" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"email\": \"quisquam\",
\"otp\": \"dignissimos\",
\"uuid\": \"d6af318d-475b-3d46-a4d4-53204b4f3761\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/validate-email-otp"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"email": "quisquam",
"otp": "dignissimos",
"uuid": "d6af318d-475b-3d46-a4d4-53204b4f3761"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Validate the mobile number verification OTP during registration.
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/user/register/validate-otp" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"uuid\": \"20638e27-2325-350e-8227-d593d29925d0\",
\"otp\": \"ab\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/user/register/validate-otp"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"uuid": "20638e27-2325-350e-8227-d593d29925d0",
"otp": "ab"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Sos-Apis
APIs for Sos
List Sos
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/common/sos/list/est/rem" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/common/sos/list/est/rem"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "sos_list",
"data": [
{
"id": "e5962ff4-884c-40e9-b0fe-bc11d85cdcac",
"name": "dilip",
"number": "8667241567",
"user_type": "mobile-users",
"created_by": 15
},
{
"id": "103f9ea7-ad6c-47b4-bb4b-30d82f301926",
"name": "police",
"number": "100",
"user_type": "admin",
"created_by": null
}
]
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store Sos
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/common/sos/store" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"et\",
\"number\": \"iure\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/common/sos/store"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "et",
"number": "iure"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "sos_created"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete Sos
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/common/sos/delete/006ba4ca-1c6f-41e9-acad-3c65a13eaa82" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/common/sos/delete/006ba4ca-1c6f-41e9-acad-3c65a13eaa82"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "sos_deleted"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Stripe Payment Gateway
Payment-Related Apis
Setup a StripeIntent
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/payment/stripe/create-setup-intent" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/payment/stripe/create-setup-intent"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "stripe_key_listed_success",
"data": {
"client_secret": "seti_1QNX13SBCHfacuRqIglT6i8V_secret_RG37JHWQgOWjGNcXs4WPNTKiD57J0Nb",
"customer_id": null,
"test_environment": true
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Save Payment Method Id
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/payment/stripe/save-card" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"payment_method_id\": \"aspernatur\",
\"last_number\": 19,
\"card_type\": \"quia\",
\"valid_through\": \"odit\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/payment/stripe/save-card"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"payment_method_id": "aspernatur",
"last_number": 19,
"card_type": "quia",
"valid_through": "odit"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "Card saved successfully."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Stripe Webhooks
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/payment/stripe/create-webhooks" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/payment/stripe/create-webhooks"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/v1/payment/stripe/listen-webhooks
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/payment/stripe/listen-webhooks" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/payment/stripe/listen-webhooks"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Subscription
Driver Subscription List
requires authentication
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/driver/list_of_plans" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/driver/list_of_plans"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "subscriptions-listed",
"data": [
{
"id": 3,
"name": "Harmonious Hatchback",
"description": "Subscribe and Save Drive without limit",
"duration": 60,
"currency_symbol": "₹",
"amount": 10,
"vehicle_type_id": "e42b124a-d309-4484-8dcd-f2b6cbc6b9f7",
"vehicle_type_name": "Hatchback"
}
]
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Driver Subscription
requires authentication
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/driver/subscribe" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/driver/subscribe"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "subscribed_successfully",
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Translation
translation api
Translation api
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/translation/get" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/translation/get"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"update_sheet": false,
"data": {
"en": {
"selectAccountType": "Select Account Type",
"driver": "Driver",
"owner": "Owner",
"driverSubHeading": "Manage Pick-up and Delivery rides",
"ownerSubHeading": "Optimize Drivers and Deliveries",
"continueText": "Continue",
"skip": "Skip",
"welcome": "Welcome",
"email": "Email",
"mobile": "Mobile",
"emailOrMobile": "Email address or mobile number",
"agreeTermsAndPrivacy": "By continuing you agree to the 1111 and 2222",
"terms": "Terms of Service",
"privacy": "Privacy Policy",
"selectCountry": "Select Country",
"cancel": "Cancel",
"isThisCorrect": "Is this correct?",
"edit": "Edit",
"otpSentMobile": "An One Time Password (OTP) has been sent ro this number",
"otpSentEmail": "An One Time Password (OTP) has been sent ro this email",
"enterOtp": "Enter OTP",
"resendOtp": "Resend OTP",
"confirm": "Confirm",
"register": "Register",
"name": "Name",
"enterName": "Enter your name",
"enterEmail": "Enter your email address",
"gender": "Gender",
"selectGender": "Select Gender",
"male": "Male",
"female": "Female",
"preferNotSay": "Prefer not to say",
"password": "Password",
"enterYourPassword": "Enter your password",
"signUsingOtp": "Sign in using OTP",
"signUsingPassword": "Sign in using Password",
"home": "Home",
"dashboard": "DashBoard",
"earnings": "Earnings",
"accounts": "Accounts",
"ownerDashboard": "Owner Dashboard",
"cabs": "Cabs",
"active": "Active",
"inactive": "Inactive",
"blocked": "Blocked",
"revenue": "Revenue",
"discount": "Discount",
"cash": "Cash",
"digitalPayment": "Digital Payment",
"cabPerformance": "Cab Performance",
"rides": "Rides",
"driverPerformance": "Driver Performance",
"weeklyEarnings": "Weekly Earnings",
"login": "Login",
"wallet": "Wallet",
"trips": "Trips",
"totalDistance": "Total Distance",
"mins": "Mins",
"summary": "Summary",
"myAccount": "My Account",
"personalInformation": "Personal Information",
"notifications": "Notifications",
"history": "History",
"vehicleInfo": "Vehicle Informations",
"drivers": "Drivers",
"documents": "Documents",
"payment": "Payment",
"referAndEarn": "Refer & Earn",
"changeLanguage": "Change Language",
"general": "General",
"chatWithUs": "Chat With Us",
"makeComplaint": "Make Complaint",
"settings": "Settings",
"mapAppearance": "Map Appearance",
"faq": "FAQ",
"logout": "Logout",
"deleteAccount": "Delete Account",
"comeBackSoon": "Come back soon",
"logoutSure": "Are you sure, you want to logout?",
"deleteSure": "Are you sure, you want to delete account?",
"chooseComplaint": "Choose your complaint",
"noNotificationAvail": "No Notification Available",
"adminChat": "Admin Chat",
"typeMessage": "Type a message",
"invite": "Invite",
"shareYourInvite": "Share your invite code",
"referralCopied": "Referral code copied to clipboard",
"walletBalance": "Wallet Balance",
"addMoney": "Add Money",
"transferMoney": "Transfer Money",
"recentTransactions": "Recent Transactions",
"enterAmount": "Enter Amount Here",
"documentNotUploaded": "Document Not Uploaded",
"fleetNotAssigned": "Fleet Not Assigned",
"deleteDriver": "Delete Driver",
"deleteDriverSure": "Are you sure to delete this driver?",
"driverName": "Driver Name",
"enterDriverName": "Enter Driver Name",
"driverMobile": "Driver Mobile",
"enterDriverMobile": "Enter Driver Mobile",
"enterDriverEmail": "Enter Driver Email",
"driverEmail": "Driver Email",
"enterDriverAddress": "Enter Driver Address",
"driverAddress": "Driver Address",
"addDriver": "Add Driver",
"noDriversAdded": "No Drivers Added",
"noVehicleCreated": "No Vehicles Created",
"waitingForApproval": "Waiting For Approval",
"assignDriver": "Assign Driver",
"chooseDriverAssign": "Choose Driver to Assign",
"assign": "Assign",
"addNewVehicle": "Add New Vehicle",
"selectVehicleType": "Please select your vehicle type",
"chooseVehicleType": "Choose vehicle type",
"provideVehicleMake": "Please provide your vehicle make",
"enterVehicleMake": "Enter vehicle make",
"provideVehicleModel": "Please provide your vehicle model",
"enterVehicleModel": "Enter vehicle model",
"provideModelYear": "Please provide vehicle model year",
"enterModelYear": "Enter model year",
"provideVehicleNumber": "Please provide your vehicle number",
"enterVehicleNumber": "Enter Vehicle Number",
"provideVehicleColor": "Please provide your vehicle color",
"enterVehicleColor": "Enter Vehicle Color",
"submit": "Submit",
"vehicleAddedSuccess": "Vehicle Added Successfully",
"driverAddedSuccess": "Driver Added Succcessfully",
"completed": "Completed",
"cancelled": "Cancelled",
"upcoming": "Upcoming",
"historyDetails": "History Details",
"duration": "Duration",
"distance": "Distance",
"typeOfRide": "Type of Ride",
"fareBreakup": "Fare Breakup",
"basePrice": "Base Price",
"taxes": "Taxes",
"distancePrice": "Distance Price",
"timePrice": "Time Price",
"waitingPrice": "Waiting Price",
"convFee": "Convinience Fee",
"paymentRecieved": "Payment Recieved",
"noHistoryAvail": "No History Available",
"applyReferal": "Apply Referral",
"enterReferralCode": "Enter referral code",
"apply": "Apply",
"requiredInfo": "Required Information",
"welcomeName": "Welcome 1111",
"followSteps": "Follow these steps to begin your ride.",
"companyInfo": "Company Information",
"profile": "Profile",
"registerFor": "Register For",
"chooseServiceLocation": "Choose your sevice location to register",
"chooseServiceLoc": "Choose service location",
"provideCompanyName": "Please provide your company name",
"enterCompanyName": "Enter company name",
"provideCompanyAddress": "Please provide your company address",
"enterCompanyAddress": "Enter company address",
"provideCity": "Please provide your city",
"enterCity": "Enter city name",
"providePostalCode": "Please provide postal code",
"enterPostalCode": "Enter postal code",
"provideTaxNumber": "Please provide your company tax number",
"enterTaxNumer": "Enter tax number",
"upload": "Upload",
"submitNecessaryDocs": "Please submit the necessary documents",
"evaluatingProfile": "Your document didn't meet our requirements",
"profileApprove": "Please review guidelines and resubmit",
"change": "Change",
"enterValidEmailOrMobile": "Please enter valid email or mobile number",
"enterEmailOrMobile": "Please enter email or mobile number",
"forgotPassword": "Forgot Password",
"noDataFound": "No Data Found",
"uploadDocument": "Upload Documents",
"ratings": "Ratings",
"tripsTaken": "Trips Taken",
"subscription": "Subscription",
"leaderboard": "LeaderBoard",
"prev": "Prev",
"next": "Next",
"complaintDetails": "Complaint Details",
"writeYourComplaint": "Write your complaint here...",
"makeNewBookingToView": "Make new booking to view it here.",
"vehicleType": "Vehicle Type",
"vehicleMake": "Vehicle Make",
"vehicleModel": "Vehicle Model",
"vehicleNumber": "Vehicle Number",
"vehicleColor": "Vehicle Color",
"vehicleNotAssigned": "Vehicle Not Assigned",
"modifyVehicleInfo": "Modify Vehicle Info",
"tapToUploadImage": "Tap to upload image",
"chooseExpiryDate": "Choose Expiry Date",
"expiryDate": "Expiry Date",
"chooseYourSubscription": "Choose your Subscription",
"card": "Card",
"continueWithoutPlans": "Continue Without Plans",
"continueWithoutPlanDesc": "Continue without plan will cause you to pay admin commission for each ride",
"or": "OR",
"weWillMissYou": "We will miss you!",
"instantActivity": "Instant Activity",
"instantRide": "Street Pickup",
"helpCenter": "Help Center",
"bidOnFare": "Bid On Fare",
"showBubbleIcon": "Appear on Top",
"pricePerDistance": "My Fare",
"enterYourPriceBelow": "Enter your price below",
"enterYourPrice": "Enter your price",
"todaysEarnings": "Today's Earnings",
"ridesTaken": "Rides Taken",
"userName": "User Name",
"userMobile": "User Mobile",
"createRequest": "Create Request",
"onTheWayToDrop": "On the way to drop location",
"ridePrice": "Ride Price",
"endRide": "End Ride",
"notifyAdmin": "Notify Admin",
"notifiedToAdmin": "Notified to Admin",
"tripSummary": "Trip Summary",
"howWasYourLastRide": "How was your last ride with 1111?",
"leaveFeedback": "Leave Feedback (Optional)",
"slideToAccept": "Slide to Accept",
"rideWillCancelAutomatically": "This ride will be cancelled automatically after 1111 seconds.",
"onWayToPickup": "On the way to pick up",
"cancelRide": "Cancel Ride",
"arrived": "Arrived",
"selectReasonForCancel": "Please select the reason for cancellation",
"arrivedWaiting": "Arrived, Waiting for customer",
"startRide": "Start Ride",
"enterValidEmail": "Please enter valid email address",
"minimumCharacRequired": "Minimum 8 characters required",
"enterValidMobile": "Please enter valid mobile number",
"pleaseEnterMobileNumber": "please enter mobile number",
"pleaseEnterUserName": "Please enter user name",
"enterRequiredField": "Please enter all required field",
"subscriptionHeading": "You don't have any active subscription, Please choose any subscription for additional benefits",
"pickImageFrom": "Pick Image From",
"camera": "Camera",
"gallery": "Gallery",
"searchPlace": "Search Place",
"confirmLocation": "Confirm Location",
"chooseGoods": "Choose Goods",
"loose": "Loose",
"qtyWithUnit": "Qty with unit",
"captureLoadingImage": "Capture Loading Image",
"captureGoodsLoadingImage": "Capture Goods Loading Image",
"dispatchGoods": "Dispatch Goods",
"getUserSignature": "Get User Signature",
"clear": "Clear",
"pay": "Pay",
"enterMobileNumber": "Enter Mobile Number",
"enterRideOtpDesc": "Enter the OTP shown in the customer's app to begin the ride",
"rideVerification": "Ride Verification",
"shipmentVerification": "Shipment Verification",
"uploadShipmentProof": "Upload Shipment Proof",
"dropImageHere": "Drop Image Here",
"supportedImage": "(Supports: 1111)",
"drawSignature": "Draw your signature below",
"confirmSignature": "Confirm Signature",
"clearSignature": "Clear Signature",
"pickGoods": "Pick Goods",
"complaintLengthError": "Complaint must be at least 10 characters long.",
"addAContact": "Add a Contact",
"choosePlan": "Choose Plan",
"lowWalletBalanceForSubscription": "Your wallet doesn't have enough balance to pay for this subscription, please try another method or add money in wallet",
"cancelRideSure": "Are you sure wan't to cancel this ride?",
"update": "Update",
"modifyDocument": "Modify Document",
"profileDeclined": "Profile Declined",
"reuploadDocs": "Kindly re-upload the required document",
"userCancelledRide": "User cancelled this ride",
"userCancelledDesc": "The user has cancelled the ride. You’re now available for other requests",
"userDeclinedBid": "User Declined Bid",
"userDeclinedBidDesc": "Please modify your amount and try again or try another ride",
"ok": "Ok",
"accept": "Accept",
"decline": "Decline",
"selectCancelReasonError": "Please select any cancel reason",
"getSignatureError": "Please get signature to proceed further",
"giveRatingsError": "Please give ratings",
"deleteText": "Deleting your account will erase all personal data. Do you want to proceed?",
"welcomeToName": "Welcome to 1111",
"locationPermDesc": "To ensure a smooth and hassle-free booking experience, kindly provide us with the following access:",
"allowLocation": "Allow Location",
"lowBalance": "Low balance in wallet",
"yourId": "Your ID",
"noComplaints": "No Complaint List Available",
"complaintsSubmitted": "Complaint has been submitted.",
"failToUpdateDetails": "Failed to update details",
"booking": "Booking",
"rental": "Rental",
"loadMore": "Load More...",
"noDataLeaderBoard": "No Data in Leaderboard.",
"addRankingText": "To add rankings, please start your ride",
"googleMap": "Google Map",
"openstreet": "Open Street",
"clearAll": "Clear All",
"deleteNotification": "Delete Notification",
"deleteNotificationContent": "Are you sure to Delete\\nthis Notification?",
"outStation": "Out Station",
"returnTrip": "Return trip",
"oneWayTrip": "One Way trip",
"success": "Success",
"selectContact": "Select Contact",
"deleteContactContent": "Are you sure to Delete\\nthis Contact?",
"deleteSos": "Delete Sos",
"yes": "Yes",
"no": "No",
"fare": "Fare ",
"totalFare": "Total Fare",
"commission": "Commission",
"customerConvenienceFee": "Customer Convenience Fee",
"tripEarnings": "Trip Earnings",
"discountFromWallet": "Discount credited from wallet",
"tripEarningsCapital": "TRIP EARNINGS",
"tripInfo": "TRIP INFO",
"rideLater": "Ride later",
"regular": "Regular",
"detailsUpdateSuccess": "Details updated successfully",
"detailsUpdatefail": "Failed to update details",
"noDriverAvailable": "No Driver Available to Assign",
"paymentSuccess": "Payment Success!",
"paymentFailed": "Payment Failed!",
"noPaymentHistory": "No payment history yet.",
"bookingRideText": "Start your journey by booking a ride today!",
"subscriptionSuccess": "Subscription Success",
"subscriptionExpired": "Subscription Expired",
"subscriptionSuccessDescOne": "Your subscription is active.\\nPlan A is valid until",
"subscriptionSuccessDescTwo": "\\nEnjoy your benefits!",
"subscriptionFailedDescOne": "Your subscription has expired.\\nWeekly",
"subscriptionFailedDescTwo": "was valid until",
"subscriptionFailedDescThree": "\\nRenew now to continue using our services.",
"referalShareOne": "Join me on Restart Tagxi! using my invite code",
"referalShareTwo": "To make easy your ride",
"enterNewPassword": "Enter New Password",
"rideDetails": "Ride details",
"coupons": "Coupons",
"choosePayment": "Choose Payment",
"chooseStop": "Choose the stop you are completing",
"taxi": "Taxi",
"delivery": "Delivery",
"enterPickupLocation": "Enter pickup location",
"whereToGo": "Where to go ?",
"selectFromMap": "Select from map",
"bidAmount": "Bid Amount",
"noRequest": "No requests right now!",
"searching": "Searching...",
"searchResult": "Search Result",
"onlineCaps": "ONLINE",
"offlineCaps": "OFFLINE",
"waitingForUserResponse": "Waiting for User response",
"yourOnline": "You're Online",
"yourOffline": "You're Offline",
"select": "Select",
"incentives": "Incentives",
"todayCaps": "TODAY",
"weeklyCaps": "WEEKLY",
"earnUptoText": "Earn up to",
"byCompletingRideText": "by completing 12 Rides",
"missedIncentiveText": "Sorry you missed this Incentive",
"earnedIncentiveText": "You've earned the incentive!",
"completeText": "Complete",
"acheivedTargetText": "You successfully achieved your targets!",
"missedTargetText": "Missed! You did not complete your targets",
"selectDateForIncentives": "Select a date to view upcoming incentives",
"tripDetails": "Trip Details",
"customerPays": "Customer Pays",
"taxText": "Tax",
"tripId": "TRIP ID",
"reportIssue": "REPORT ISSUE",
"paymentMethodSuccess": "Payment method updated successfully",
"recentWithdrawal": "Recent Withdrawal",
"requestWithdraw": "Request Withdraw",
"paymentMethods": "Payment Methods",
"textAdd": "Add",
"textView": "View",
"updatePaymentMethod": "Update Payment Method",
"registeredFor": "Registered for - 1111",
"serviceLocation": "Service Location",
"comapnyName": "Company Name",
"companyAddress": "Company Address",
"city": "City",
"postalCode": "Postal Code",
"taxNumber": "Tax Number",
"withdraw": "Withdraw",
"insufficientWithdraw": "Insufficient balance to withdraw this amount",
"waitingText": "After * minutes, a *** /min surcharge applies for additional waiting time.",
"waitingForApprovelText": "Your documents are under review.Approval will be given within 24 hours Please wait to start your earnings.!",
"diagnotics": "Diagnostics",
"notGettingRequest": "Not getting request?",
"documentMissingText": "Please add All the documents",
"rideFare": "Ride Fare"
}
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Translation api
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/translation-user/get" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/translation-user/get"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"update_sheet": false,
"data": {
"en": {
"selectAccountType": "Select Account Type",
"driver": "Driver",
"owner": "Owner",
"driverSubHeading": "Manage Pick-up and Delivery rides",
"ownerSubHeading": "Optimize Drivers and Deliveries",
"continueText": "Continue",
"skip": "Skip",
"welcome": "Welcome",
"email": "Email",
"mobile": "Mobile",
"emailOrMobile": "Email address or mobile number",
"agreeTermsAndPrivacy": "By continuing you agree to the 1111 and 2222",
"terms": "Terms of Service",
"privacy": "Privacy Policy",
"selectCountry": "Select Country",
"cancel": "Cancel",
"isThisCorrect": "Is this correct?",
"edit": "Edit",
"otpSentMobile": "An One Time Password (OTP) has been sent ro this number",
"otpSentEmail": "An One Time Password (OTP) has been sent ro this email",
"enterOtp": "Enter OTP",
"resendOtp": "Resend OTP",
"confirm": "Confirm",
"register": "Register",
"name": "Name",
"enterName": "Enter your name",
"enterEmail": "Enter your email address",
"gender": "Gender",
"selectGender": "Select Gender",
"male": "Male",
"female": "Female",
"preferNotSay": "Prefer not to say",
"password": "Password",
"enterYourPassword": "Enter your password",
"signUsingOtp": "Sign in using OTP",
"signUsingPassword": "Sign in using Password",
"home": "Home",
"dashboard": "DashBoard",
"earnings": "Earnings",
"accounts": "Accounts",
"ownerDashboard": "Owner Dashboard",
"cabs": "Cabs",
"active": "Active",
"inactive": "Inactive",
"blocked": "Blocked",
"revenue": "Revenue",
"discount": "Discount",
"cash": "Cash",
"digitalPayment": "Digital Payment",
"cabPerformance": "Cab Performance",
"rides": "Rides",
"driverPerformance": "Driver Performance",
"weeklyEarnings": "Weekly Earnings",
"login": "Login",
"wallet": "Wallet",
"trips": "Trips",
"totalDistance": "Total Distance",
"mins": "Mins",
"summary": "Summary",
"myAccount": "My Account",
"personalInformation": "Personal Information",
"notifications": "Notifications",
"history": "History",
"vehicleInfo": "Vehicle Informations",
"drivers": "Drivers",
"documents": "Documents",
"payment": "Payment",
"referAndEarn": "Refer & Earn",
"changeLanguage": "Change Language",
"general": "General",
"chatWithUs": "Chat With Us",
"makeComplaint": "Make Complaint",
"settings": "Settings",
"mapAppearance": "Map Appearance",
"faq": "FAQ",
"logout": "Logout",
"deleteAccount": "Delete Account",
"comeBackSoon": "Come back soon",
"logoutSure": "Are you sure, you want to logout?",
"deleteSure": "Are you sure, you want to delete account?",
"chooseComplaint": "Choose your complaint",
"noNotificationAvail": "No Notification Available",
"adminChat": "Admin Chat",
"typeMessage": "Type a message",
"invite": "Invite",
"shareYourInvite": "Share your invite code",
"referralCopied": "Referral code copied to clipboard",
"walletBalance": "Wallet Balance",
"addMoney": "Add Money",
"transferMoney": "Transfer Money",
"recentTransactions": "Recent Transactions",
"enterAmount": "Enter Amount Here",
"documentNotUploaded": "Document Not Uploaded",
"fleetNotAssigned": "Fleet Not Assigned",
"deleteDriver": "Delete Driver",
"deleteDriverSure": "Are you sure to delete this driver?",
"driverName": "Driver Name",
"enterDriverName": "Enter Driver Name",
"driverMobile": "Driver Mobile",
"enterDriverMobile": "Enter Driver Mobile",
"enterDriverEmail": "Enter Driver Email",
"driverEmail": "Driver Email",
"enterDriverAddress": "Enter Driver Address",
"driverAddress": "Driver Address",
"addDriver": "Add Driver",
"noDriversAdded": "No Drivers Added",
"noVehicleCreated": "No Vehicles Created",
"waitingForApproval": "Waiting For Approval",
"assignDriver": "Assign Driver",
"chooseDriverAssign": "Choose Driver to Assign",
"assign": "Assign",
"addNewVehicle": "Add New Vehicle",
"selectVehicleType": "Please select your vehicle type",
"chooseVehicleType": "Choose vehicle type",
"provideVehicleMake": "Please provide your vehicle make",
"enterVehicleMake": "Enter vehicle make",
"provideVehicleModel": "Please provide your vehicle model",
"enterVehicleModel": "Enter vehicle model",
"provideModelYear": "Please provide vehicle model year",
"enterModelYear": "Enter model year",
"provideVehicleNumber": "Please provide your vehicle number",
"enterVehicleNumber": "Enter Vehicle Number",
"provideVehicleColor": "Please provide your vehicle color",
"enterVehicleColor": "Enter Vehicle Color",
"submit": "Submit",
"vehicleAddedSuccess": "Vehicle Added Successfully",
"driverAddedSuccess": "Driver Added Succcessfully",
"completed": "Completed",
"cancelled": "Cancelled",
"upcoming": "Upcoming",
"historyDetails": "History Details",
"duration": "Duration",
"distance": "Distance",
"typeOfRide": "Type of Ride",
"fareBreakup": "Fare Breakup",
"basePrice": "Base Price",
"taxes": "Taxes",
"distancePrice": "Distance Price",
"timePrice": "Time Price",
"waitingPrice": "Waiting Price",
"convFee": "Convinience Fee",
"paymentRecieved": "Payment Recieved",
"noHistoryAvail": "No History Available",
"applyReferal": "Apply Referral",
"enterReferralCode": "Enter referral code",
"apply": "Apply",
"requiredInfo": "Required Information",
"welcomeName": "Welcome 1111",
"followSteps": "Follow these steps to begin your ride.",
"companyInfo": "Company Information",
"profile": "Profile",
"registerFor": "Register For",
"chooseServiceLocation": "Choose your sevice location to register",
"chooseServiceLoc": "Choose service location",
"provideCompanyName": "Please provide your company name",
"enterCompanyName": "Enter company name",
"provideCompanyAddress": "Please provide your company address",
"enterCompanyAddress": "Enter company address",
"provideCity": "Please provide your city",
"enterCity": "Enter city name",
"providePostalCode": "Please provide postal code",
"enterPostalCode": "Enter postal code",
"provideTaxNumber": "Please provide your company tax number",
"enterTaxNumer": "Enter tax number",
"upload": "Upload",
"submitNecessaryDocs": "Please submit the necessary documents",
"evaluatingProfile": "Your document didn't meet our requirements",
"profileApprove": "Please review guidelines and resubmit",
"change": "Change",
"enterValidEmailOrMobile": "Please enter valid email or mobile number",
"enterEmailOrMobile": "Please enter email or mobile number",
"forgotPassword": "Forgot Password",
"noDataFound": "No Data Found",
"uploadDocument": "Upload Documents",
"ratings": "Ratings",
"tripsTaken": "Trips Taken",
"subscription": "Subscription",
"leaderboard": "LeaderBoard",
"prev": "Prev",
"next": "Next",
"complaintDetails": "Complaint Details",
"writeYourComplaint": "Write your complaint here...",
"makeNewBookingToView": "Make new booking to view it here.",
"vehicleType": "Vehicle Type",
"vehicleMake": "Vehicle Make",
"vehicleModel": "Vehicle Model",
"vehicleNumber": "Vehicle Number",
"vehicleColor": "Vehicle Color",
"vehicleNotAssigned": "Vehicle Not Assigned",
"modifyVehicleInfo": "Modify Vehicle Info",
"tapToUploadImage": "Tap to upload image",
"chooseExpiryDate": "Choose Expiry Date",
"expiryDate": "Expiry Date",
"chooseYourSubscription": "Choose your Subscription",
"card": "Card",
"continueWithoutPlans": "Continue Without Plans",
"continueWithoutPlanDesc": "Continue without plan will cause you to pay admin commission for each ride",
"or": "OR",
"weWillMissYou": "We will miss you!",
"instantActivity": "Instant Activity",
"instantRide": "Street Pickup",
"helpCenter": "Help Center",
"bidOnFare": "Bid On Fare",
"showBubbleIcon": "Appear on Top",
"pricePerDistance": "My Fare",
"enterYourPriceBelow": "Enter your price below",
"enterYourPrice": "Enter your price",
"todaysEarnings": "Today's Earnings",
"ridesTaken": "Rides Taken",
"userName": "User Name",
"userMobile": "User Mobile",
"createRequest": "Create Request",
"onTheWayToDrop": "On the way to drop location",
"ridePrice": "Ride Price",
"endRide": "End Ride",
"notifyAdmin": "Notify Admin",
"notifiedToAdmin": "Notified to Admin",
"tripSummary": "Trip Summary",
"howWasYourLastRide": "How was your last ride with 1111?",
"leaveFeedback": "Leave Feedback (Optional)",
"slideToAccept": "Slide to Accept",
"rideWillCancelAutomatically": "This ride will be cancelled automatically after 1111 seconds.",
"onWayToPickup": "On the way to pick up",
"cancelRide": "Cancel Ride",
"arrived": "Arrived",
"selectReasonForCancel": "Please select the reason for cancellation",
"arrivedWaiting": "Arrived, Waiting for customer",
"startRide": "Start Ride",
"enterValidEmail": "Please enter valid email address",
"minimumCharacRequired": "Minimum 8 characters required",
"enterValidMobile": "Please enter valid mobile number",
"pleaseEnterMobileNumber": "please enter mobile number",
"pleaseEnterUserName": "Please enter user name",
"enterRequiredField": "Please enter all required field",
"subscriptionHeading": "You don't have any active subscription, Please choose any subscription for additional benefits",
"pickImageFrom": "Pick Image From",
"camera": "Camera",
"gallery": "Gallery",
"searchPlace": "Search Place",
"confirmLocation": "Confirm Location",
"chooseGoods": "Choose Goods",
"loose": "Loose",
"qtyWithUnit": "Qty with unit",
"captureLoadingImage": "Capture Loading Image",
"captureGoodsLoadingImage": "Capture Goods Loading Image",
"dispatchGoods": "Dispatch Goods",
"getUserSignature": "Get User Signature",
"clear": "Clear",
"pay": "Pay",
"enterMobileNumber": "Enter Mobile Number",
"enterRideOtpDesc": "Enter the OTP shown in the customer's app to begin the ride",
"rideVerification": "Ride Verification",
"shipmentVerification": "Shipment Verification",
"uploadShipmentProof": "Upload Shipment Proof",
"dropImageHere": "Drop Image Here",
"supportedImage": "(Supports: 1111)",
"drawSignature": "Draw your signature below",
"confirmSignature": "Confirm Signature",
"clearSignature": "Clear Signature",
"pickGoods": "Pick Goods",
"complaintLengthError": "Complaint must be at least 10 characters long.",
"addAContact": "Add a Contact",
"choosePlan": "Choose Plan",
"lowWalletBalanceForSubscription": "Your wallet doesn't have enough balance to pay for this subscription, please try another method or add money in wallet",
"cancelRideSure": "Are you sure wan't to cancel this ride?",
"update": "Update",
"modifyDocument": "Modify Document",
"profileDeclined": "Profile Declined",
"reuploadDocs": "Kindly re-upload the required document",
"userCancelledRide": "User cancelled this ride",
"userCancelledDesc": "The user has cancelled the ride. You’re now available for other requests",
"userDeclinedBid": "User Declined Bid",
"userDeclinedBidDesc": "Please modify your amount and try again or try another ride",
"ok": "Ok",
"accept": "Accept",
"decline": "Decline",
"selectCancelReasonError": "Please select any cancel reason",
"getSignatureError": "Please get signature to proceed further",
"giveRatingsError": "Please give ratings",
"deleteText": "Deleting your account will erase all personal data. Do you want to proceed?",
"welcomeToName": "Welcome to 1111",
"locationPermDesc": "To ensure a smooth and hassle-free booking experience, kindly provide us with the following access:",
"allowLocation": "Allow Location",
"lowBalance": "Low balance in wallet",
"yourId": "Your ID",
"noComplaints": "No Complaint List Available",
"complaintsSubmitted": "Complaint has been submitted.",
"failToUpdateDetails": "Failed to update details",
"booking": "Booking",
"rental": "Rental",
"loadMore": "Load More...",
"noDataLeaderBoard": "No Data in Leaderboard.",
"addRankingText": "To add rankings, please start your ride",
"googleMap": "Google Map",
"openstreet": "Open Street",
"clearAll": "Clear All",
"deleteNotification": "Delete Notification",
"deleteNotificationContent": "Are you sure to Delete\\nthis Notification?",
"outStation": "Out Station",
"returnTrip": "Return trip",
"oneWayTrip": "One Way trip",
"success": "Success",
"selectContact": "Select Contact",
"deleteContactContent": "Are you sure to Delete\\nthis Contact?",
"deleteSos": "Delete Sos",
"yes": "Yes",
"no": "No",
"fare": "Fare ",
"totalFare": "Total Fare",
"commission": "Commission",
"customerConvenienceFee": "Customer Convenience Fee",
"tripEarnings": "Trip Earnings",
"discountFromWallet": "Discount credited from wallet",
"tripEarningsCapital": "TRIP EARNINGS",
"tripInfo": "TRIP INFO",
"rideLater": "Ride later",
"regular": "Regular",
"detailsUpdateSuccess": "Details updated successfully",
"detailsUpdatefail": "Failed to update details",
"noDriverAvailable": "No Driver Available to Assign",
"paymentSuccess": "Payment Success!",
"paymentFailed": "Payment Failed!",
"noPaymentHistory": "No payment history yet.",
"bookingRideText": "Start your journey by booking a ride today!",
"subscriptionSuccess": "Subscription Success",
"subscriptionExpired": "Subscription Expired",
"subscriptionSuccessDescOne": "Your subscription is active.\\nPlan A is valid until",
"subscriptionSuccessDescTwo": "\\nEnjoy your benefits!",
"subscriptionFailedDescOne": "Your subscription has expired.\\nWeekly",
"subscriptionFailedDescTwo": "was valid until",
"subscriptionFailedDescThree": "\\nRenew now to continue using our services.",
"referalShareOne": "Join me on Restart Tagxi! using my invite code",
"referalShareTwo": "To make easy your ride",
"enterNewPassword": "Enter New Password",
"rideDetails": "Ride details",
"coupons": "Coupons",
"choosePayment": "Choose Payment",
"chooseStop": "Choose the stop you are completing",
"taxi": "Taxi",
"delivery": "Delivery",
"enterPickupLocation": "Enter pickup location",
"whereToGo": "Where to go ?",
"selectFromMap": "Select from map",
"bidAmount": "Bid Amount",
"noRequest": "No requests right now!",
"searching": "Searching...",
"searchResult": "Search Result",
"onlineCaps": "ONLINE",
"offlineCaps": "OFFLINE",
"waitingForUserResponse": "Waiting for User response",
"yourOnline": "You're Online",
"yourOffline": "You're Offline",
"select": "Select",
"incentives": "Incentives",
"todayCaps": "TODAY",
"weeklyCaps": "WEEKLY",
"earnUptoText": "Earn up to",
"byCompletingRideText": "by completing 12 Rides",
"missedIncentiveText": "Sorry you missed this Incentive",
"earnedIncentiveText": "You've earned the incentive!",
"completeText": "Complete",
"acheivedTargetText": "You successfully achieved your targets!",
"missedTargetText": "Missed! You did not complete your targets",
"selectDateForIncentives": "Select a date to view upcoming incentives",
"tripDetails": "Trip Details",
"customerPays": "Customer Pays",
"taxText": "Tax",
"tripId": "TRIP ID",
"reportIssue": "REPORT ISSUE",
"paymentMethodSuccess": "Payment method updated successfully",
"recentWithdrawal": "Recent Withdrawal",
"requestWithdraw": "Request Withdraw",
"paymentMethods": "Payment Methods",
"textAdd": "Add",
"textView": "View",
"updatePaymentMethod": "Update Payment Method",
"registeredFor": "Registered for - 1111",
"serviceLocation": "Service Location",
"comapnyName": "Company Name",
"companyAddress": "Company Address",
"city": "City",
"postalCode": "Postal Code",
"taxNumber": "Tax Number",
"withdraw": "Withdraw",
"insufficientWithdraw": "Insufficient balance to withdraw this amount",
"waitingText": "After * minutes, a *** /min surcharge applies for additional waiting time.",
"waitingForApprovelText": "Your documents are under review.Approval will be given within 24 hours Please wait to start your earnings.!",
"diagnotics": "Diagnostics",
"notGettingRequest": "Not getting request?",
"documentMissingText": "Please add All the documents",
"rideFare": "Ride Fare"
}
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
List Localizations
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/translation/list" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/translation/list"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success",
"data": {
"data": [
{
"id": 1,
"lang": "en",
"name": "English",
"default_status": 1
}
]
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
User-Login
Send Mobile Otp
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/mobile-otp" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"mobile\": \"dignissimos\",
\"country_code\": \"in\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/mobile-otp"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"mobile": "dignissimos",
"country_code": "in"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success",
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Validate Mobile Otp
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/validate-otp" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"mobile\": \"vitae\",
\"otp\": \"libero\",
\"country_code\": \"tenetur\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/validate-otp"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"mobile": "vitae",
"otp": "libero",
"country_code": "tenetur"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success",
"otp": 895579
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Login user and respond with access token and refresh token.
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/user/login" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"email\": \"theidenreich@example.org\",
\"password\": \"]*sY6TChD\\\"#4hq,n\",
\"username\": \"ex\",
\"mobile\": \"ad\",
\"login_by\": \"numquam\",
\"device_token\": \"est\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/user/login"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"email": "theidenreich@example.org",
"password": "]*sY6TChD\"#4hq,n",
"username": "ex",
"mobile": "ad",
"login_by": "numquam",
"device_token": "est"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success",
"access_token": "98|6jzNOIahjd2V72je0OeucPRuaRiIhJxWKXFvNVUr7027d348"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Login driver and respond with access token and refresh token.
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/driver/login" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"email\": \"schultz.tomas@example.net\",
\"password\": \"~z$Vtoh*A0+s2`WP8\",
\"username\": \"cupiditate\",
\"mobile\": \"distinctio\",
\"login_by\": \"hic\",
\"device_token\": \"rem\",
\"social_unique_id\": \"nam\",
\"apn_token\": \"tempora\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/driver/login"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"email": "schultz.tomas@example.net",
"password": "~z$Vtoh*A0+s2`WP8",
"username": "cupiditate",
"mobile": "distinctio",
"login_by": "hic",
"device_token": "rem",
"social_unique_id": "nam",
"apn_token": "tempora"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success",
"access_token": "98|6jzNOIahjd2V72je0OeucPRuaRiIhJxWKXFvNVUr7027d348"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Logout the user based on their access token.
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/logout" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/logout"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
User-Management
Get the current logged in user.
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/user" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/user"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"data": {
"id": 6,
"name": "dilipdk",
"email": "driver1@gmail.com",
"mobile": "8667259868",
"profile_picture": null,
"active": false,
"approve": true,
"available": false,
"uploaded_document": false,
"service_location_id": "48e861b5-8d4d-4281-807c-1cdd2a5fee3e",
"vehicle_type_id": "9ea6f9a0-6fd2-4962-9d81-645e6301096f",
"vehicle_type_name": "Mini",
"car_make": null,
"car_model": null,
"car_make_name": null,
"car_model_name": null,
"car_color": null,
"car_number": null,
"onTripRequest": {
"data": {
"id": "068ecb7a-7198-4322-82b2-28c8e1c90f0a",
"request_number": "REQ_000002",
"is_later": 0,
"user_id": 14,
"trip_start_time": "19th Apr 11:54 AM",
"arrived_at": null,
"accepted_at": null,
"completed_at": null,
"is_driver_started": 0,
"is_driver_arrived": 0,
"is_trip_start": 0,
"is_completed": 0,
"is_cancelled": 0,
"cancel_method": "0",
"payment_opt": "1",
"is_paid": 0,
"user_rated": 0,
"driver_rated": 0,
"unit": "0",
"zone_type_id": "b0a3a2ce-d248-4767-adea-ae2932731436",
"vehicle_type_name": "Mini",
"pick_lat": 11.0797,
"pick_lng": 76.9997,
"drop_lat": 10.99693444,
"drop_lng": 76.9762592,
"pick_address": "gandhi puram",
"drop_address": "srp mills",
"userDetail": {
"data": {
"id": 14,
"name": "dilipdk",
"last_name": null,
"username": null,
"email": "driver@gmail.com",
"mobile": "8667241566",
"profile_picture": null,
"active": 1,
"email_confirmed": 0,
"mobile_confirmed": 1,
"last_known_ip": "::1",
"last_login_at": "2020-04-24 13:08:43"
}
}
}
}
}
}
Example response (200):
{
"success": true,
"data": {
"id": 85,
"name": "Slik biggles",
"last_name": null,
"username": null,
"email": "dhilipkumar.kgcas@gmail.com",
"mobile": "9999999999",
"profile_picture": "https://admin.tagyourtaxi.com/storage/uploads/user/profile-picture/lgR7MHvR8PchGDFmGBQnGAOyI3FIwggYlH473Fj7.jpg",
"active": 1,
"email_confirmed": 0,
"mobile_confirmed": 1,
"last_known_ip": "49.37.213.137",
"last_login_at": "2022-01-01 06:59:24",
"rating": 4.51,
"no_of_ratings": 143,
"refferal_code": "VQA3J7",
"currency_code": "INR",
"currency_symbol": "₹",
"map_key": "AIzaSyBeVRs1icwooRpk7ErjCEQCwu0OQowVt9I",
"show_rental_ride": true,
"referral_comission_string": "Refer a friend and earn₹30",
"sos": {
"data": [
{
"id": "715775f3-6985-445d-b25d-b10b40a59cb4",
"name": "Cuadrantepolicia",
"number": "3124202525",
"status": false
},
{
"id": "4632e86e-e5a0-4dde-a11d-6688805b976f",
"name": "Cuadrantepolicia",
"number": "3124202525",
"status": false
},
{
"id": "5ad9703d-1f44-4c9f-aba6-769471697b4e",
"name": "Тойчибек",
"number": "+77000856363",
"status": false
}
]
},
"onTripRequest": {
"data": {
"id": "037bf21e-dec7-4f84-a80c-fd3980ee6c72",
"request_number": "REQ_000377",
"ride_otp": 5582,
"is_later": 0,
"user_id": 85,
"service_location_id": "d6522806-c74a-473b-894b-3501b17491e5",
"trip_start_time": "1st Jan 12:31 PM",
"arrived_at": "1st Jan 12:31 PM",
"accepted_at": "1st Jan 12:31 PM",
"completed_at": "1st Jan 12:31 PM",
"is_driver_started": 1,
"is_driver_arrived": 1,
"updated_at": "1st Jan 12:31 PM",
"is_trip_start": 1,
"total_distance": "55.00",
"total_time": 0,
"is_completed": 1,
"is_cancelled": 0,
"cancel_method": "0",
"payment_opt": "1",
"is_paid": 1,
"user_rated": 0,
"driver_rated": 0,
"unit": "MILES",
"zone_type_id": "2f7b1489-e94e-49bb-819a-a9650fe9dac0",
"vehicle_type_name": "Mini",
"vehicle_type_image": "https://admin.tagyourtaxi.com/storage/uploads/types/images/wOv6QtPJYvH9pHs1yMkHES1e0jcgu4NOb5WPab4B.jpg",
"car_make_name": "Ford",
"car_model_name": "Edge",
"pick_lat": 11.06272398,
"pick_lng": 76.99901438,
"drop_lat": 11.0626918,
"drop_lng": 76.9991022,
"pick_address": "Sivashti Lakshmi Illam, 15/30, NH 948, Shivanandhapuram, Coimbatore, 641035, Tamil Nadu, India",
"drop_address": "3X7X+4M4, Saravanampatti, Coimbatore, Tamil Nadu 641035, India",
"requested_currency_code": "INR",
"requested_currency_symbol": null,
"user_cancellation_fee": 0,
"is_rental": false,
"rental_package_id": null,
"is_out_station": 0,
"rental_package_name": "-",
"cv_trip_start_time": "12:31 PM",
"cv_completed_at": "12:31 PM",
"driverDetail": {
"data": {
"id": 24,
"name": "Arun",
"email": "arun@gmail.com",
"mobile": "8667241567",
"profile_picture": "https://admin.tagyourtaxi.com/assets/images/default-profile-picture.png",
"active": true,
"approve": true,
"available": true,
"uploaded_document": true,
"declined_reason": null,
"service_location_id": "d6522806-c74a-473b-894b-3501b17491e5",
"vehicle_type_id": "e38c77c2-d7d9-40a2-b6db-4e08403772e1",
"vehicle_type_name": "Mini",
"car_make": 15,
"car_model": 245,
"car_make_name": "Ford",
"car_model_name": "Edge",
"car_color": "White",
"driver_lat": null,
"driver_lng": null,
"car_number": "1788",
"rating": 4.32,
"no_of_ratings": 153,
"timezone": "Asia/Kolkata",
"refferal_code": "lJcLIU",
"map_key": "AIzaSyBeVRs1icwooRpk7ErjCEQCwu0OQowVt9I",
"company_key": "TEST-TYT",
"show_instant_ride": true,
"currency_symbol": "₹",
"total_earnings": 6705.6,
"current_date": "2022-01-01"
}
},
"requestBill": {
"data": {
"id": 739,
"base_price": 121.92,
"base_distance": 2,
"price_per_distance": 60.96,
"distance_price": 3230.88,
"price_per_time": 0,
"time_price": 0,
"waiting_charge": 0,
"cancellation_fee": 0,
"airport_surge_fee": 0,
"service_tax": 1005.84,
"service_tax_percentage": 30,
"promo_discount": 0,
"admin_commission": 1005.84,
"driver_commission": 3352.8,
"total_amount": 5364.48,
"requested_currency_code": "INR",
"requested_currency_symbol": "₹",
"admin_commission_with_tax": 2011.68
}
}
}
},
"metaRequest": {
"data": {
"id": "037bf21e-dec7-4f84-a80c-fd3980ee6c72",
"request_number": "REQ_000377",
"ride_otp": 5582,
"is_later": 0,
"user_id": 85,
"service_location_id": "d6522806-c74a-473b-894b-3501b17491e5",
"trip_start_time": null,
"arrived_at": null,
"accepted_at": null,
"completed_at": null,
"is_driver_started": 0,
"is_driver_arrived": 0,
"updated_at": "1st Jan 12:30 PM",
"is_trip_start": 0,
"total_distance": "0.00",
"total_time": 0,
"is_completed": 0,
"is_cancelled": 0,
"cancel_method": "0",
"payment_opt": "1",
"is_paid": 0,
"user_rated": 0,
"driver_rated": 0,
"unit": "MILES",
"zone_type_id": "2f7b1489-e94e-49bb-819a-a9650fe9dac0",
"vehicle_type_name": "Mini",
"vehicle_type_image": "https://admin.tagyourtaxi.com/storage/uploads/types/images/wOv6QtPJYvH9pHs1yMkHES1e0jcgu4NOb5WPab4B.jpg",
"car_make_name": "-",
"car_model_name": "-",
"pick_lat": 11.06272398,
"pick_lng": 76.99901438,
"drop_lat": 11.06851286,
"drop_lng": 77.00447403,
"pick_address": "Sivashti Lakshmi Illam, 15/30, NH 948, Shivanandhapuram, Coimbatore, 641035, Tamil Nadu, India",
"drop_address": "20, 6th Cross Street, Chitra Nagar, Coimbatore, 641035, Tamil Nadu, India",
"requested_currency_code": "INR",
"requested_currency_symbol": null,
"user_cancellation_fee": 0,
"is_rental": false,
"rental_package_id": null,
"is_out_station": 0,
"rental_package_name": "-",
"cv_trip_start_time": "12:30 PM",
"cv_completed_at": "12:30 PM",
"driverDetail": null
}
},
"favouriteLocations": {
"data": [
{
"id": 79,
"pick_lat": -33.3661533,
"pick_lng": -70.6783085,
"drop_lat": null,
"drop_lng": null,
"pick_address": "Av. Américo Vespucio 1737, Huechuraba, Región Metropolitana, Chile",
"drop_address": null,
"address_name": "MALL PLAZA NORTE",
"landmark": null
},
{
"id": 82,
"pick_lat": 33.9933499,
"pick_lng": -6.8485009,
"drop_lat": null,
"drop_lng": null,
"pick_address": "Agdal-Ryad, Rabat, Morocco",
"drop_address": null,
"address_name": "Home",
"landmark": null
},
{
"id": 83,
"pick_lat": 43.26624514,
"pick_lng": 76.90032084,
"drop_lat": null,
"drop_lng": null,
"pick_address": "Rayimbek Ave 241, Almaty 050000, Kazakhstan",
"drop_address": null,
"address_name": "Work",
"landmark": null
}
]
}
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
User-trips-apis
APIs for User-trips apis
List Packages
requires authentication
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/request/list-packages" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"pick_lat\": 13982124.3014,
\"pick_lng\": 3083058.34002,
\"transport_type\": \"commodi\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/request/list-packages"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"pick_lat": 13982124.3014,
"pick_lng": 3083058.34002,
"transport_type": "commodi"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success",
"data": [
{
"id": 1,
"package_name": "1 hr 5KM",
"description": "Something Something",
"short_description": "Best ride for travel",
"user_wallet_balance": 100,
"currency": "$",
"currency_name": "ARS",
"max_price": 500,
"min_price": 500,
"typesWithPrice": {
"data": [
{
"zone_type_id": "5cd8ed19-5725-4f82-a8a1-d92d9a5d24ca",
"type_id": "e42b124a-d309-4484-8dcd-f2b6cbc6b9f7",
"name": "Hatchback",
"icon": "https://restart.ondemandappz.com/storage/uploads/types/images/RpTI3AXc1ABbsyPrqLicWwJhVd66z2CPaF70Rkbu.png",
"capacity": 4,
"currency": "$",
"unit": 1,
"unit_in_words": "Km",
"distance_price_per_km": "5",
"time_price_per_min": "5",
"free_distance": "5",
"free_min": "0",
"payment_type": "cash,online,wallet",
"fare_amount": 500,
"description": "Compact joint family car",
"short_description": "Compact",
"supported_vehicles": null,
"is_default": false,
"discounted_total": 0,
"has_discount": false,
"promocode_id": null,
"user_wallet_balance": 100
},
{
"zone_type_id": "9f2f70cf-68ee-41eb-8639-a03af9b5f1f5",
"type_id": "103e6158-a844-46d2-a746-5748051709a0",
"name": "Sedan",
"icon": "https://restart.ondemandappz.com/storage/uploads/types/images/vnvOHLDT6tzlER4flbXOn6mxaudalFpbPqkce22A.jpeg",
"capacity": 4,
"currency": "$",
"unit": 1,
"unit_in_words": "Km",
"distance_price_per_km": "5",
"time_price_per_min": "5",
"free_distance": "5",
"free_min": "0",
"payment_type": "cash,online,wallet",
"fare_amount": 500,
"description": "Compact and premium four Wheeler",
"short_description": "Sedan Type",
"supported_vehicles": null,
"is_default": false,
"discounted_total": 0,
"has_discount": false,
"promocode_id": null,
"user_wallet_balance": 100
}
]
}
},
{
"id": 6,
"package_name": "3 hour package",
"description": "auto with carrage",
"short_description": "auto with carrage",
"user_wallet_balance": 100,
"currency": "$",
"currency_name": "ARS",
"max_price": 900,
"min_price": 300,
"typesWithPrice": {
"data": [
{
"zone_type_id": "5cd8ed19-5725-4f82-a8a1-d92d9a5d24ca",
"type_id": "e42b124a-d309-4484-8dcd-f2b6cbc6b9f7",
"name": "Hatchback",
"icon": "https://restart.ondemandappz.com/storage/uploads/types/images/RpTI3AXc1ABbsyPrqLicWwJhVd66z2CPaF70Rkbu.png",
"capacity": 4,
"currency": "$",
"unit": 1,
"unit_in_words": "Km",
"distance_price_per_km": "5",
"time_price_per_min": "5",
"free_distance": "5",
"free_min": "0",
"payment_type": "cash,online,wallet",
"fare_amount": 600,
"description": "Compact joint family car",
"short_description": "Compact",
"supported_vehicles": null,
"is_default": false,
"discounted_total": 0,
"has_discount": false,
"promocode_id": null,
"user_wallet_balance": 100
}
]
}
},
{
"id": 8,
"package_name": "1hr 30mins",
"description": "Best Ride for trvel",
"short_description": "Best ride for travel",
"user_wallet_balance": 100,
"currency": "$",
"currency_name": "ARS",
"max_price": null,
"min_price": null,
"typesWithPrice": {
"data": []
}
}
]
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
List Promo codes for user
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/request/promocode-list" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/request/promocode-list"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "promo_listed",
"data": [
{
"id": "8b117607-2f85-4713-a20f-3cf11b816d6e",
"service_location_id": "48e861b5-8d4d-4281-807c-1cdd2a5fee3e",
"code": "21555",
"minimum_trip_amount": 50,
"maximum_discount_amount": 50,
"discount_percent": 50,
"total_uses": 50,
"uses_per_user": 50,
"from": "2020-10-14 00:00:00",
"to": "2020-10-23 23:59:59",
"active": 1,
"is_applied": false,
"created_at": "2020-10-14 16:52:45",
"updated_at": "2020-10-14 16:52:45"
}
]
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Create Request
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/request/create" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"pick_lat\": 15.2320701,
\"pick_lng\": 43030895.1,
\"vehicle_type\": \"officia\",
\"payment_opt\": \"repellat\",
\"pick_address\": \"consequatur\",
\"drivers\": \"non\",
\"is_later\": \"nobis\",
\"trip_start_time\": \"reprehenderit\",
\"promocode_id\": \"sint\",
\"transport_type\": \"ducimus\",
\"drop_lat\": 67.51,
\"drop_lng\": 43.744,
\"drop_address\": \"corporis\",
\"rental_pack_id\": 6
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/request/create"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"pick_lat": 15.2320701,
"pick_lng": 43030895.1,
"vehicle_type": "officia",
"payment_opt": "repellat",
"pick_address": "consequatur",
"drivers": "non",
"is_later": "nobis",
"trip_start_time": "reprehenderit",
"promocode_id": "sint",
"transport_type": "ducimus",
"drop_lat": 67.51,
"drop_lng": 43.744,
"drop_address": "corporis",
"rental_pack_id": 6
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success",
"data": {
"id": "068ecb7a-7198-4322-82b2-28c8e1c90f0a",
"request_number": "REQ_000002",
"is_later": 0,
"user_id": 15,
"trip_start_time": "5th Aug 09:54 PM",
"arrived_at": null,
"accepted_at": null,
"completed_at": "5th Aug 11:49 PM",
"is_driver_started": 0,
"is_driver_arrived": 0,
"is_trip_start": 0,
"is_completed": 1,
"is_cancelled": 0,
"cancel_method": "0",
"payment_opt": "1",
"is_paid": 1,
"user_rated": 0,
"driver_rated": 0,
"unit": "0",
"zone_type_id": "b0a3a2ce-d248-4767-adea-ae2932731436",
"vehicle_type_name": "Mini",
"pick_lat": 11.0797,
"pick_lng": 76.9997,
"drop_lat": 11.41157598,
"drop_lng": 76.77196096,
"pick_address": "gandhi puram",
"drop_address": "saravanm patti"
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Create Request
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/request/delivery/create" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"pick_lat\": 16.71207721,
\"pick_lng\": 87084.583066392,
\"vehicle_type\": \"aliquid\",
\"payment_opt\": \"ex\",
\"pick_address\": \"laboriosam\",
\"drivers\": \"quos\",
\"is_later\": \"reiciendis\",
\"trip_start_time\": \"dolorem\",
\"promocode_id\": \"esse\",
\"transport_type\": \"at\",
\"drop_lat\": 15773460.8523,
\"drop_lng\": 34063614.576,
\"pickup_poc_name\": \"consectetur\",
\"pickup_poc_mobile\": \"expedita\",
\"drop_poc_name\": \"qui\",
\"drop_poc_mobile\": \"provident\",
\"goods_type_id\": 12,
\"goods_type_quantity\": \"sequi\",
\"drop_address\": \"maiores\",
\"rental_pack_id\": 14
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/request/delivery/create"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"pick_lat": 16.71207721,
"pick_lng": 87084.583066392,
"vehicle_type": "aliquid",
"payment_opt": "ex",
"pick_address": "laboriosam",
"drivers": "quos",
"is_later": "reiciendis",
"trip_start_time": "dolorem",
"promocode_id": "esse",
"transport_type": "at",
"drop_lat": 15773460.8523,
"drop_lng": 34063614.576,
"pickup_poc_name": "consectetur",
"pickup_poc_mobile": "expedita",
"drop_poc_name": "qui",
"drop_poc_mobile": "provident",
"goods_type_id": 12,
"goods_type_quantity": "sequi",
"drop_address": "maiores",
"rental_pack_id": 14
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success",
"data": {
"id": "068ecb7a-7198-4322-82b2-28c8e1c90f0a",
"request_number": "REQ_000002",
"is_later": 0,
"user_id": 15,
"trip_start_time": "5th Aug 09:54 PM",
"arrived_at": null,
"accepted_at": null,
"completed_at": "5th Aug 11:49 PM",
"is_driver_started": 0,
"is_driver_arrived": 0,
"is_trip_start": 0,
"is_completed": 1,
"is_cancelled": 0,
"cancel_method": "0",
"payment_opt": "1",
"is_paid": 1,
"user_rated": 0,
"driver_rated": 0,
"unit": "0",
"zone_type_id": "b0a3a2ce-d248-4767-adea-ae2932731436",
"vehicle_type_name": "Mini",
"pick_lat": 11.0797,
"pick_lng": 76.9997,
"drop_lat": 11.41157598,
"drop_lng": 76.77196096,
"pick_address": "gandhi puram",
"drop_address": "saravanm patti"
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Change Drop Location on trip
requires authentication
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/request/change-drop-location" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"request_id\": \"non\",
\"drop_lat\": 131161152.1482838,
\"drop_lng\": 24980525.5224126,
\"drop_address\": \"vel\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/request/change-drop-location"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"request_id": "non",
"drop_lat": 131161152.1482838,
"drop_lng": 24980525.5224126,
"drop_address": "vel"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "drop_changed_successfully"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
User Cancel Request
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/request/cancel" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"request_id\": \"velit\",
\"reason\": \"quia\",
\"custom_reason\": \"id\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/request/cancel"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"request_id": "velit",
"reason": "quia",
"custom_reason": "id"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Respond For Bid ride
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/request/respond-for-bid" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/request/respond-for-bid"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success",
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update payment Method
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/request/user/payment-method" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/request/user/payment-method"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success",
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update payment Confirmation
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/request/user/payment-confirm" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/request/user/payment-confirm"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success",
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Calculate an Eta
requires authentication
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/request/eta" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"pick_lat\": 766616,
\"pick_lng\": 4638464,
\"drop_lat\": 0.783501881,
\"drop_lng\": 42303.0808,
\"vehicle_type\": \"iure\",
\"ride_type\": \"eaque\",
\"drivers\": \"autem\",
\"promo_code\": \"similique\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/request/eta"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"pick_lat": 766616,
"pick_lng": 4638464,
"drop_lat": 0.783501881,
"drop_lng": 42303.0808,
"vehicle_type": "iure",
"ride_type": "eaque",
"drivers": "autem",
"promo_code": "similique"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success",
"data": {
"zone_type_id": "9ea6f9a0-6fd2-4962-9d81-645e6301096f",
"name": "Mini",
"distance": 11.87,
"time": 55,
"base_distance": 5,
"base_price": 5,
"price_per_distance": 5,
"price_per_time": 5,
"distance_price": 59.36,
"time_price": 148.83333333333331,
"ride_fare": 213.19333333333333,
"tax_amount": 63.958,
"tax": "30",
"total": 277.15133333333335,
"approximate_value": 1,
"min_amount": 277.15133333333335,
"max_amount": 291.00890000000004,
"currency": null,
"type_name": "Mini",
"unit": null,
"unit_in_words_without_lang": "km",
"unit_in_words": "km",
"driver_arival_estimation": "23 min"
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
List Recent Searches
requires authentication
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/request/list-recent-searches" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/request/list-recent-searches"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "Listed Recent Searches Successfully",
"data": [
{
"id": 108,
"user_id": 9,
"pick_lat": 11.05894918,
"pick_lng": 76.99666478,
"drop_lat": 11.0788511,
"drop_lng": 76.9399321,
"pick_address": "265 Saravanampatti Siranandha Puram Tamil Nadu, India",
"pick_short_address": "265 Saravanampatti Siranandha Puram Tamil Nadu",
"drop_address": "Vijay Surya Residency, Kanuvai - Thudiyalur Road, Thudiyalur, Tamil Nadu, India",
"drop_short_address": "Vijay Surya Residency",
"pickup_poc_name": null,
"pickup_poc_mobile": null,
"pickup_poc_instruction": null,
"drop_poc_name": null,
"drop_poc_mobile": null,
"drop_poc_instruction": null,
"total_distance": 10282,
"total_time": 25,
"poly_line": "c}nbAcl}tMB}@mAm@aAc@DOPJxBfAfBx@dCnApFbCvChAnHxCtClAfDtAfAn@f@b@V^LRT`@Zp@T~@l@zCWR@r@TxAl@`Cp@|FzA`LbA|IDzAB~BVnBJjAh@`F?ZEb@?b@FXd@`BdAbD~@tBTp@`AnCNf@BZJj@l@jEv@jG@f@Gt@KlAA~@M|@Kd@SfAQ|@Cd@Hv@dAzETfA@XOz@Q~BE\\GfAI|B?d@JLFPBXCbBE~@?NBXFHN\\HXBLD^@pAD`@LrAX~@`@z@bBfD\\x@h@|D^rBl@~BDj@@tBDh@JXLL?THPTRRRBRAv@@zB@xDC~BEhBIt@WlAk@fB_@|@KHY@K@UJEN@x@D`BThCTxA@ZKbA]~ASv@E`@ChBA\\BRRtAD\\@~@?fACpAA~@ATEvA@dCG|EwG@sABi@D}@NmATi@Du@DKAGAaANkBZiDr@iB\\y@J{BPkEXkJj@_FReCRaEr@mDr@mCl@}Dv@uC`@mC^iHx@iKfAwJfAaFr@sG|@{Fd@aFX}EPuETaETwGXiETsELQ?J|AD`@f@hE",
"transport_type": "taxi",
"searchStops": {
"data": []
}
}
]
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get Directions
requires authentication
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/request/get-directions" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"pick_lat\": 459598285.26,
\"pick_lng\": 0,
\"drop_lat\": 19215620.93,
\"drop_lng\": 1.297914999
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/request/get-directions"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"pick_lat": 459598285.26,
"pick_lng": 0,
"drop_lat": 19215620.93,
"drop_lng": 1.297914999
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
x"success": true,
x"message": "success",
x"points": "snrbAmaauM"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Calculate an Eta
requires authentication
Example request:
curl --request POST \
"http://localhost/new_vue_tagxi/public/api/v1/dispatcher/request/eta" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"pick_lat\": 267.5,
\"pick_lng\": 2.48736294,
\"drop_lat\": 128034.43804,
\"drop_lng\": 7552.1169,
\"vehicle_type\": \"ipsa\",
\"ride_type\": \"repudiandae\",
\"drivers\": \"dolorem\",
\"promo_code\": \"quia\"
}"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/dispatcher/request/eta"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"pick_lat": 267.5,
"pick_lng": 2.48736294,
"drop_lat": 128034.43804,
"drop_lng": 7552.1169,
"vehicle_type": "ipsa",
"ride_type": "repudiandae",
"drivers": "dolorem",
"promo_code": "quia"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success",
"data": {
"zone_type_id": "9ea6f9a0-6fd2-4962-9d81-645e6301096f",
"name": "Mini",
"distance": 11.87,
"time": 55,
"base_distance": 5,
"base_price": 5,
"price_per_distance": 5,
"price_per_time": 5,
"distance_price": 59.36,
"time_price": 148.83333333333331,
"ride_fare": 213.19333333333333,
"tax_amount": 63.958,
"tax": "30",
"total": 277.15133333333335,
"approximate_value": 1,
"min_amount": 277.15133333333335,
"max_amount": 291.00890000000004,
"currency": null,
"type_name": "Mini",
"unit": null,
"unit_in_words_without_lang": "km",
"unit_in_words": "km",
"driver_arival_estimation": "23 min"
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Vehicle Management
APIs for Vehicle-Types
Get all vehicle types by geo location
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/types/at/harum" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/types/at/harum"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success",
"data": [
{
"id": "9ea6f9a0-6fd2-4962-9d81-645e6301096f",
"name": "Mini",
"icon": null,
"capacity": 4,
"is_accept_share_ride": 0,
"active": 1,
"created_at": "2020-02-13 09:06:39",
"updated_at": "2020-02-13 09:06:39",
"deleted_at": null
}
]
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get all vehicle types by geo location along with prcing detail
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/types/by-location/61/36504" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/types/by-location/61/36504"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success",
"data": [
{
"id": "b0a3a2ce-d248-4767-adea-ae2932731436",
"type_id": "9ea6f9a0-6fd2-4962-9d81-645e6301096f",
"name": "Mini",
"icon": null,
"capacity": 4,
"is_accept_share_ride": 0,
"active": 1,
"currency": "₹",
"unit": 2,
"unit_in_words": "Km",
"payment_type": [
"card",
"cash",
"wallet"
],
"zoneTypePrice": {
"data": [
{
"id": "11528694-90c4-42fb-bf3b-f571e3790d0f",
"type_id": "b0a3a2ce-d248-4767-adea-ae2932731436",
"price_type": 1,
"admin_commission_type": "percentage",
"admin_commission": "30",
"base_price": 5,
"price_per_distance": 5,
"base_distance": 5,
"price_per_time": 5,
"waiting_charge": 5,
"cancellation_fee": 5
},
{
"id": "e5953df8-2b98-459d-ad79-c27a185b7d13",
"type_id": "b0a3a2ce-d248-4767-adea-ae2932731436",
"price_type": 2,
"admin_commission_type": "percentage",
"admin_commission": "30",
"base_price": 5,
"price_per_distance": 5,
"base_distance": 9,
"price_per_time": 5,
"waiting_charge": 5,
"cancellation_fee": 5
}
]
}
}
]
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get App Modules
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/common/modules" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/common/modules"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success",
"enable_owner_login": "1",
"enable_email_otp": "1",
"enable_user_referral_earnings": null,
"enable_driver_referral_earnings": null,
"firebase_otp_enabled": false
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Test Api
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/common/test-api" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/common/test-api"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
Show headers
cache-control: no-cache, private
content-type: application/json
link: <http://localhost/new_vue_tagxi/public/build/assets/vendor-f749f9ab.css>; rel="preload"; as="style", <http://localhost/new_vue_tagxi/public/build/assets/app-5dc46014.css>; rel="preload"; as="style", <http://localhost/new_vue_tagxi/public/build/assets/404-8c21c3cf.css>; rel="preload"; as="style", <http://localhost/new_vue_tagxi/public/build/assets/app-e076d658.js>; rel="modulepreload", <http://localhost/new_vue_tagxi/public/build/assets/vendor-b6e68d09.js>; rel="modulepreload", <http://localhost/new_vue_tagxi/public/build/assets/404-36789bcd.js>; rel="modulepreload", <http://localhost/new_vue_tagxi/public/build/assets/error-ff2a41aa.js>; rel="modulepreload"
vary: X-Inertia
set-cookie: XSRF-TOKEN=eyJpdiI6ImlBTkdDRHV6WWxqQm55WllVSXpTMmc9PSIsInZhbHVlIjoib3B3N3NYSXRiWVZSQzgzS3h3VzJWejZEdFpOczh0T094NEdQVlc3Um9KS1gzQm9ERXg4MHhWcHBJUHExTlBCOTRLaFIzdENYOU5PMGNtMTIySDNmU1J1Q2pKRUpxTXlFOEh1cFV3Q1V4K1gxSmxJTmszbUJ4VTYzKzIycVF3N1IiLCJtYWMiOiIyYmZlMDFjZWE2ZDExZGJhY2VjZjgxNjczMDhhMmI0MmZhZDExNTJmZTk5MmEyMWVhZGM0OTYwNDM5NWQ0YjQ3IiwidGFnIjoiIn0%3D; expires=Tue, 26 Nov 2024 11:37:51 GMT; Max-Age=7200; path=/; samesite=lax; vuetaxi_session=eyJpdiI6InVXa3VFSWd4c21udlozTU1TVmVmMkE9PSIsInZhbHVlIjoicmgxalVUekRNVElVNUdFbG0ydEVoMmdIQ1Awb1pKWk1rZUhyVkNCZTBYOFJXY29KVHdPV1FQck5kajVLbTU4ejZ4aGd4NjNsWVRwWk5rUmtTaUFiTGc1U00yemM0TWFSZmtYRGJYYVozb1d3WkZnTkRoS2xsRE94d3dTbmhyMEwiLCJtYWMiOiJjMWYyMTE0MmI3N2U3NmVjZGU1NmMzYzNjZmI1OWJiMGJlYTkzNzgyNTcxZjM4OWI3YzFjMTYzYWI0MWVjMGYyIiwidGFnIjoiIn0%3D; expires=Tue, 26 Nov 2024 11:37:51 GMT; Max-Age=7200; path=/; httponly; samesite=lax
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title inertia>Misoftwares</title>
<meta name="description"
content="Taxi App - Fast, Safe, and Convenient Rides at Your Fingertips">
<meta name="keywords"
content="Taxi booking app admin panel,Taxi fleet management software,Taxi service admin panel features,Real-time taxi management dashboard">
<meta name="author" content="Misoftwares">
<!-- Social Media Meta Tags -->
<meta property="og:title" content="Misoftwares - Inertia + Vue & Laravel Admin & Dashboard Template">
<meta property="og:description"
content="Simplify web application development with Misoftwares, a feature-rich taxi app admin and dashboard template built with Inertia.js, Vue.js, and Laravel.">
<meta property="og:image" content="URL to the template's logo or featured image">
<meta property="og:url" content="URL to the template's webpage">
<meta name="twitter:card" content="summary_large_image">
<!-- App favicon -->
<!-- <link rel="shortcut icon" href="http://localhost/new_vue_tagxi/public/image/favicon.ico"> -->
<link rel="shortcut icon" id="dynamic-favicon" href="">
<!-- Firebase SDK -->
<!-- Use the Firebase 8.x version for CommonJS support -->
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-database.js"></script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/select2@4.1.0-beta.1/dist/css/select2.min.css" rel="stylesheet" />
<script src="https://cdn.jsdelivr.net/npm/select2@4.1.0-beta.1/dist/js/select2.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/driver.js@1.0.1/dist/driver.js.iife.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/driver.js@1.0.1/dist/driver.css"/>
<!-- Scripts -->
<script type="text/javascript">
(function () {
const routes = {"admin-login":{"uri":"login","methods":["POST"]},"logout":{"uri":"logout","methods":["POST"]},"password.request":{"uri":"forgot-password","methods":["GET","HEAD"]},"password.reset":{"uri":"reset-password\/{token}","methods":["GET","HEAD"],"parameters":["token"]},"password.email":{"uri":"forgot-password","methods":["POST"]},"password.update":{"uri":"reset-password","methods":["POST"]},"register":{"uri":"register","methods":["GET","HEAD"]},"verification.notice":{"uri":"email\/verify","methods":["GET","HEAD"]},"verification.verify":{"uri":"email\/verify\/{id}\/{hash}","methods":["GET","HEAD"],"parameters":["id","hash"]},"verification.send":{"uri":"email\/verification-notification","methods":["POST"]},"user-profile-information.update":{"uri":"user\/profile-information","methods":["PUT"]},"user-password.update":{"uri":"user\/password","methods":["PUT"]},"password.confirmation":{"uri":"user\/confirmed-password-status","methods":["GET","HEAD"]},"password.confirm":{"uri":"user\/confirm-password","methods":["POST"]},"two-factor.login":{"uri":"two-factor-challenge","methods":["GET","HEAD"]},"two-factor.enable":{"uri":"user\/two-factor-authentication","methods":["POST"]},"two-factor.confirm":{"uri":"user\/confirmed-two-factor-authentication","methods":["POST"]},"two-factor.disable":{"uri":"user\/two-factor-authentication","methods":["DELETE"]},"two-factor.qr-code":{"uri":"user\/two-factor-qr-code","methods":["GET","HEAD"]},"two-factor.secret-key":{"uri":"user\/two-factor-secret-key","methods":["GET","HEAD"]},"two-factor.recovery-codes":{"uri":"user\/two-factor-recovery-codes","methods":["GET","HEAD"]},"terms.show":{"uri":"terms-of-service","methods":["GET","HEAD"]},"policy.show":{"uri":"privacy-policy","methods":["GET","HEAD"]},"profile.show":{"uri":"user\/profile","methods":["GET","HEAD"]},"other-browser-sessions.destroy":{"uri":"user\/other-browser-sessions","methods":["DELETE"]},"current-user-photo.destroy":{"uri":"user\/profile-photo","methods":["DELETE"]},"current-user.destroy":{"uri":"user","methods":["DELETE"]},"api-tokens.index":{"uri":"user\/api-tokens","methods":["GET","HEAD"]},"api-tokens.store":{"uri":"user\/api-tokens","methods":["POST"]},"api-tokens.update":{"uri":"user\/api-tokens\/{token}","methods":["PUT"],"parameters":["token"]},"api-tokens.destroy":{"uri":"user\/api-tokens\/{token}","methods":["DELETE"],"parameters":["token"]},"sanctum.csrf-cookie":{"uri":"sanctum\/csrf-cookie","methods":["GET","HEAD"]},"ignition.healthCheck":{"uri":"_ignition\/health-check","methods":["GET","HEAD"]},"ignition.executeSolution":{"uri":"_ignition\/execute-solution","methods":["POST"]},"ignition.updateConfig":{"uri":"_ignition\/update-config","methods":["POST"]},"privacy-content":{"uri":"api\/privacy-content","methods":["GET","HEAD"]},"terms-content":{"uri":"api\/terms-content","methods":["GET","HEAD"]},"compliance-content":{"uri":"api\/compliance-content","methods":["GET","HEAD"]},"dmv-content":{"uri":"api\/dmv-content","methods":["GET","HEAD"]},"view-countries":{"uri":"countries","methods":["GET","HEAD"]},"list-countries":{"uri":"countries-list","methods":["GET","HEAD"]},"languages.index":{"uri":"languages","methods":["GET","HEAD"]},"languages.create":{"uri":"languages\/create","methods":["GET","HEAD"]},"languages.list":{"uri":"languages\/list","methods":["GET","HEAD"]},"languages.browse":{"uri":"languages\/browse\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"languages.store":{"uri":"languages\/store","methods":["POST"]},"language.update":{"uri":"languages\/update\/{language}","methods":["PUT"],"parameters":["language"]},"current-languages":{"uri":"current-languages","methods":["GET","HEAD"]},"current-locations":{"uri":"current-locations","methods":["GET","HEAD"]},"current-notifications":{"uri":"current-notifications","methods":["GET","HEAD"]},"read-notifications":{"uri":"mark-notification-as-read","methods":["POST"]},"spa-user-login":{"uri":"user\/login","methods":["POST"]},"spa-owner-login":{"uri":"owner-login","methods":["POST"]},"owner-login":{"uri":"owner-login","methods":["GET","HEAD"]},"user-register":{"uri":"user\/register","methods":["POST"]},"dashboard":{"uri":"dashboard","methods":["GET","HEAD"]},"owner.dashboard":{"uri":"owner-dashboard","methods":["GET","HEAD"]},"dashboard-todayEarnings":{"uri":"dashboard\/today-earnings","methods":["GET","HEAD"]},"dashboard-overallEarnings":{"uri":"dashboard\/overall-earnings","methods":["GET","HEAD"]},"dashboard-cancelChart":{"uri":"dashboard\/cancel-chart","methods":["GET","HEAD"]},"serviceLocation.dashboard":{"uri":"dashboard\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"owner.IndividualDashboard":{"uri":"individual-owner-dashboard","methods":["GET","HEAD"]},"servicelocation.index":{"uri":"service-locations","methods":["GET","HEAD"]},"fleet-login":{"uri":"owner\/login","methods":["POST"]},"roles.index":{"uri":"roles","methods":["GET","HEAD"]},"roles.list":{"uri":"roles\/list","methods":["GET","HEAD"]},"roles.store":{"uri":"roles","methods":["POST"]},"roles.update":{"uri":"roles\/{role}","methods":["PUT"],"parameters":["role"],"bindings":{"role":"id"}},"permission.index":{"uri":"permissions\/{permission}","methods":["GET","HEAD"],"parameters":["permission"]},"permission.store":{"uri":"permissions\/{role}","methods":["POST"],"parameters":["role"]},"roles1.index":{"uri":"roles1","methods":["GET","HEAD"]},"roles1.list":{"uri":"roles1\/list","methods":["GET","HEAD"]},"roles1.store":{"uri":"roles1","methods":["POST"]},"roles1.update":{"uri":"roles1\/update\/{role}","methods":["PUT"],"parameters":["role"],"bindings":{"role":"id"}},"role1.import":{"uri":"roles1\/import-csv","methods":["POST"]},"service-location-list":{"uri":"service-locations\/list","methods":["GET","HEAD"]},"servicelocation.create":{"uri":"service-locations\/create","methods":["GET","HEAD"]},"servicelocation.edit":{"uri":"service-locations\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"servicelocation.store":{"uri":"service-locations\/store","methods":["POST"]},"servicelocation.update":{"uri":"service-locations\/update\/{location}","methods":["POST"],"parameters":["location"],"bindings":{"location":"id"}},"servicelocation.toggle":{"uri":"service-locations\/toggle\/{location}","methods":["POST"],"parameters":["location"],"bindings":{"location":"id"}},"servicelocation.delete":{"uri":"service-locations\/delete\/{location}","methods":["DELETE"],"parameters":["location"],"bindings":{"location":"id"}},"rentalpackagetype.index":{"uri":"rental-package-types","methods":["GET","HEAD"]},"rentalpackagetype.create":{"uri":"rental-package-types\/create","methods":["GET","HEAD"]},"rentalpackagetype.store":{"uri":"rental-package-types\/store","methods":["POST"]},"rentalpackagetype.list":{"uri":"rental-package-types\/list","methods":["GET","HEAD"]},"rentalpackagetype.edit":{"uri":"rental-package-types\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"rentalpackagetype.update":{"uri":"rental-package-types\/update\/{packageType}","methods":["POST"],"parameters":["packageType"],"bindings":{"packageType":"id"}},"rentalpackagetype.updateStatus":{"uri":"rental-package-types\/update-status","methods":["POST"]},"rentalpackagetype.delete":{"uri":"rental-package-types\/delete\/{packageType}","methods":["DELETE"],"parameters":["packageType"],"bindings":{"packageType":"id"}},"category.index":{"uri":"category","methods":["GET","HEAD"]},"category.create":{"uri":"category\/create","methods":["GET","HEAD"]},"category.store":{"uri":"category\/store","methods":["POST"]},"category.list":{"uri":"category\/list","methods":["GET","HEAD"]},"category.edit":{"uri":"category\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"category.update":{"uri":"category\/update\/{category}","methods":["POST"],"parameters":["category"]},"category.updateStatus":{"uri":"category\/update-status","methods":["POST"]},"category.delete":{"uri":"category\/delete\/{category}","methods":["DELETE"],"parameters":["category"]},"setprice.index":{"uri":"set-prices","methods":["GET","HEAD"]},"setprice.create":{"uri":"set-prices\/create","methods":["GET","HEAD"]},"setprice.vehiclelist":{"uri":"set-prices\/vehicle_types","methods":["GET","HEAD"]},"setprice.store":{"uri":"set-prices\/store","methods":["POST"]},"setprice.list":{"uri":"set-prices\/list","methods":["GET","HEAD"]},"setprice.edit":{"uri":"set-prices\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"setprice.update":{"uri":"set-prices\/update\/{zoneTypePrice}","methods":["POST"],"parameters":["zoneTypePrice"],"bindings":{"zoneTypePrice":"id"}},"setprice.delete":{"uri":"set-prices\/delete\/{id}","methods":["DELETE"],"parameters":["id"]},"setprice.updateStatus":{"uri":"set-prices\/update-status","methods":["POST"]},"setprice.packageIndex":{"uri":"set-prices\/packages\/{zoneType}","methods":["GET","HEAD"],"parameters":["zoneType"],"bindings":{"zoneType":"id"}},"setprice.packageList":{"uri":"set-prices\/packages\/list\/{zoneTypePrice}","methods":["GET","HEAD"],"parameters":["zoneTypePrice"],"bindings":{"zoneTypePrice":"id"}},"setprice.package-create":{"uri":"set-prices\/packages\/create\/{zoneTypePrice}","methods":["GET","HEAD"],"parameters":["zoneTypePrice"],"bindings":{"zoneTypePrice":"id"}},"setprice.packageStore":{"uri":"set-prices\/packages\/store","methods":["POST"]},"setprice.package-edit":{"uri":"set-prices\/packages\/edit\/{zoneTypePackage}","methods":["GET","HEAD"],"parameters":["zoneTypePackage"],"bindings":{"zoneTypePackage":"id"}},"setprice.package-update":{"uri":"set-prices\/packages\/update\/{zoneTypePackage}","methods":["POST"],"parameters":["zoneTypePackage"],"bindings":{"zoneTypePackage":"id"}},"setprice.package-delete":{"uri":"set-prices\/packages\/delete\/{zoneTypePackage}","methods":["DELETE"],"parameters":["zoneTypePackage"],"bindings":{"zoneTypePackage":"id"}},"setprice.updatePackageStatus":{"uri":"set-prices\/packages\/update-status","methods":["POST"]},"vehicletype.index":{"uri":"vehicle_type","methods":["GET","HEAD"]},"vehicletype.create":{"uri":"vehicle_type\/create","methods":["GET","HEAD"]},"vehicletype.store":{"uri":"vehicle_type\/store","methods":["POST"]},"vehicletype.list":{"uri":"vehicle_type\/list","methods":["GET","HEAD"]},"vehicletype.edit":{"uri":"vehicle_type\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"vehicletype.update":{"uri":"vehicle_type\/update\/{vehicle_type}","methods":["POST"],"parameters":["vehicle_type"],"bindings":{"vehicle_type":"id"}},"vehicletype.delete":{"uri":"vehicle_type\/delete\/{vehicle_type}","methods":["DELETE"],"parameters":["vehicle_type"],"bindings":{"vehicle_type":"id"}},"vehicletype.updateStatus":{"uri":"vehicle_type\/update-status","methods":["POST"]},"vehicletype.getCategory":{"uri":"vehicle_type\/getCategory","methods":["GET","HEAD"]},"vehiclemodel.index":{"uri":"vehicle-model","methods":["GET","HEAD"]},"vehiclemodel.create":{"uri":"vehicle-model\/create","methods":["GET","HEAD"]},"vehiclemodel.update":{"uri":"vehicle-model\/update","methods":["GET","HEAD"]},"vehiclemodel.test":{"uri":"vehicle-model\/test-url","methods":["GET","HEAD"]},"sos.index":{"uri":"sos","methods":["GET","HEAD"]},"sos.list":{"uri":"sos\/list","methods":["GET","HEAD"]},"sos.create":{"uri":"sos\/create","methods":["GET","HEAD"]},"sos.store":{"uri":"sos\/store","methods":["POST"]},"sos.edit":{"uri":"sos\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"sos.update":{"uri":"sos\/update\/{sos}","methods":["POST"],"parameters":["sos"],"bindings":{"sos":"id"}},"sos.updateStatus":{"uri":"sos\/update-status","methods":["POST"]},"sos.delete":{"uri":"sos\/delete\/{sos}","methods":["DELETE"],"parameters":["sos"],"bindings":{"sos":"id"}},"bank.index":{"uri":"driver-bank-info","methods":["GET","HEAD"]},"bank.list":{"uri":"driver-bank-info\/list","methods":["GET","HEAD"]},"bank.create":{"uri":"driver-bank-info\/create","methods":["GET","HEAD"]},"bank.store":{"uri":"driver-bank-info\/store","methods":["POST"]},"bank.edit":{"uri":"driver-bank-info\/edit\/{method}","methods":["GET","HEAD"],"parameters":["method"]},"bank.update":{"uri":"driver-bank-info\/update\/{method}","methods":["POST"],"parameters":["method"],"bindings":{"method":"id"}},"bank.updateStatus":{"uri":"driver-bank-info\/update-status","methods":["POST"]},"bank.delete":{"uri":"driver-bank-info\/delete\/{method}","methods":["DELETE"],"parameters":["method"],"bindings":{"method":"id"}},"promocode.index":{"uri":"promo-code","methods":["GET","HEAD"]},"promocode.list":{"uri":"promo-code\/list","methods":["GET","HEAD"]},"promocode.userList":{"uri":"promo-code\/userList","methods":["GET","HEAD"]},"promocode.create":{"uri":"promo-code\/create","methods":["GET","HEAD"]},"promocode.store":{"uri":"promo-code\/store","methods":["POST"]},"promocode.edit":{"uri":"promo-code\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"promocode.fetchServiceLocation":{"uri":"promo-code\/fetch","methods":["GET","HEAD"]},"promocode.update":{"uri":"promo-code\/update\/{promo}","methods":["POST"],"parameters":["promo"]},"promocode.delete":{"uri":"promo-code\/delete\/{promo}","methods":["DELETE"],"parameters":["promo"],"bindings":{"promo":"id"}},"promocode.updateStatus":{"uri":"promo-code\/update-status","methods":["POST"]},"pushnotification.index":{"uri":"push-notifications","methods":["GET","HEAD"]},"pushnotification.create":{"uri":"push-notifications\/create","methods":["GET","HEAD"]},"pushnotification.list":{"uri":"push-notifications\/list","methods":["GET","HEAD"]},"pushnotification.edit":{"uri":"push-notifications\/edit\/{notification}","methods":["GET","HEAD"],"parameters":["notification"],"bindings":{"notification":"id"}},"pushnotification.delete":{"uri":"push-notifications\/delete\/{notification}","methods":["DELETE"],"parameters":["notification"],"bindings":{"notification":"id"}},"pushnotification.send-push":{"uri":"push-notifications\/send-push","methods":["POST"]},"pushnotification.update":{"uri":"push-notifications\/update","methods":["POST"]},"cancellation.index":{"uri":"cancellation","methods":["GET","HEAD"]},"cancellation.list":{"uri":"cancellation\/list","methods":["GET","HEAD"]},"cancellation.create":{"uri":"cancellation\/create","methods":["GET","HEAD"]},"cancellation.store":{"uri":"cancellation\/store","methods":["POST"]},"cancellation.edit":{"uri":"cancellation\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"cancellation.update":{"uri":"cancellation\/update\/{cancellationReason}","methods":["POST"],"parameters":["cancellationReason"],"bindings":{"cancellationReason":"id"}},"cancellation.updateStatus":{"uri":"cancellation\/update-status","methods":["POST"]},"cancellation.delete":{"uri":"cancellation\/delete\/{cancellationReason}","methods":["DELETE"],"parameters":["cancellationReason"],"bindings":{"cancellationReason":"id"}},"faq.index":{"uri":"faq","methods":["GET","HEAD"]},"faq.list":{"uri":"faq\/list","methods":["GET","HEAD"]},"faq.create":{"uri":"faq\/create","methods":["GET","HEAD"]},"faq.store":{"uri":"faq\/store","methods":["POST"]},"faq.edit":{"uri":"faq\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"faq.update":{"uri":"faq\/update\/{faq}","methods":["POST"],"parameters":["faq"],"bindings":{"faq":"id"}},"faq.updateStatus":{"uri":"faq\/update-status","methods":["POST"]},"faq.delete":{"uri":"faq\/delete\/{faq}","methods":["DELETE"],"parameters":["faq"],"bindings":{"faq":"id"}},"complainttitle.index":{"uri":"complaint-title","methods":["GET","HEAD"]},"complainttitle.create":{"uri":"complaint-title\/create","methods":["GET","HEAD"]},"complainttitle.list":{"uri":"complaint-title\/list","methods":["GET","HEAD"]},"complainttitle.store":{"uri":"complaint-title\/store","methods":["POST"]},"complainttitle.edit":{"uri":"complaint-title\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"complainttitle.update":{"uri":"complaint-title\/update\/{complaintTitle}","methods":["POST"],"parameters":["complaintTitle"],"bindings":{"complaintTitle":"id"}},"complainttitle.updateStatus":{"uri":"complaint-title\/update-status","methods":["POST"]},"complainttitle.delete":{"uri":"complaint-title\/delete\/{complaintTitle}","methods":["DELETE"],"parameters":["complaintTitle"],"bindings":{"complaintTitle":"id"}},"drivergeneralcomplaint.driverGeneralComplaint":{"uri":"driver-complaint\/general-complaint","methods":["GET","HEAD"]},"driverGeneralComplaint.listComplaint":{"uri":"driver-complaint\/list","methods":["GET","HEAD"]},"driverGeneralComplaint.taken":{"uri":"driver-complaint\/taken\/{complaint}","methods":["GET","HEAD"],"parameters":["complaint"],"bindings":{"complaint":"id"}},"driverrequestcomplaint.driverRequestComplaint":{"uri":"driver-complaint\/request-complaint","methods":["GET","HEAD"]},"driverrequestcomplaint.requestListComplaint":{"uri":"driver-complaint\/driver-request-list","methods":["GET","HEAD"]},"usergeneralcomplaint.userGeneralComplaint":{"uri":"user-complaint\/general-complaint","methods":["GET","HEAD"]},"usergeneralcomplaint.listComplaint":{"uri":"user-complaint\/list","methods":["GET","HEAD"]},"usergeneralcomplaint.taken":{"uri":"user-complaint\/taken\/{complaint}","methods":["GET","HEAD"],"parameters":["complaint"],"bindings":{"complaint":"id"}},"userrequestcomplaint.userRequestComplaint":{"uri":"user-complaint\/request-complaint","methods":["GET","HEAD"]},"usergeneralcomplaint.requestComplaint":{"uri":"user-complaint\/request-list","methods":["GET","HEAD"]},"ownergeneralcomplaint.ownerGeneralComplaint":{"uri":"owner-complaint\/general-complaint","methods":["GET","HEAD"]},"ownergeneralcomplaint.listComplaint":{"uri":"owner-complaint\/list","methods":["GET","HEAD"]},"ownergeneralcomplaint.taken":{"uri":"owner-complaint\/taken\/{complaint}","methods":["GET","HEAD"],"parameters":["complaint"],"bindings":{"complaint":"id"}},"ownerrequestcomplaint.ownerRequestComplaint":{"uri":"owner-complaint\/request-complaint","methods":["GET","HEAD"]},"ownerrequestcomplaint.requestComplaint":{"uri":"owner-complaint\/request-list","methods":["GET","HEAD"]},"dispatch.index":{"uri":"dispatch","methods":["GET","HEAD"]},"dispatch.userRequestComplaint":{"uri":"dispatch\/request-complaint","methods":["GET","HEAD"]},"paymentgateway.index":{"uri":"payment-gateway","methods":["GET","HEAD"]},"paymentgateway.update":{"uri":"payment-gateway\/update","methods":["POST"]},"paymentgateway.updateStatus":{"uri":"payment-gateway\/update-statuss","methods":["POST"]},"smsgateway.index":{"uri":"sms-gateway","methods":["GET","HEAD"]},"firebase.index":{"uri":"firebase","methods":["GET","HEAD"]},"firebase.get":{"uri":"firebase\/get","methods":["GET","HEAD"]},"map.settings":{"uri":" map-settings","methods":["GET","HEAD"]},"mailconfiguration.index":{"uri":"mail-configuration","methods":["GET","HEAD"]},"mapapis.index":{"uri":"map-apis","methods":["GET","HEAD"]},"recaptcha.index":{"uri":"recaptcha","methods":["GET","HEAD"]},"mail-template.index":{"uri":"mail-template","methods":["GET","HEAD"]},"mail-template.create":{"uri":"mail-template\/create","methods":["GET","HEAD"]},"mail-template.list":{"uri":"mail-template\/list","methods":["GET","HEAD"]},"mail-template.store":{"uri":"mail-template\/store","methods":["POST"]},"mail-template.edit":{"uri":"mail-template\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"mail-template.update":{"uri":"mail-template\/update\/{emails}","methods":["POST"],"parameters":["emails"],"bindings":{"emails":"id"}},"mail-template.destroy":{"uri":"mail-template\/delete\/{emails}","methods":["DELETE"],"parameters":["emails"],"bindings":{"emails":"id"}},"map.heatmap":{"uri":"map\/heat_map","methods":["GET","HEAD"]},"map.godseye":{"uri":"map\/gods_eye","methods":["GET","HEAD"]},"map.openGodseye":{"uri":"map\/open_gods_eye","methods":["GET","HEAD"]},"approveddriver.Index":{"uri":"approved-drivers","methods":["GET","HEAD"]},"approveddriver.create":{"uri":"approved-drivers\/create","methods":["GET","HEAD"]},"approveddriver.store":{"uri":"approved-drivers\/store","methods":["POST"]},"approveddriver.edit":{"uri":"approved-drivers\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"approveddriver.update":{"uri":"approved-drivers\/update\/{driver}","methods":["POST"],"parameters":["driver"],"bindings":{"driver":"id"}},"approveddriver.disapprove":{"uri":"approved-drivers\/disapprove\/{driver}","methods":["POST"],"parameters":["driver"],"bindings":{"driver":"id"}},"approveddriver.viewProfile":{"uri":"approved-drivers\/view-profile\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"approveddriver.uploadDocument":{"uri":"approved-drivers\/document-upolad","methods":["GET","HEAD"]},"approveddriver.checkMobileExists":{"uri":"approved-drivers\/check-mobile\/{mobile}\/{driverId}","methods":["GET","HEAD"],"parameters":["mobile","driverId"]},"approveddriver.checkEmailExists":{"uri":"approved-drivers\/check-email\/{email}\/{driverId}","methods":["GET","HEAD"],"parameters":["email","driverId"]},"approveddriver.list":{"uri":"approved-drivers\/list","methods":["GET","HEAD"]},"approveddriver.ViewDocument":{"uri":"approved-drivers\/document\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"approveddriver.listDocument":{"uri":"approved-drivers\/document\/list\/{driverId}","methods":["GET","HEAD"],"parameters":["driverId"]},"approveddriver.documentUpload":{"uri":"approved-drivers\/document-upload\/{document}\/{driverId}","methods":["GET","HEAD"],"parameters":["document","driverId"],"bindings":{"document":"id","driverId":"id"}},"approveddriver.documentUploadStore":{"uri":"approved-drivers\/document-upload\/{document}\/{driverId}","methods":["POST"],"parameters":["document","driverId"],"bindings":{"document":"id","driverId":"id"}},"approveddriver.approveDriverDocument":{"uri":"approved-drivers\/document-toggle\/{documentId}\/{driverId}\/{status}","methods":["GET","HEAD"],"parameters":["documentId","driverId","status"]},"approveddriver.addAmount":{"uri":"approved-drivers\/wallet-add-amount\/{driver}","methods":["POST"],"parameters":["driver"],"bindings":{"driver":"id"}},"approveddriver.walletHistoryList":{"uri":"approved-drivers\/wallet-history\/list\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"approveddrivers.requestList":{"uri":"approved-drivers\/request\/list\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"pendingdriver.indexIndex":{"uri":"pending-drivers","methods":["GET","HEAD"]},"driverlevelup.index":{"uri":"drivers-levelup","methods":["GET","HEAD"]},"driverlevelup.list":{"uri":"drivers-levelup\/list","methods":["GET","HEAD"]},"approveddriver.driverLeveStore":{"uri":"drivers-levelup\/store","methods":["POST"]},"driverlevelup.edit":{"uri":"drivers-levelup\/edit\/{level}","methods":["GET","HEAD"],"parameters":["level"],"bindings":{"level":"id"}},"driverlevelup.settingsUpdate":{"uri":"drivers-levelup\/settingsUpdate","methods":["POST"]},"approveddriver.driverLevelUpdate":{"uri":"drivers-levelup\/update\/{level}","methods":["POST"],"parameters":["level"],"bindings":{"level":"id"}},"approveddriver.driverLevelDelete":{"uri":"drivers-levelup\/delete\/{level}","methods":["DELETE"],"parameters":["level"],"bindings":{"level":"id"}},"driverlevelup.create":{"uri":"drivers-levelup\/create","methods":["GET","HEAD"]},"driversrating.driverRatingIndex":{"uri":"drivers-rating","methods":["GET","HEAD"]},"driversrating.list":{"uri":"drivers-rating\/list","methods":["GET","HEAD"]},"driversrating.viewDriverRating":{"uri":"drivers-rating\/view-profile\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"driversRequestRating.history":{"uri":"drivers-rating\/request-list\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"deleterequestdrivers.index":{"uri":"delete-request-drivers","methods":["GET","HEAD"]},"deleterequestdrivers.list":{"uri":"delete-request-drivers\/list","methods":["GET","HEAD"]},"deleterequestdrivers.destroyDriver":{"uri":"delete-request-drivers\/delete\/{driver}","methods":["DELETE"],"parameters":["driver"],"bindings":{"driver":"id"}},"driverneededdocuments.Index":{"uri":"driver-needed-documents","methods":["GET","HEAD"]},"driverneededdocuments.list":{"uri":"driver-needed-documents\/list","methods":["GET","HEAD"]},"driverneededdocuments.Create":{"uri":"driver-needed-documents\/create","methods":["GET","HEAD"]},"driverneededdocuments.store":{"uri":"driver-needed-documents\/store","methods":["POST"]},"driverneededdocuments.Update":{"uri":"driver-needed-documents\/update\/{driverNeededDocument}","methods":["POST"],"parameters":["driverNeededDocument"],"bindings":{"driverNeededDocument":"id"}},"driverneededdocuments.edit":{"uri":"driver-needed-documents\/edit\/{driverNeededDocument}","methods":["GET","HEAD"],"parameters":["driverNeededDocument"],"bindings":{"driverNeededDocument":"id"}},"driverneededdocuments.updateDocumentStatus":{"uri":"driver-needed-documents\/update-status","methods":["POST"]},"driverneededdocuments.destroyDriverDocument":{"uri":"driver-needed-documents\/delete\/{driverNeededDocument}","methods":["DELETE"],"parameters":["driverNeededDocument"],"bindings":{"driverNeededDocument":"id"}},"withdrawalrequestdrivers.index":{"uri":"withdrawal-request-drivers","methods":["GET","HEAD"]},"withdrawalrequestdrivers.list":{"uri":"withdrawal-request-drivers\/list","methods":["GET","HEAD"]},"withdrawalrequestdrivers.ViewDetails":{"uri":"withdrawal-request-drivers\/view-in-detail\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"withdrawalrequestAmount.list":{"uri":"withdrawal-request-drivers\/amounts\/{driver_id}","methods":["GET","HEAD"],"parameters":["driver_id"],"bindings":{"driver_id":"id"}},"withdrawalrequest.updateStatus":{"uri":"withdrawal-request-drivers\/update-status","methods":["POST"]},"negativebalancedrivers.index":{"uri":"negative-balance-drivers","methods":["GET","HEAD"]},"negativebalancedrivers.list":{"uri":"negative-balance-drivers\/list","methods":["GET","HEAD"]},"negativebalancedrivers.payment":{"uri":"negative-balance-drivers\/view-profile\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"admins.index":{"uri":"admins","methods":["GET","HEAD"]},"admins.list":{"uri":"admins\/list","methods":["GET","HEAD"]},"admins.create":{"uri":"admins\/create","methods":["GET","HEAD"]},"admins.store":{"uri":"admins\/store","methods":["POST"]},"admins.update":{"uri":"admins\/update\/{adminDetail}","methods":["POST"],"parameters":["adminDetail"],"bindings":{"adminDetail":"id"}},"admins.edit":{"uri":"admins\/edit\/{adminDetail}","methods":["GET","HEAD"],"parameters":["adminDetail"],"bindings":{"adminDetail":"id"}},"admin.destroy":{"uri":"admins\/delete\/{adminDetail}","methods":["DELETE"],"parameters":["adminDetail"],"bindings":{"adminDetail":"id"}},"admin.updateDocumentStatus":{"uri":"admins\/update-status","methods":["POST"]},"report.userReport":{"uri":"report\/user-report","methods":["GET","HEAD"]},"report.userReportDownload":{"uri":"report\/user-report-download","methods":["POST"]},"report.driverReport":{"uri":"report\/driver-report","methods":["GET","HEAD"]},"report.driverReportDownload":{"uri":"report\/driver-report-download","methods":["POST"]},"report.getVehicletypes":{"uri":"report\/getVehicleTypes","methods":["GET","HEAD"]},"report.ownerReport":{"uri":"report\/owner-report","methods":["GET","HEAD"]},"report.ownerReportDownload":{"uri":"report\/owner-report-download","methods":["POST"]},"report.financeReport":{"uri":"report\/finance-report","methods":["GET","HEAD"]},"report.financeReportDownload":{"uri":"report\/finance-report-download","methods":["POST"]},"report.fleetReport":{"uri":"report\/fleet-report","methods":["GET","HEAD"]},"report.listFleet":{"uri":"report\/list-fleets","methods":["GET","HEAD"]},"report.fleetReportDownload":{"uri":"report\/fleet-report-download","methods":["POST"]},"report.driverDutyReport":{"uri":"report\/driver-duty-report","methods":["GET","HEAD"]},"report.driverDutyReportDownload":{"uri":"report\/driver-duty-report-download","methods":["POST"]},"report.getDrivers":{"uri":"report\/getDrivers","methods":["GET","HEAD"]},"manageowners.index":{"uri":"manage-owners","methods":["GET","HEAD"]},"manageowners.Create":{"uri":"manage-owners\/create","methods":["GET","HEAD"]},"manageowners.list":{"uri":"manage-owners\/list","methods":["GET","HEAD"]},"manageowners.store":{"uri":"manage-owners\/store","methods":["POST"]},"manageowners.edit":{"uri":"manage-owners\/edit\/{owner}","methods":["GET","HEAD"],"parameters":["owner"],"bindings":{"owner":"id"}},"manageowners.update":{"uri":"manage-owners\/update\/{owner}","methods":["POST"],"parameters":["owner"],"bindings":{"owner":"id"}},"manageowners.approve":{"uri":"manage-owners\/approve\/{owner}","methods":["POST"],"parameters":["owner"]},"manageowners.delete":{"uri":"manage-owners\/delete\/{owner}","methods":["DELETE"],"parameters":["owner"],"bindings":{"owner":"id"}},"manageowners.document":{"uri":"manage-owners\/document\/{owner}","methods":["GET","HEAD"],"parameters":["owner"],"bindings":{"owner":"id"}},"manageowners.checkEmailExists":{"uri":"manage-owners\/check-email","methods":["POST"]},"manageowners.checkMobileExists":{"uri":"manage-owners\/check-mobile","methods":["POST"]},"manageowners.listDocument":{"uri":"manage-owners\/document\/list\/{owner}","methods":["GET","HEAD"],"parameters":["owner"]},"manageowners.documentUpload":{"uri":"manage-owners\/document-upload\/{document}\/{ownerId}","methods":["GET","HEAD"],"parameters":["document","ownerId"],"bindings":{"document":"id","ownerId":"id"}},"manageowners.documentUploadStore":{"uri":"manage-owners\/document-upload\/{document}\/{ownerId}","methods":["POST"],"parameters":["document","ownerId"],"bindings":{"document":"id","ownerId":"id"}},"manageowners.approveOwnerDocument":{"uri":"manage-owners\/document-toggle\/{documentId}\/{ownerId}\/{status}","methods":["GET","HEAD"],"parameters":["documentId","ownerId","status"]},"manageowners.ownerPaymentHistory":{"uri":"manage-owners\/owner-payment-history\/{owner}","methods":["GET","HEAD"],"parameters":["owner"]},"withdrawalrequestOwners.index":{"uri":"withdrawal-request-owners","methods":["GET","HEAD"]},"withdrawalrequestOwners.list":{"uri":"withdrawal-request-owners\/list","methods":["GET","HEAD"]},"withdrawalrequestOwners.ViewDetails":{"uri":"withdrawal-request-owners\/view-in-detail\/{owner}","methods":["GET","HEAD"],"parameters":["owner"],"bindings":{"owner":"id"}},"withdrawalrequestOwner.list":{"uri":"withdrawal-request-owners\/amounts\/{owner_id}","methods":["GET","HEAD"],"parameters":["owner_id"],"bindings":{"owner_id":"id"}},"withdrawalrequestOwners.updateStatus":{"uri":"withdrawal-request-owners\/update-status","methods":["POST"]},"fleetneeddocuments.index":{"uri":"fleet-needed-documents","methods":["GET","HEAD"]},"fleetneeddocuments.list":{"uri":"fleet-needed-documents\/list","methods":["GET","HEAD"]},"fleetneeddocuments.create":{"uri":"fleet-needed-documents\/create","methods":["GET","HEAD"]},"fleetneeddocuments.store":{"uri":"fleet-needed-documents\/store","methods":["POST"]},"fleetneeddocuments.edit":{"uri":"fleet-needed-documents\/edit\/{document}","methods":["GET","HEAD"],"parameters":["document"],"bindings":{"document":"id"}},"fleetneeddocuments.update":{"uri":"fleet-needed-documents\/update\/{document}","methods":["POST"],"parameters":["document"],"bindings":{"document":"id"}},"fleetneeddocuments.updatestatus":{"uri":"fleet-needed-documents\/toggle","methods":["POST"]},"fleetneeddocuments.delete":{"uri":"fleet-needed-documents\/delete\/{document}","methods":["DELETE"],"parameters":["document"],"bindings":{"document":"id"}},"managefleets.index":{"uri":"manage-fleet","methods":["GET","HEAD"]},"managefleets.Create":{"uri":"manage-fleet\/create","methods":["GET","HEAD"]},"managefleets.list":{"uri":"manage-fleet\/list","methods":["GET","HEAD"]},"managefleets.store":{"uri":"manage-fleet\/store","methods":["POST"]},"managefleets.edit":{"uri":"manage-fleet\/edit\/{fleet}","methods":["GET","HEAD"],"parameters":["fleet"],"bindings":{"fleet":"id"}},"managefleets.update":{"uri":"manage-fleet\/update\/{fleet}","methods":["POST"],"parameters":["fleet"],"bindings":{"fleet":"id"}},"managefleets.assignDriver":{"uri":"manage-fleet\/assign\/{fleet}\/{driver}","methods":["POST"],"parameters":["fleet","driver"],"bindings":{"fleet":"id","driver":"id"}},"managefleets.approve":{"uri":"manage-fleet\/approve\/{fleet}","methods":["POST"],"parameters":["fleet"]},"managefleets.delete":{"uri":"manage-fleet\/delete\/{fleet}","methods":["DELETE"],"parameters":["fleet"],"bindings":{"fleet":"id"}},"managefleets.document":{"uri":"manage-fleet\/document\/{fleet}","methods":["GET","HEAD"],"parameters":["fleet"],"bindings":{"fleet":"id"}},"managefleets.listDocument":{"uri":"manage-fleet\/document\/list\/{fleet}","methods":["GET","HEAD"],"parameters":["fleet"]},"managefleets.listFleetDrivers":{"uri":"manage-fleet\/listFleetDriver\/{fleet}","methods":["GET","HEAD"],"parameters":["fleet"],"bindings":{"fleet":"id"}},"managefleets.documentUpload":{"uri":"manage-fleet\/document-upload\/{document}\/{fleetId}","methods":["GET","HEAD"],"parameters":["document","fleetId"],"bindings":{"document":"id","fleetId":"id"}},"managefleets.documentUploadStore":{"uri":"manage-fleet\/document-upload\/{document}\/{fleetId}","methods":["POST"],"parameters":["document","fleetId"],"bindings":{"document":"id","fleetId":"id"}},"managefleets.approvefleetDocument":{"uri":"manage-fleet\/document-toggle\/{documentId}\/{fleetId}\/{status}","methods":["GET","HEAD"],"parameters":["documentId","fleetId","status"]},"managefleets.fleetPaymentHistory":{"uri":"manage-fleet\/fleet-payment-history\/{fleet}","methods":["GET","HEAD"],"parameters":["fleet"]},"approvedFleetdriver.Index":{"uri":"fleet-drivers","methods":["GET","HEAD"]},"approvedFleetdriver.pendingIndex":{"uri":"fleet-drivers\/pending","methods":["GET","HEAD"]},"fleet-drivers.list":{"uri":"fleet-drivers\/list","methods":["GET","HEAD"]},"fleet-drivers.store":{"uri":"fleet-drivers\/store","methods":["POST"]},"fleet-drivers.edit":{"uri":"fleet-drivers\/edit\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"fleet-drivers.create":{"uri":"fleet-drivers\/create","methods":["GET","HEAD"]},"fleet-drivers.update":{"uri":"fleet-drivers\/update\/{driver}","methods":["POST"],"parameters":["driver"],"bindings":{"driver":"id"}},"fleet-drivers.approve":{"uri":"fleet-drivers\/approve\/{driver}","methods":["POST"],"parameters":["driver"],"bindings":{"driver":"id"}},"fleet-drivers.delete":{"uri":"fleet-drivers\/delete\/{driver}","methods":["DELETE"],"parameters":["driver"]},"fleet-drivers.listOwnersByLocation":{"uri":"fleet-drivers\/ownerList","methods":["GET","HEAD"]},"fleet-drivers.listOwners":{"uri":"fleet-drivers\/list-owners","methods":["GET","HEAD"]},"approvedFleetdriver.ViewDocument":{"uri":"fleet-drivers\/document\/{driver}","methods":["GET","HEAD"],"parameters":["driver"],"bindings":{"driver":"id"}},"approvedFleetdriver.listDocument":{"uri":"fleet-drivers\/document\/list\/{driverId}","methods":["GET","HEAD"],"parameters":["driverId"]},"approvedFleetdriver.documentUpload":{"uri":"fleet-drivers\/document-upload\/{document}\/{driverId}","methods":["GET","HEAD"],"parameters":["document","driverId"],"bindings":{"document":"id","driverId":"id"}},"approvedFleetdriver.documentUploadStore":{"uri":"fleet-drivers\/document-upload-store\/{document}\/{driverId}","methods":["POST"],"parameters":["document","driverId"],"bindings":{"document":"id","driverId":"id"}},"approvedFleetdriver.approveDriverDocument":{"uri":"fleet-drivers\/document-toggle\/{documentId}\/{driverId}\/{status}","methods":["GET","HEAD"],"parameters":["documentId","driverId","status"]},"pendingdriver.fleetIndex":{"uri":"fleet-drivers\/pending-drivers","methods":["GET","HEAD"]},"goodstype.index":{"uri":"goods-type","methods":["GET","HEAD"]},"goodstype.create":{"uri":"goods-type\/create","methods":["GET","HEAD"]},"goodstype.store":{"uri":"goods-type\/store","methods":["POST"]},"goodstype.list":{"uri":"goods-type\/list","methods":["GET","HEAD"]},"goodstype.edit":{"uri":"goods-type\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"goodstype.update":{"uri":"goods-type\/update\/{goods_type}","methods":["POST"],"parameters":["goods_type"]},"goodstype.delete":{"uri":"goods-type\/delete\/{goods_type}","methods":["DELETE"],"parameters":["goods_type"]},"goodstype.updateStatus":{"uri":"goods-type\/update-status","methods":["POST"]},"bannerimage.index":{"uri":"banner-image","methods":["GET","HEAD"]},"bannerimage.create":{"uri":"banner-image\/create","methods":["GET","HEAD"]},"bannerimage.list":{"uri":"banner-image\/list","methods":["GET","HEAD"]},"bannerimage.update":{"uri":"banner-image\/update\/{bannerimage}","methods":["POST"],"parameters":["bannerimage"],"bindings":{"bannerimage":"id"}},"bannerimage.store":{"uri":"banner-image\/store","methods":["POST"]},"bannerimage.edit":{"uri":"banner-image\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"bannerimage.delete":{"uri":"banner-image\/delete\/{bannerimage}","methods":["DELETE"],"parameters":["bannerimage"],"bindings":{"bannerimage":"id"}},"bannerimage.updateStatus":{"uri":"banner-image\/update-status","methods":["POST"]},"ownerneeddocuments.index":{"uri":"owner-needed-documents","methods":["GET","HEAD"]},"ownerneeddocuments.list":{"uri":"owner-needed-documents\/list","methods":["GET","HEAD"]},"ownerneeddocuments.create":{"uri":"owner-needed-documents\/create","methods":["GET","HEAD"]},"ownerneeddocuments.store":{"uri":"owner-needed-documents\/store","methods":["POST"]},"ownerneeddocuments.edit":{"uri":"owner-needed-documents\/edit\/{document}","methods":["GET","HEAD"],"parameters":["document"],"bindings":{"document":"id"}},"ownerneeddocuments.update":{"uri":"owner-needed-documents\/update\/{document}","methods":["POST"],"parameters":["document"],"bindings":{"document":"id"}},"ownerneeddocuments.updatestatus":{"uri":"owner-needed-documents\/toggle","methods":["POST"]},"ownerneeddocuments.delete":{"uri":"owner-needed-documents\/delete\/{document}","methods":["DELETE"],"parameters":["document"],"bindings":{"document":"id"}},"onboardingscreen.index":{"uri":"onboarding-screen","methods":["GET","HEAD"]},"onboardingscreen.list":{"uri":"onboarding-screen\/list","methods":["GET","HEAD"]},"onboardingscreen.edit":{"uri":"onboarding-screen\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"onboardingscreen.update":{"uri":"onboarding-screen\/update\/{id}","methods":["POST"],"parameters":["id"]},"onboardingscreen.updateStatus":{"uri":"onboarding-screen\/update-status","methods":["POST"]},"invoiceconfiguration.index":{"uri":"invoice-configuration","methods":["GET","HEAD"]},"mapsettings.index":{"uri":"map-setting","methods":["GET","HEAD"]},"mapsettings.update":{"uri":"map-setting\/update","methods":["POST"]},"settings.generalSettings":{"uri":"general-settings","methods":["GET","HEAD"]},"settings.updateGeneralSettings":{"uri":"general-settings\/update","methods":["POST"]},"settings.updateStatus":{"uri":"general-settings\/update-status","methods":["POST"]},"settings.customizationSettings":{"uri":"customization-settings","methods":["GET","HEAD"]},"settings.updateCustomizationSettings":{"uri":"customization-settings\/update","methods":["POST"]},"settings.updateCustomizationStatus":{"uri":"customization-settings\/update-status","methods":["POST"]},"settings.transportRideSettings":{"uri":"transport-ride-settings","methods":["GET","HEAD"]},"settings.updateTransportSettings":{"uri":"transport-ride-settings\/update","methods":["POST"]},"settings.updateTransportStatus":{"uri":"transport-ride-settings\/update-status","methods":["POST"]},"settings.bidRideSettings":{"uri":"bid-ride-settings","methods":["GET","HEAD"]},"settings.updateBidSettings":{"uri":"bid-ride-settings\/update","methods":["POST"]},"settings.walletSettings":{"uri":"wallet-settings","methods":["GET","HEAD"]},"settings.updateWalletSettings":{"uri":"wallet-settings\/update","methods":["POST"]},"settings.referralSettings":{"uri":"referral-settings","methods":["GET","HEAD"]},"settings.updateRefrerralSettings":{"uri":"referral-settings\/update","methods":["POST"]},"triprequest.ridesRequest":{"uri":"rides-request","methods":["GET","HEAD"]},"triprequest.list":{"uri":"rides-request\/list","methods":["GET","HEAD"]},"triprequest.driverFind":{"uri":"rides-request\/driver\/{driver}","methods":["POST"],"parameters":["driver"],"bindings":{"driver":"id"}},"triprequest.viewDetails":{"uri":"rides-request\/view\/{requestmodel}","methods":["GET","HEAD"],"parameters":["requestmodel"],"bindings":{"requestmodel":"id"}},"triprequest.cancel":{"uri":"rides-request\/cancel\/{requestmodel}","methods":["GET","HEAD"],"parameters":["requestmodel"],"bindings":{"requestmodel":"id"}},"triprequest.sosDetail":{"uri":"rides-request\/detail\/{request}","methods":["GET","HEAD"],"parameters":["request"],"bindings":{"request":"id"}},"triprequest.scheduledRides":{"uri":"scheduled-rides","methods":["GET","HEAD"]},"triprequest.outstationRides":{"uri":"out-station-rides","methods":["GET","HEAD"]},"triprequest.cancellationRides":{"uri":"cancellation-rides","methods":["GET","HEAD"]},"triprequest.cancellationRidesViewDetails":{"uri":"cancellation-rides\/view","methods":["GET","HEAD"]},"deliveryTriprequest.ridesRequest":{"uri":"delivery-rides-request","methods":["GET","HEAD"]},"deliveryTriprequest.list":{"uri":"delivery-rides-request\/list","methods":["GET","HEAD"]},"deliveryTriprequest.driverFind":{"uri":"delivery-rides-request\/driver\/{driver}","methods":["POST"],"parameters":["driver"],"bindings":{"driver":"id"}},"deliveryTriprequest.viewDetails":{"uri":"delivery-rides-request\/view\/{requestmodel}","methods":["GET","HEAD"],"parameters":["requestmodel"],"bindings":{"requestmodel":"id"}},"deliveryTriprequest.cancel":{"uri":"delivery-rides-request\/cancel\/{requestmodel}","methods":["GET","HEAD"],"parameters":["requestmodel"],"bindings":{"requestmodel":"id"}},"delivery-scheduled-rides.scheduledRides":{"uri":"delivery-scheduled-rides","methods":["GET","HEAD"]},"delivery-scheduled-rides.viewDetails":{"uri":"delivery-scheduled-rides\/view","methods":["GET","HEAD"]},"deliveryrequest.cancellationRides":{"uri":"delivery-cancellation-rides","methods":["GET","HEAD"]},"deliveryrequest.viewCancelDetails":{"uri":"delivery-cancellation-rides\/view","methods":["GET","HEAD"]},"triprequest.ongoingRides":{"uri":"ongoing-rides","methods":["GET","HEAD"]},"triprequest.ongoingRideDetail":{"uri":"ongoing-rides\/find-ride\/{request}","methods":["GET","HEAD"],"parameters":["request"],"bindings":{"request":"id"}},"triprequest.assignView":{"uri":"ongoing-rides\/assign\/{request}","methods":["GET","HEAD"],"parameters":["request"],"bindings":{"request":"id"}},"triprequest.assignDriver":{"uri":"ongoing-rides\/assign-driver\/{requestmodel}","methods":["POST"],"parameters":["requestmodel"],"bindings":{"requestmodel":"id"}},"images.index":{"uri":"images","methods":["GET","HEAD"]},"images.create":{"uri":"images\/create","methods":["GET","HEAD"]},"images.update":{"uri":"images\/update","methods":["GET","HEAD"]},"users.index":{"uri":"users","methods":["GET","HEAD"]},"users.list":{"uri":"users\/list","methods":["GET","HEAD"]},"users.create":{"uri":"users\/create","methods":["GET","HEAD"]},"users.store":{"uri":"users\/store","methods":["POST"]},"users.edit":{"uri":"users\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"users.update":{"uri":"users\/update\/{user}","methods":["POST"],"parameters":["user"],"bindings":{"user":"id"}},"users.checkMobileExists":{"uri":"users\/check-mobile\/{mobile}\/{id}","methods":["GET","HEAD"],"parameters":["mobile","id"]},"users.checkEmailExists":{"uri":"users\/check-email\/{email}\/{id}","methods":["GET","HEAD"],"parameters":["email","id"]},"users.updateStatus":{"uri":"users\/update-status","methods":["POST"]},"users.view-profile":{"uri":"users\/view-profile\/{user}","methods":["GET","HEAD"],"parameters":["user"],"bindings":{"user":"id"}},"users.addAmount":{"uri":"users\/wallet-add-amount\/{user}","methods":["POST"],"parameters":["user"],"bindings":{"user":"id"}},"users.walletHistoryList":{"uri":"users\/wallet-history\/list\/{user}","methods":["GET","HEAD"],"parameters":["user"],"bindings":{"user":"id"}},"users.requestList":{"uri":"users\/request\/list\/{user}","methods":["GET","HEAD"],"parameters":["user"],"bindings":{"user":"id"}},"users.deleted-users":{"uri":"users\/deleted-user","methods":["GET","HEAD"]},"users.deletedList":{"uri":"users\/deletedList","methods":["GET","HEAD"]},"zone.index":{"uri":"zones","methods":["GET","HEAD"]},"zone.create":{"uri":"zones\/create","methods":["GET","HEAD"]},"zone.store":{"uri":"zones\/store","methods":["POST"]},"zone.fetch":{"uri":"zones\/fetch","methods":["GET","HEAD"]},"zone.list":{"uri":"zones\/list","methods":["GET","HEAD"]},"zone.edit":{"uri":"zones\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"zone.update":{"uri":"zones\/update\/{zone}","methods":["POST"],"parameters":["zone"],"bindings":{"zone":"id"}},"zone.updateStatus":{"uri":"zones\/update-status","methods":["POST"]},"zone.map":{"uri":"zones\/map\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"zone.surge":{"uri":"zones\/surge\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"zone.updateSurge":{"uri":"zones\/surge\/update\/{zone}","methods":["POST"],"parameters":["zone"],"bindings":{"zone":"id"}},"incentives.index":{"uri":"incentives","methods":["GET","HEAD"]},"incentives.update":{"uri":"incentives\/update","methods":["POST"]},"landing.index":{"uri":"\/","methods":["GET","HEAD"]},"landing.driver":{"uri":"driver","methods":["GET","HEAD"]},"landing.aboutus":{"uri":"aboutus","methods":["GET","HEAD"]},"landing.user":{"uri":"user","methods":["GET","HEAD"]},"landing.contact":{"uri":"contact","methods":["GET","HEAD"]},"landing.privacy":{"uri":"privacy","methods":["GET","HEAD"]},"landing.compliance":{"uri":"compliance","methods":["GET","HEAD"]},"landing.terms":{"uri":"terms","methods":["GET","HEAD"]},"landing.dmv":{"uri":"dmv","methods":["GET","HEAD"]},"web-booking.create-booking":{"uri":"create-booking","methods":["GET","HEAD"]},"web-booking.profile":{"uri":"profile","methods":["GET","HEAD"]},"user.updateProfile":{"uri":"user\/update-profile","methods":["POST"]},"web-booking.history":{"uri":"history","methods":["GET","HEAD"]},"history.viewDetails":{"uri":"history\/view\/{requestmodel}","methods":["GET","HEAD"],"parameters":["requestmodel"],"bindings":{"requestmodel":"id"}},"web-users.list":{"uri":"webuser\/list","methods":["GET","HEAD"]},"app.install":{"uri":"installation","methods":["GET","HEAD"]},"overall.menu":{"uri":"overall-menu","methods":["GET","HEAD"]},"chat.index":{"uri":"chat","methods":["GET","HEAD"]},"chat.fetchUser":{"uri":"chat\/fetch-user","methods":["GET","HEAD"]},"chat.messages":{"uri":"chat\/messages\/{conversationId}","methods":["GET","HEAD"],"parameters":["conversationId"],"bindings":{"conversationId":"id"}},"chat.sendAdmin":{"uri":"chat\/send-admin","methods":["POST"]},"chat.closeChat":{"uri":"chat\/close-chat","methods":["POST"]},"chat.fetchChats":{"uri":"chat\/fetchChat","methods":["GET","HEAD"]},"chat.readAll":{"uri":"chat\/readAll","methods":["GET","HEAD"]},"landing_home.index":{"uri":"landing-home","methods":["GET","HEAD"]},"landing_home.list":{"uri":"landing-home\/list","methods":["GET","HEAD"]},"landing_home.create":{"uri":"landing-home\/create","methods":["GET","HEAD"]},"landing_home.store":{"uri":"landing-home\/store","methods":["POST"]},"landing_home.edit":{"uri":"landing-home\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"landing_home.update":{"uri":"landing-home\/update\/{landingHome}","methods":["POST"],"parameters":["landingHome"],"bindings":{"landingHome":"id"}},"landing_home.delete":{"uri":"landing-home\/delete\/{landingHome}","methods":["DELETE"],"parameters":["landingHome"],"bindings":{"landingHome":"id"}},"landing_abouts.index":{"uri":"landing-aboutus","methods":["GET","HEAD"]},"landing_abouts.list":{"uri":"landing-aboutus\/list","methods":["GET","HEAD"]},"landing_abouts.create":{"uri":"landing-aboutus\/create","methods":["GET","HEAD"]},"landing_abouts.store":{"uri":"landing-aboutus\/store","methods":["POST"]},"landing_abouts.edit":{"uri":"landing-aboutus\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"landing_abouts.update":{"uri":"landing-aboutus\/update\/{landingAbouts}","methods":["POST"],"parameters":["landingAbouts"],"bindings":{"landingAbouts":"id"}},"landing_abouts.delete":{"uri":"landing-aboutus\/delete\/{landingAbouts}","methods":["DELETE"],"parameters":["landingAbouts"],"bindings":{"landingAbouts":"id"}},"landing_driver.index":{"uri":"landing-driver","methods":["GET","HEAD"]},"landing_driver.list":{"uri":"landing-driver\/list","methods":["GET","HEAD"]},"landing_driver.create":{"uri":"landing-driver\/create","methods":["GET","HEAD"]},"landing_driver.store":{"uri":"landing-driver\/store","methods":["POST"]},"landing_driver.edit":{"uri":"landing-driver\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"landing_driver.update":{"uri":"landing-driver\/update\/{landingDriver}","methods":["POST"],"parameters":["landingDriver"],"bindings":{"landingDriver":"id"}},"landing_driver.delete":{"uri":"landing-driver\/delete\/{landingDriver}","methods":["DELETE"],"parameters":["landingDriver"],"bindings":{"landingDriver":"id"}},"landing_user.index":{"uri":"landing-user","methods":["GET","HEAD"]},"landing_user.list":{"uri":"landing-user\/list","methods":["GET","HEAD"]},"landing_user.create":{"uri":"landing-user\/create","methods":["GET","HEAD"]},"landing_user.store":{"uri":"landing-user\/store","methods":["POST"]},"landing_user.edit":{"uri":"landing-user\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"landing_user.update":{"uri":"landing-user\/update\/{landingUser}","methods":["POST"],"parameters":["landingUser"],"bindings":{"landingUser":"id"}},"landing_user.delete":{"uri":"landing-user\/delete\/{landingUser}","methods":["DELETE"],"parameters":["landingUser"],"bindings":{"landingUser":"id"}},"landing_header.index":{"uri":"landing-header","methods":["GET","HEAD"]},"landing_header.list":{"uri":"landing-header\/list","methods":["GET","HEAD"]},"landing_header.create":{"uri":"landing-header\/create","methods":["GET","HEAD"]},"landing_header.store":{"uri":"landing-header\/store","methods":["POST"]},"landing_header.edit":{"uri":"landing-header\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"landing_header.update":{"uri":"landing-header\/update\/{landingHeader}","methods":["POST"],"parameters":["landingHeader"],"bindings":{"landingHeader":"id"}},"landing_header.delete":{"uri":"landing-header\/delete\/{landingHeader}","methods":["DELETE"],"parameters":["landingHeader"],"bindings":{"landingHeader":"id"}},"landing_quicklink.index":{"uri":"landing-quicklink","methods":["GET","HEAD"]},"landing_quicklink.list":{"uri":"landing-quicklink\/list","methods":["GET","HEAD"]},"landing_quicklink.create":{"uri":"landing-quicklink\/create","methods":["GET","HEAD"]},"landing_quicklink.store":{"uri":"landing-quicklink\/store","methods":["POST"]},"landing_quicklink.edit":{"uri":"landing-quicklink\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"landing_quicklink.update":{"uri":"landing-quicklink\/update\/{landingQuickLink}","methods":["POST"],"parameters":["landingQuickLink"],"bindings":{"landingQuickLink":"id"}},"landing_quicklink.delete":{"uri":"landing-quicklink\/delete\/{landingQuickLink}","methods":["DELETE"],"parameters":["landingQuickLink"],"bindings":{"landingQuickLink":"id"}},"landing_contact.index":{"uri":"landing-contact","methods":["GET","HEAD"]},"landing_contact.list":{"uri":"landing-contact\/list","methods":["GET","HEAD"]},"landing_contact.create":{"uri":"landing-contact\/create","methods":["GET","HEAD"]},"landing_contact.store":{"uri":"landing-contact\/store","methods":["POST"]},"landing_contact.edit":{"uri":"landing-contact\/edit\/{id}","methods":["GET","HEAD"],"parameters":["id"]},"landing_contact.update":{"uri":"landing-contact\/update\/{landingContact}","methods":["POST"],"parameters":["landingContact"],"bindings":{"landingContact":"id"}},"landing_contact.delete":{"uri":"landing-contact\/delete\/{landingContact}","methods":["DELETE"],"parameters":["landingContact"],"bindings":{"landingContact":"id"}},"landing_contact.contactmessage":{"uri":"landing-contact\/contactmessage","methods":["POST"]},"paypal":{"uri":"paypal","methods":["GET","HEAD"]},"paypal.payment":{"uri":"paypal\/payment","methods":["POST"]},"paypal.payment.success":{"uri":"paypal\/payment\/success","methods":["GET","HEAD"]},"paypal.payment\/cancel":{"uri":"paypal\/payment\/cancel","methods":["GET","HEAD"]},"checkout.process":{"uri":"stripe-checkout","methods":["POST"]},"checkout.success":{"uri":"stripe-checkout-success","methods":["GET","HEAD"]},"checkout.failure":{"uri":"stripe-checkout-error","methods":["GET","HEAD"]},"flutterwave.success":{"uri":"flutterwave\/payment\/success","methods":["GET","HEAD"]},"paystack.success":{"uri":"paystack\/payment\/success","methods":["GET","HEAD"]},"khalti.success":{"uri":"khalti\/checkout","methods":["POST"]},"razorpay.success":{"uri":"payment-success","methods":["GET","HEAD"]},"mercadopago.success":{"uri":"mercadopago\/payment\/success","methods":["GET","HEAD"]},"ccavenue.checkout":{"uri":"ccavenue\/checkout","methods":["POST"]},"ccavenue.payment.response":{"uri":"ccavenue\/payment\/success","methods":["GET","HEAD"]},"ccavenue.payment.cancel":{"uri":"ccavenue\/payment\/failure","methods":["GET","HEAD"]}};
Object.assign(Ziggy.routes, routes);
})();
</script> <link rel="preload" as="style" href="http://localhost/new_vue_tagxi/public/build/assets/vendor-f749f9ab.css" /><link rel="preload" as="style" href="http://localhost/new_vue_tagxi/public/build/assets/app-5dc46014.css" /><link rel="preload" as="style" href="http://localhost/new_vue_tagxi/public/build/assets/404-8c21c3cf.css" /><link rel="modulepreload" href="http://localhost/new_vue_tagxi/public/build/assets/app-e076d658.js" /><link rel="modulepreload" href="http://localhost/new_vue_tagxi/public/build/assets/vendor-b6e68d09.js" /><link rel="modulepreload" href="http://localhost/new_vue_tagxi/public/build/assets/404-36789bcd.js" /><link rel="modulepreload" href="http://localhost/new_vue_tagxi/public/build/assets/error-ff2a41aa.js" /><link rel="stylesheet" href="http://localhost/new_vue_tagxi/public/build/assets/vendor-f749f9ab.css" /><link rel="stylesheet" href="http://localhost/new_vue_tagxi/public/build/assets/app-5dc46014.css" /><link rel="stylesheet" href="http://localhost/new_vue_tagxi/public/build/assets/404-8c21c3cf.css" /><script type="module" src="http://localhost/new_vue_tagxi/public/build/assets/app-e076d658.js"></script><script type="module" src="http://localhost/new_vue_tagxi/public/build/assets/404-36789bcd.js"></script>
</head>
<body>
<div id="app" data-page="{"component":"pages\/404","props":{"jetstream":{"canCreateTeams":false,"canManageTwoFactorAuthentication":true,"canUpdatePassword":true,"canUpdateProfileInformation":true,"hasEmailVerification":true,"flash":[],"hasAccountDeletionFeatures":true,"hasApiFeatures":true,"hasTeamFeatures":false,"hasTermsAndPrivacyPolicyFeature":true,"managesProfilePhotos":true},"auth":{"user":null},"errorBags":[],"errors":{},"flash":{"successMessage":null}},"url":"\/new_vue_tagxi\/public\/\/api\/v1\/common\/test-api","version":"6417c333e668146bc61c7fac84a8b3e4"}"></div> <script>
window.headers = [{"id":"d488f364-f420-4415-85a2-e4b1a154863b","header_logo":"Y8Xg6Y3kQHYzGSsVonTjE5aI1SZu8lEWhuXPsz5L.png","home":"Home","aboutus":"About Us","driver":"Driver","user":"User","contact":"Contact","book_now_btn":"Book Now","footer_logo":"TvZGGFUp14QFjqR2gJZPrJ28gt0EYakPBp75vj7C.png","footer_para":"Tagxi is a rideshare platform facilitating peer to peer ridesharing by means of connecting passengers who are in need of rides from drivers with available cars to get from point A to point B with the press of a button.","quick_links":"Quick Links","compliance":"Compliance","privacy":"Privacy Policy","terms":"Terms \u0026 Conditions","dmv":"DMV Check","user_app":"User Apps","user_play":"Play Store","user_play_link":"https:\/\/play.google.com\/store\/apps\/details?id=tagxi.bidding.user","user_apple":"Apple Store","user_apple_link":"https:\/\/apps.apple.com\/in\/app\/super-bidding-user\/id6449780067","driver_app":"Driver Apps","driver_play":"Play Store","driver_play_link":"https:\/\/play.google.com\/store\/apps\/details?id=tagxi.bidding.driver","driver_apple":"Apple Store","driver_apple_link":"https:\/\/apps.apple.com\/in\/app\/super-bidding-driver\/id6449778880","copy_rights":"2021 @ misoftwares","fb_link":"https:\/\/www.facebook.com\/","linkdin_link":"https:\/\/in.linkedin.com\/","x_link":"https:\/\/x.com\/","insta_link":"https:\/\/www.instagram.com\/","locale":"En","language":"English","direction":"ltr","created_at":null,"updated_at":"2024-11-20T18:33:22.000000Z","header_logo_url":"http:\/\/localhost\/new_vue_tagxi\/public\/storage\/uploads\/website\/images\/Y8Xg6Y3kQHYzGSsVonTjE5aI1SZu8lEWhuXPsz5L.png","footer_logo_url":"http:\/\/localhost\/new_vue_tagxi\/public\/storage\/uploads\/website\/images\/TvZGGFUp14QFjqR2gJZPrJ28gt0EYakPBp75vj7C.png"}];
window.recaptchaKey = null;
window.logo = "http:\/\/localhost\/new_vue_tagxi\/public\/storage\/uploads\/system-admin\/logo\/logo-light.png";
window.favicon = "http:\/\/localhost\/new_vue_tagxi\/public\/storage\/uploads\/system-admin\/logo\/logo-mini.png";
window.footer_content1 = "2024 \u00a9 Misoftwares.";
window.footer_content2 = "Design \u0026 Develop by Misoftwares";
</script>
</body>
<script>
document.addEventListener('DOMContentLoaded', function () {
// Check if window.favicon is available and set it dynamically
if (window.favicon) {
document.getElementById('dynamic-favicon').setAttribute('href', window.favicon);
} else {
// Fallback if the favicon is not set
document.getElementById('dynamic-favicon').setAttribute('href', 'http://localhost/new_vue_tagxi/public/image/favicon.ico');
}
});
</script>
<style>
:root{
--top_nav: #0ab39c;
--side_menu: #405189;
--side_menu_txt: #ffffff;
--loginbg: url('http://localhost/new_vue_tagxi/public/storage/uploads/system-admin/logo/workspace.jpg');
--owner_loginbg: url('http://localhost/new_vue_tagxi/public/storage/uploads/system-admin/logo/workspace.jpg');
}
</style>
</html>
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get All Car makes
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/common/car/makes" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/common/car/makes"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success",
"data": [
{
"id": 1,
"name": "Acura",
"vehicle_make_for": "taxi",
"transport_type": "taxi",
"active": 1,
"created_at": "2024-11-23T06:36:33.000000Z",
"updated_at": "2024-11-23T06:36:33.000000Z"
},
]
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get Car models by make id
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/common/car/models/dicta" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/common/car/models/dicta"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success",
"data": [
{
"id": 14,
"make_id": 2,
"name": "4C",
"active": 1,
"created_at": "2024-11-23T06:36:33.000000Z",
"updated_at": "2024-11-23T06:36:33.000000Z"
},
],
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get Vehcile Types by Service location
Example request:
curl --request GET \
--get "http://localhost/new_vue_tagxi/public/api/v1/types/45c8948b-73dd-4557-af3c-a3dd62cd35b6" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"http://localhost/new_vue_tagxi/public/api/v1/types/45c8948b-73dd-4557-af3c-a3dd62cd35b6"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
Example response (200):
{
"success": true,
"message": "success",
"data": [
{
"id": "9ea6f9a0-6fd2-4962-9d81-645e6301096f",
"name": "Mini",
"icon": null,
"capacity": 4,
"is_accept_share_ride": 0,
"active": 1,
"created_at": "2020-02-13 09:06:39",
"updated_at": "2020-02-13 09:06:39",
"deleted_at": null
}
]
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.