Introduction
Dokumentasi ini bertujuan untuk memberikan semua informasi yang Anda butuhkan untuk bekerja dengan API kami.
Authenticating requests
To authenticate requests, include an Authorization
header with the value "Bearer {YOUR_AUTH_KEY}"
.
All authenticated endpoints are marked with a requires authentication
badge in the documentation below.
Anda bisa mendapatkan token Anda dengan cara Generate API token.
Authentication
API endpoints for managing Authentication
Masuk dengan kredensial untuk mendapatkan token
Example request:
curl --request POST \
"https://devapitms.erunix.id/api/v1/auth/login" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"email\": \"demo@mail.com\",
\"password\": \"password\"
}"
const url = new URL(
"https://devapitms.erunix.id/api/v1/auth/login"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"email": "demo@mail.com",
"password": "password"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/auth/login';
$response = $client->post(
$url,
[
'headers' => [
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'email' => 'demo@mail.com',
'password' => 'password',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (200):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
{
"code": 200,
"status": "error",
"data": null,
"message": "Email Not Found"
}
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.
Access Menu Application yang di dapatkan
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/auth/access" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/auth/access"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/auth/access';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Data User sesuai dengan token
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/auth/user" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/auth/user"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/auth/user';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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
API endpoints untuk manage Data Fleet in Transport Management System
Truck Accident : Untuk transaksi Truck Accident secara berkala
List data Truck Accident
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/fleet/truckAccident?search=...&start=0&pageSize=10&sortField=vehicle_desc&sortOrder=desc" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/fleet/truckAccident"
);
const params = {
"search": "...",
"start": "0",
"pageSize": "10",
"sortField": "vehicle_desc",
"sortOrder": "desc",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/fleet/truckAccident';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'search' => '...',
'start' => '0',
'pageSize' => '10',
'sortField' => 'vehicle_desc',
'sortOrder' => 'desc',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Simpan data Truck Accident
requires authentication
Example request:
curl --request POST \
"https://devapitms.erunix.id/api/v1/fleet/truckAccident" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"vehicle_id\": 0,
\"driver_id\": 0,
\"client_id\": 0,
\"accident_date\": \"2024-07-01\",
\"accident_type\": \"...\",
\"location\": \"...\",
\"chronology_accident\": \"...\",
\"vehicle_condition\": \"...\",
\"current_position\": \"...\",
\"amount_less\": \"...\",
\"police_investigation_report\": \"...\",
\"additional_information\": \"...\"
}"
const url = new URL(
"https://devapitms.erunix.id/api/v1/fleet/truckAccident"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"vehicle_id": 0,
"driver_id": 0,
"client_id": 0,
"accident_date": "2024-07-01",
"accident_type": "...",
"location": "...",
"chronology_accident": "...",
"vehicle_condition": "...",
"current_position": "...",
"amount_less": "...",
"police_investigation_report": "...",
"additional_information": "..."
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/fleet/truckAccident';
$response = $client->post(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'vehicle_id' => 0,
'driver_id' => 0,
'client_id' => 0,
'accident_date' => '2024-07-01',
'accident_type' => '...',
'location' => '...',
'chronology_accident' => '...',
'vehicle_condition' => '...',
'current_position' => '...',
'amount_less' => '...',
'police_investigation_report' => '...',
'additional_information' => '...',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Perbaharui data Truck Accident
requires authentication
Example request:
curl --request PUT \
"https://devapitms.erunix.id/api/v1/fleet/truckAccident/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"vehicle_id\": 0,
\"driver_id\": 0,
\"client_id\": 0,
\"accident_date\": \"2024-07-01\",
\"accident_type\": \"...\",
\"location\": \"...\",
\"chronology_accident\": \"...\",
\"vehicle_condition\": \"...\",
\"current_position\": \"...\",
\"amount_less\": \"...\",
\"police_investigation_report\": \"...\",
\"additional_information\": \"...\"
}"
const url = new URL(
"https://devapitms.erunix.id/api/v1/fleet/truckAccident/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"vehicle_id": 0,
"driver_id": 0,
"client_id": 0,
"accident_date": "2024-07-01",
"accident_type": "...",
"location": "...",
"chronology_accident": "...",
"vehicle_condition": "...",
"current_position": "...",
"amount_less": "...",
"police_investigation_report": "...",
"additional_information": "..."
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/fleet/truckAccident/1';
$response = $client->put(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'vehicle_id' => 0,
'driver_id' => 0,
'client_id' => 0,
'accident_date' => '2024-07-01',
'accident_type' => '...',
'location' => '...',
'chronology_accident' => '...',
'vehicle_condition' => '...',
'current_position' => '...',
'amount_less' => '...',
'police_investigation_report' => '...',
'additional_information' => '...',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Hapus data Truck Accident
requires authentication
Example request:
curl --request DELETE \
"https://devapitms.erunix.id/api/v1/fleet/truckAccident/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/fleet/truckAccident/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/fleet/truckAccident/1';
$response = $client->delete(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Service Order : Untuk transaksi Service Order secara berkala
List data Service Order
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/fleet/serviceOrder?search=...&start=0&pageSize=10&sortField=vehicle_desc&sortOrder=desc" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/fleet/serviceOrder"
);
const params = {
"search": "...",
"start": "0",
"pageSize": "10",
"sortField": "vehicle_desc",
"sortOrder": "desc",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/fleet/serviceOrder';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'search' => '...',
'start' => '0',
'pageSize' => '10',
'sortField' => 'vehicle_desc',
'sortOrder' => 'desc',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Simpan data Service Order
requires authentication
Example request:
curl --request POST \
"https://devapitms.erunix.id/api/v1/fleet/serviceOrder" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"reference\": \"...\",
\"vehicle_id\": 0,
\"odometer\": \"...\",
\"registered_date\": \"2024-07-01\",
\"registered_time\": \"08:00:00\",
\"completion_date\": \"2024-07-01\",
\"completion_time\": \"08:00:00\",
\"workshop_id\": 0,
\"service_type\": \"...\",
\"service_status\": \"...\",
\"assigned_to\": 0,
\"vat\": \"...\",
\"task_entries\": \"...\",
\"sub_total\": \"...\",
\"total_vat\": \"...\",
\"total_amount\": \"...\",
\"remark\": \"...\"
}"
const url = new URL(
"https://devapitms.erunix.id/api/v1/fleet/serviceOrder"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"reference": "...",
"vehicle_id": 0,
"odometer": "...",
"registered_date": "2024-07-01",
"registered_time": "08:00:00",
"completion_date": "2024-07-01",
"completion_time": "08:00:00",
"workshop_id": 0,
"service_type": "...",
"service_status": "...",
"assigned_to": 0,
"vat": "...",
"task_entries": "...",
"sub_total": "...",
"total_vat": "...",
"total_amount": "...",
"remark": "..."
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/fleet/serviceOrder';
$response = $client->post(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'reference' => '...',
'vehicle_id' => 0,
'odometer' => '...',
'registered_date' => '2024-07-01',
'registered_time' => '08:00:00',
'completion_date' => '2024-07-01',
'completion_time' => '08:00:00',
'workshop_id' => 0,
'service_type' => '...',
'service_status' => '...',
'assigned_to' => 0,
'vat' => '...',
'task_entries' => '...',
'sub_total' => '...',
'total_vat' => '...',
'total_amount' => '...',
'remark' => '...',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Perbaharui data Service Order
requires authentication
Example request:
curl --request PUT \
"https://devapitms.erunix.id/api/v1/fleet/serviceOrder/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"reference\": \"...\",
\"vehicle_id\": 0,
\"odometer\": \"...\",
\"registered_date\": \"2024-07-01\",
\"registered_time\": \"08:00:00\",
\"completion_date\": \"2024-07-01\",
\"completion_time\": \"08:00:00\",
\"workshop_id\": 0,
\"service_type\": \"...\",
\"service_status\": \"...\",
\"assigned_to\": 0,
\"vat\": \"...\",
\"task_entries\": \"...\",
\"sub_total\": \"...\",
\"total_vat\": \"...\",
\"total_amount\": \"...\",
\"remark\": \"...\"
}"
const url = new URL(
"https://devapitms.erunix.id/api/v1/fleet/serviceOrder/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"reference": "...",
"vehicle_id": 0,
"odometer": "...",
"registered_date": "2024-07-01",
"registered_time": "08:00:00",
"completion_date": "2024-07-01",
"completion_time": "08:00:00",
"workshop_id": 0,
"service_type": "...",
"service_status": "...",
"assigned_to": 0,
"vat": "...",
"task_entries": "...",
"sub_total": "...",
"total_vat": "...",
"total_amount": "...",
"remark": "..."
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/fleet/serviceOrder/1';
$response = $client->put(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'reference' => '...',
'vehicle_id' => 0,
'odometer' => '...',
'registered_date' => '2024-07-01',
'registered_time' => '08:00:00',
'completion_date' => '2024-07-01',
'completion_time' => '08:00:00',
'workshop_id' => 0,
'service_type' => '...',
'service_status' => '...',
'assigned_to' => 0,
'vat' => '...',
'task_entries' => '...',
'sub_total' => '...',
'total_vat' => '...',
'total_amount' => '...',
'remark' => '...',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Hapus data Service Order
requires authentication
Example request:
curl --request DELETE \
"https://devapitms.erunix.id/api/v1/fleet/serviceOrder/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/fleet/serviceOrder/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/fleet/serviceOrder/1';
$response = $client->delete(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Service Task : Untuk master Service Task yang dapat di gunakan pada Service Order
List data Service Task
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/fleet/serviceTask?search=...&start=0&pageSize=10&sortField=name&sortOrder=desc" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/fleet/serviceTask"
);
const params = {
"search": "...",
"start": "0",
"pageSize": "10",
"sortField": "name",
"sortOrder": "desc",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/fleet/serviceTask';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'search' => '...',
'start' => '0',
'pageSize' => '10',
'sortField' => 'name',
'sortOrder' => 'desc',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Simpan data Service Task
requires authentication
Example request:
curl --request POST \
"https://devapitms.erunix.id/api/v1/fleet/serviceTask" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"...\",
\"description\": \"...\",
\"is_active\": 0
}"
const url = new URL(
"https://devapitms.erunix.id/api/v1/fleet/serviceTask"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "...",
"description": "...",
"is_active": 0
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/fleet/serviceTask';
$response = $client->post(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'name' => '...',
'description' => '...',
'is_active' => 0,
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Perbaharui data Service Task
requires authentication
Example request:
curl --request PUT \
"https://devapitms.erunix.id/api/v1/fleet/serviceTask/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"...\",
\"description\": \"...\",
\"is_active\": 0
}"
const url = new URL(
"https://devapitms.erunix.id/api/v1/fleet/serviceTask/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "...",
"description": "...",
"is_active": 0
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/fleet/serviceTask/1';
$response = $client->put(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'name' => '...',
'description' => '...',
'is_active' => 0,
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Hapus data Service Task
requires authentication
Example request:
curl --request DELETE \
"https://devapitms.erunix.id/api/v1/fleet/serviceTask/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/fleet/serviceTask/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/fleet/serviceTask/1';
$response = $client->delete(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Master
Master data Transport Management System
Area
List data Area
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/master/area?search=...&start=0&pageSize=10&sortField=description&sortOrder=desc" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/area"
);
const params = {
"search": "...",
"start": "0",
"pageSize": "10",
"sortField": "description",
"sortOrder": "desc",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/area';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'search' => '...',
'start' => '0',
'pageSize' => '10',
'sortField' => 'description',
'sortOrder' => 'desc',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Simpan data Area
requires authentication
Example request:
curl --request POST \
"https://devapitms.erunix.id/api/v1/master/area" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"area_id\": \"...\",
\"description\": \"...\",
\"area_type\": \"...\",
\"area_group\": 0,
\"additional_information\": \"...\",
\"area_zone_id\": 0
}"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/area"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"area_id": "...",
"description": "...",
"area_type": "...",
"area_group": 0,
"additional_information": "...",
"area_zone_id": 0
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/area';
$response = $client->post(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'area_id' => '...',
'description' => '...',
'area_type' => '...',
'area_group' => 0,
'additional_information' => '...',
'area_zone_id' => 0,
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Perbaharui data Area
requires authentication
Example request:
curl --request PUT \
"https://devapitms.erunix.id/api/v1/master/area/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"area_id\": \"...\",
\"description\": \"...\",
\"area_type\": \"...\",
\"area_group\": 0,
\"additional_information\": \"...\",
\"area_zone_id\": 0
}"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/area/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"area_id": "...",
"description": "...",
"area_type": "...",
"area_group": 0,
"additional_information": "...",
"area_zone_id": 0
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/area/1';
$response = $client->put(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'area_id' => '...',
'description' => '...',
'area_type' => '...',
'area_group' => 0,
'additional_information' => '...',
'area_zone_id' => 0,
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Client
List data Client
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/master/client?search=...&start=0&pageSize=10&sortField=name&sortOrder=desc" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/client"
);
const params = {
"search": "...",
"start": "0",
"pageSize": "10",
"sortField": "name",
"sortOrder": "desc",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/client';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'search' => '...',
'start' => '0',
'pageSize' => '10',
'sortField' => 'name',
'sortOrder' => 'desc',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Simpan data Client
requires authentication
Example request:
curl --request POST \
"https://devapitms.erunix.id/api/v1/master/client" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"client_id\": \"...\",
\"name\": \"...\",
\"address1\": \"...\",
\"address2\": \"...\",
\"city\": \"...\",
\"postal_code\": \"...\",
\"phone\": \"...\",
\"fax\": \"...\",
\"pic\": \"...\",
\"email\": \"...\",
\"additional_information\": \"...\",
\"payment_term\": \"...\",
\"is_by_type\": \"...\"
}"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/client"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"client_id": "...",
"name": "...",
"address1": "...",
"address2": "...",
"city": "...",
"postal_code": "...",
"phone": "...",
"fax": "...",
"pic": "...",
"email": "...",
"additional_information": "...",
"payment_term": "...",
"is_by_type": "..."
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/client';
$response = $client->post(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'client_id' => '...',
'name' => '...',
'address1' => '...',
'address2' => '...',
'city' => '...',
'postal_code' => '...',
'phone' => '...',
'fax' => '...',
'pic' => '...',
'email' => '...',
'additional_information' => '...',
'payment_term' => '...',
'is_by_type' => '...',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Perbaharui data Client
requires authentication
Example request:
curl --request PUT \
"https://devapitms.erunix.id/api/v1/master/client/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"client_id\": \"...\",
\"name\": \"...\",
\"address1\": \"...\",
\"address2\": \"...\",
\"city\": \"...\",
\"postal_code\": \"...\",
\"phone\": \"...\",
\"fax\": \"...\",
\"pic\": \"...\",
\"email\": \"...\",
\"additional_information\": \"...\",
\"payment_term\": \"...\",
\"is_by_type\": \"...\"
}"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/client/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"client_id": "...",
"name": "...",
"address1": "...",
"address2": "...",
"city": "...",
"postal_code": "...",
"phone": "...",
"fax": "...",
"pic": "...",
"email": "...",
"additional_information": "...",
"payment_term": "...",
"is_by_type": "..."
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/client/1';
$response = $client->put(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'client_id' => '...',
'name' => '...',
'address1' => '...',
'address2' => '...',
'city' => '...',
'postal_code' => '...',
'phone' => '...',
'fax' => '...',
'pic' => '...',
'email' => '...',
'additional_information' => '...',
'payment_term' => '...',
'is_by_type' => '...',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Hapus data Client
requires authentication
Example request:
curl --request DELETE \
"https://devapitms.erunix.id/api/v1/master/client/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/client/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/client/1';
$response = $client->delete(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Customer
List data Customer
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/master/customer?search=...&start=0&pageSize=10&sortField=name&sortOrder=desc" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/customer"
);
const params = {
"search": "...",
"start": "0",
"pageSize": "10",
"sortField": "name",
"sortOrder": "desc",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/customer';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'search' => '...',
'start' => '0',
'pageSize' => '10',
'sortField' => 'name',
'sortOrder' => 'desc',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Simpan data Customer
requires authentication
Example request:
curl --request POST \
"https://devapitms.erunix.id/api/v1/master/customer" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"customer_id\": \"...\",
\"name\": \"...\",
\"address1\": \"...\",
\"address2\": \"...\",
\"type\": \"...\",
\"city\": \"...\",
\"position\": \"...\",
\"region_id\": \"...\",
\"area_id\": \"...\",
\"postal_code_id\": 0,
\"postal_code\": \"...\",
\"phone\": \"...\",
\"fax\": \"...\",
\"pic\": \"...\",
\"email\": \"...\",
\"additional_information\": \"...\",
\"latitude\": \"...\",
\"longitude\": \"...\",
\"radius\": \"...\",
\"geofence_area\": \"...\",
\"vehicle_type_id\": \"...\",
\"max_volume\": \"...\",
\"max_weight\": \"...\"
}"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/customer"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"customer_id": "...",
"name": "...",
"address1": "...",
"address2": "...",
"type": "...",
"city": "...",
"position": "...",
"region_id": "...",
"area_id": "...",
"postal_code_id": 0,
"postal_code": "...",
"phone": "...",
"fax": "...",
"pic": "...",
"email": "...",
"additional_information": "...",
"latitude": "...",
"longitude": "...",
"radius": "...",
"geofence_area": "...",
"vehicle_type_id": "...",
"max_volume": "...",
"max_weight": "..."
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/customer';
$response = $client->post(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'customer_id' => '...',
'name' => '...',
'address1' => '...',
'address2' => '...',
'type' => '...',
'city' => '...',
'position' => '...',
'region_id' => '...',
'area_id' => '...',
'postal_code_id' => 0,
'postal_code' => '...',
'phone' => '...',
'fax' => '...',
'pic' => '...',
'email' => '...',
'additional_information' => '...',
'latitude' => '...',
'longitude' => '...',
'radius' => '...',
'geofence_area' => '...',
'vehicle_type_id' => '...',
'max_volume' => '...',
'max_weight' => '...',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Perbaharui data Customer
requires authentication
Example request:
curl --request PUT \
"https://devapitms.erunix.id/api/v1/master/customer/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"customer_id\": \"...\",
\"name\": \"...\",
\"address1\": \"...\",
\"address2\": \"...\",
\"type\": \"...\",
\"city\": \"...\",
\"position\": \"...\",
\"region_id\": \"...\",
\"area_id\": \"...\",
\"postal_code_id\": 0,
\"postal_code\": \"...\",
\"phone\": \"...\",
\"fax\": \"...\",
\"pic\": \"...\",
\"email\": \"...\",
\"additional_information\": \"...\",
\"latitude\": \"...\",
\"longitude\": \"...\",
\"radius\": \"...\",
\"geofence_area\": \"...\",
\"vehicle_type_id\": \"...\",
\"max_volume\": \"...\",
\"max_weight\": \"...\"
}"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/customer/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"customer_id": "...",
"name": "...",
"address1": "...",
"address2": "...",
"type": "...",
"city": "...",
"position": "...",
"region_id": "...",
"area_id": "...",
"postal_code_id": 0,
"postal_code": "...",
"phone": "...",
"fax": "...",
"pic": "...",
"email": "...",
"additional_information": "...",
"latitude": "...",
"longitude": "...",
"radius": "...",
"geofence_area": "...",
"vehicle_type_id": "...",
"max_volume": "...",
"max_weight": "..."
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/customer/1';
$response = $client->put(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'customer_id' => '...',
'name' => '...',
'address1' => '...',
'address2' => '...',
'type' => '...',
'city' => '...',
'position' => '...',
'region_id' => '...',
'area_id' => '...',
'postal_code_id' => 0,
'postal_code' => '...',
'phone' => '...',
'fax' => '...',
'pic' => '...',
'email' => '...',
'additional_information' => '...',
'latitude' => '...',
'longitude' => '...',
'radius' => '...',
'geofence_area' => '...',
'vehicle_type_id' => '...',
'max_volume' => '...',
'max_weight' => '...',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Hapus data Customer
requires authentication
Example request:
curl --request DELETE \
"https://devapitms.erunix.id/api/v1/master/customer/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/customer/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/customer/1';
$response = $client->delete(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Download data Customer
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/master/customer/download" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/customer/download"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/customer/download';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Transporter
List data Transporter
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/master/transporter?search=...&start=0&pageSize=10&sortField=name&sortOrder=desc" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/transporter"
);
const params = {
"search": "...",
"start": "0",
"pageSize": "10",
"sortField": "name",
"sortOrder": "desc",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/transporter';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'search' => '...',
'start' => '0',
'pageSize' => '10',
'sortField' => 'name',
'sortOrder' => 'desc',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Simpan data Transporter
requires authentication
Example request:
curl --request POST \
"https://devapitms.erunix.id/api/v1/master/transporter" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"transporter_id\": \"...\",
\"name\": \"...\",
\"address1\": \"...\",
\"address2\": \"...\",
\"city\": \"...\",
\"postal_code\": \"...\",
\"phone\": \"...\",
\"fax\": \"...\",
\"transport_mode\": \"...\",
\"additional_information\": \"...\",
\"payment_term\": \"...\"
}"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/transporter"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"transporter_id": "...",
"name": "...",
"address1": "...",
"address2": "...",
"city": "...",
"postal_code": "...",
"phone": "...",
"fax": "...",
"transport_mode": "...",
"additional_information": "...",
"payment_term": "..."
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/transporter';
$response = $client->post(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'transporter_id' => '...',
'name' => '...',
'address1' => '...',
'address2' => '...',
'city' => '...',
'postal_code' => '...',
'phone' => '...',
'fax' => '...',
'transport_mode' => '...',
'additional_information' => '...',
'payment_term' => '...',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Perbaharui data Transporter
requires authentication
Example request:
curl --request PUT \
"https://devapitms.erunix.id/api/v1/master/transporter/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"transporter_id\": \"...\",
\"name\": \"...\",
\"address1\": \"...\",
\"address2\": \"...\",
\"city\": \"...\",
\"postal_code\": \"...\",
\"phone\": \"...\",
\"fax\": \"...\",
\"transport_mode\": \"...\",
\"additional_information\": \"...\",
\"payment_term\": \"...\"
}"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/transporter/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"transporter_id": "...",
"name": "...",
"address1": "...",
"address2": "...",
"city": "...",
"postal_code": "...",
"phone": "...",
"fax": "...",
"transport_mode": "...",
"additional_information": "...",
"payment_term": "..."
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/transporter/1';
$response = $client->put(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'transporter_id' => '...',
'name' => '...',
'address1' => '...',
'address2' => '...',
'city' => '...',
'postal_code' => '...',
'phone' => '...',
'fax' => '...',
'transport_mode' => '...',
'additional_information' => '...',
'payment_term' => '...',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Hapus data Transporter
requires authentication
Example request:
curl --request DELETE \
"https://devapitms.erunix.id/api/v1/master/transporter/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/transporter/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/transporter/1';
$response = $client->delete(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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
List data Driver
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/master/driver?search=...&start=0&pageSize=10&sortField=name&sortOrder=desc" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/driver"
);
const params = {
"search": "...",
"start": "0",
"pageSize": "10",
"sortField": "name",
"sortOrder": "desc",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/driver';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'search' => '...',
'start' => '0',
'pageSize' => '10',
'sortField' => 'name',
'sortOrder' => 'desc',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Simpan data Driver
requires authentication
Example request:
curl --request POST \
"https://devapitms.erunix.id/api/v1/master/driver" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"...\",
\"address1\": \"...\",
\"address2\": \"...\",
\"city\": \"...\",
\"phone\": \"...\",
\"transporter_id\": \"...\"
}"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/driver"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "...",
"address1": "...",
"address2": "...",
"city": "...",
"phone": "...",
"transporter_id": "..."
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/driver';
$response = $client->post(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'name' => '...',
'address1' => '...',
'address2' => '...',
'city' => '...',
'phone' => '...',
'transporter_id' => '...',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Perbaharui data Driver
requires authentication
Example request:
curl --request PUT \
"https://devapitms.erunix.id/api/v1/master/driver/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"...\",
\"address1\": \"...\",
\"address2\": \"...\",
\"city\": \"...\",
\"phone\": \"...\",
\"transporter_id\": \"...\"
}"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/driver/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "...",
"address1": "...",
"address2": "...",
"city": "...",
"phone": "...",
"transporter_id": "..."
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/driver/1';
$response = $client->put(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'name' => '...',
'address1' => '...',
'address2' => '...',
'city' => '...',
'phone' => '...',
'transporter_id' => '...',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Hapus data Driver
requires authentication
Example request:
curl --request DELETE \
"https://devapitms.erunix.id/api/v1/master/driver/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/driver/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/driver/1';
$response = $client->delete(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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 Type
List data Vehicle Type
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/master/vehicleType?search=...&start=0&pageSize=10&sortField=description&sortOrder=desc" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/vehicleType"
);
const params = {
"search": "...",
"start": "0",
"pageSize": "10",
"sortField": "description",
"sortOrder": "desc",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/vehicleType';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'search' => '...',
'start' => '0',
'pageSize' => '10',
'sortField' => 'description',
'sortOrder' => 'desc',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Simpan data Vehicle Type
requires authentication
Example request:
curl --request POST \
"https://devapitms.erunix.id/api/v1/master/vehicleType" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"type_id\": \"...\",
\"description\": \"...\",
\"volume_cap\": \"...\",
\"weight_cap\": \"...\",
\"sequence_no\": 1
}"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/vehicleType"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"type_id": "...",
"description": "...",
"volume_cap": "...",
"weight_cap": "...",
"sequence_no": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/vehicleType';
$response = $client->post(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'type_id' => '...',
'description' => '...',
'volume_cap' => '...',
'weight_cap' => '...',
'sequence_no' => 1,
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Perbaharui data Vehicle Type
requires authentication
Example request:
curl --request PUT \
"https://devapitms.erunix.id/api/v1/master/vehicleType/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"type_id\": \"...\",
\"description\": \"...\",
\"volume_cap\": \"...\",
\"weight_cap\": \"...\",
\"sequence_no\": 1
}"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/vehicleType/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"type_id": "...",
"description": "...",
"volume_cap": "...",
"weight_cap": "...",
"sequence_no": 1
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/vehicleType/1';
$response = $client->put(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'type_id' => '...',
'description' => '...',
'volume_cap' => '...',
'weight_cap' => '...',
'sequence_no' => 1,
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Hapus data Vehicle Type
requires authentication
Example request:
curl --request DELETE \
"https://devapitms.erunix.id/api/v1/master/vehicleType/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/vehicleType/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/vehicleType/1';
$response = $client->delete(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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
List data Vehicle
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/master/vehicle?search=...&start=0&pageSize=10&sortField=vehicle_id&sortOrder=desc" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/vehicle"
);
const params = {
"search": "...",
"start": "0",
"pageSize": "10",
"sortField": "vehicle_id",
"sortOrder": "desc",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/vehicle';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'search' => '...',
'start' => '0',
'pageSize' => '10',
'sortField' => 'vehicle_id',
'sortOrder' => 'desc',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Simpan data Vehicle
requires authentication
Example request:
curl --request POST \
"https://devapitms.erunix.id/api/v1/master/vehicle" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"vehicle_id\": \"...\",
\"driver\": \"...\",
\"co_driver\": \"...\",
\"transporter_id\": \"...\",
\"status\": \"1\",
\"type\": \"...\",
\"max_volume\": \"...\",
\"max_weight\": \"...\",
\"client_id\": \"...\",
\"subcon\": \"...\",
\"period_invoice\": \"...\",
\"additional_information\": \"...\"
}"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/vehicle"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"vehicle_id": "...",
"driver": "...",
"co_driver": "...",
"transporter_id": "...",
"status": "1",
"type": "...",
"max_volume": "...",
"max_weight": "...",
"client_id": "...",
"subcon": "...",
"period_invoice": "...",
"additional_information": "..."
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/vehicle';
$response = $client->post(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'vehicle_id' => '...',
'driver' => '...',
'co_driver' => '...',
'transporter_id' => '...',
'status' => '1',
'type' => '...',
'max_volume' => '...',
'max_weight' => '...',
'client_id' => '...',
'subcon' => '...',
'period_invoice' => '...',
'additional_information' => '...',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Perbaharui data Vehicle
requires authentication
Example request:
curl --request PUT \
"https://devapitms.erunix.id/api/v1/master/vehicle/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"vehicle_id\": \"...\",
\"driver\": \"...\",
\"co_driver\": \"...\",
\"transporter_id\": \"...\",
\"status\": \"1\",
\"type\": \"...\",
\"max_volume\": \"...\",
\"max_weight\": \"...\",
\"client_id\": \"...\",
\"subcon\": \"...\",
\"period_invoice\": \"...\",
\"additional_information\": \"...\"
}"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/vehicle/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"vehicle_id": "...",
"driver": "...",
"co_driver": "...",
"transporter_id": "...",
"status": "1",
"type": "...",
"max_volume": "...",
"max_weight": "...",
"client_id": "...",
"subcon": "...",
"period_invoice": "...",
"additional_information": "..."
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/vehicle/1';
$response = $client->put(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'vehicle_id' => '...',
'driver' => '...',
'co_driver' => '...',
'transporter_id' => '...',
'status' => '1',
'type' => '...',
'max_volume' => '...',
'max_weight' => '...',
'client_id' => '...',
'subcon' => '...',
'period_invoice' => '...',
'additional_information' => '...',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Hapus Vehicle
requires authentication
Example request:
curl --request DELETE \
"https://devapitms.erunix.id/api/v1/master/vehicle/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/vehicle/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/vehicle/1';
$response = $client->delete(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Transporter Rate
List data Transporter Rate
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/master/transporter-rate?search=...&start=0&pageSize=10&sortField=client_desc&sortOrder=desc" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/transporter-rate"
);
const params = {
"search": "...",
"start": "0",
"pageSize": "10",
"sortField": "client_desc",
"sortOrder": "desc",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/transporter-rate';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'search' => '...',
'start' => '0',
'pageSize' => '10',
'sortField' => 'client_desc',
'sortOrder' => 'desc',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Simpan data Transporter Rate
requires authentication
Example request:
curl --request POST \
"https://devapitms.erunix.id/api/v1/master/transporter-rate" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"rate_status\": \"1\",
\"client_id\": \"...\",
\"transporter_id\": \"...\",
\"origin_id\": \"...\",
\"destination_id\": \"...\",
\"type_id\": \"...\",
\"status\": \"1\",
\"currency\": \"IDR\",
\"rate_type\": \"1\",
\"vehicle_rate\": \"1\",
\"unloading_cost\": \"...\",
\"remark\": \"...\"
}"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/transporter-rate"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"rate_status": "1",
"client_id": "...",
"transporter_id": "...",
"origin_id": "...",
"destination_id": "...",
"type_id": "...",
"status": "1",
"currency": "IDR",
"rate_type": "1",
"vehicle_rate": "1",
"unloading_cost": "...",
"remark": "..."
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/transporter-rate';
$response = $client->post(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'rate_status' => '1',
'client_id' => '...',
'transporter_id' => '...',
'origin_id' => '...',
'destination_id' => '...',
'type_id' => '...',
'status' => '1',
'currency' => 'IDR',
'rate_type' => '1',
'vehicle_rate' => '1',
'unloading_cost' => '...',
'remark' => '...',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Perbaharui data Transporter Rate
requires authentication
Example request:
curl --request PUT \
"https://devapitms.erunix.id/api/v1/master/transporter-rate/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"rate_status\": \"1\",
\"client_id\": \"...\",
\"transporter_id\": \"...\",
\"origin_id\": \"...\",
\"destination_id\": \"...\",
\"type_id\": \"...\",
\"status\": \"1\",
\"currency\": \"IDR\",
\"rate_type\": \"1\",
\"vehicle_rate\": \"1\",
\"unloading_cost\": \"...\",
\"remark\": \"...\"
}"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/transporter-rate/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"rate_status": "1",
"client_id": "...",
"transporter_id": "...",
"origin_id": "...",
"destination_id": "...",
"type_id": "...",
"status": "1",
"currency": "IDR",
"rate_type": "1",
"vehicle_rate": "1",
"unloading_cost": "...",
"remark": "..."
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/transporter-rate/1';
$response = $client->put(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'rate_status' => '1',
'client_id' => '...',
'transporter_id' => '...',
'origin_id' => '...',
'destination_id' => '...',
'type_id' => '...',
'status' => '1',
'currency' => 'IDR',
'rate_type' => '1',
'vehicle_rate' => '1',
'unloading_cost' => '...',
'remark' => '...',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Hapus data Transporter Rate
requires authentication
Example request:
curl --request DELETE \
"https://devapitms.erunix.id/api/v1/master/transporter-rate/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/transporter-rate/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/transporter-rate/1';
$response = $client->delete(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Download Transporter Rate
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/master/transporter-rate/download" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/transporter-rate/download"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/transporter-rate/download';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Client Rate
List data Client Rate
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/master/client-rate?search=...&start=0&pageSize=10&sortField=client_desc&sortOrder=desc" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/client-rate"
);
const params = {
"search": "...",
"start": "0",
"pageSize": "10",
"sortField": "client_desc",
"sortOrder": "desc",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/client-rate';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'search' => '...',
'start' => '0',
'pageSize' => '10',
'sortField' => 'client_desc',
'sortOrder' => 'desc',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Simpan data Client Rate
requires authentication
Example request:
curl --request POST \
"https://devapitms.erunix.id/api/v1/master/client-rate" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"rate_status\": \"1\",
\"client_id\": \"...\",
\"transporter_id\": \"...\",
\"origin_id\": \"...\",
\"destination_id\": \"...\",
\"type_id\": \"...\",
\"status\": \"1\",
\"currency\": \"IDR\",
\"rate_type\": \"1\",
\"vehicle_rate\": \"1\",
\"unloading_cost\": \"...\",
\"remark\": \"...\"
}"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/client-rate"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"rate_status": "1",
"client_id": "...",
"transporter_id": "...",
"origin_id": "...",
"destination_id": "...",
"type_id": "...",
"status": "1",
"currency": "IDR",
"rate_type": "1",
"vehicle_rate": "1",
"unloading_cost": "...",
"remark": "..."
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/client-rate';
$response = $client->post(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'rate_status' => '1',
'client_id' => '...',
'transporter_id' => '...',
'origin_id' => '...',
'destination_id' => '...',
'type_id' => '...',
'status' => '1',
'currency' => 'IDR',
'rate_type' => '1',
'vehicle_rate' => '1',
'unloading_cost' => '...',
'remark' => '...',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Perbaharui data Client Rate
requires authentication
Example request:
curl --request PUT \
"https://devapitms.erunix.id/api/v1/master/client-rate/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"rate_status\": \"1\",
\"client_id\": \"...\",
\"transporter_id\": \"...\",
\"origin_id\": \"...\",
\"destination_id\": \"...\",
\"type_id\": \"...\",
\"status\": \"1\",
\"currency\": \"IDR\",
\"rate_type\": \"1\",
\"vehicle_rate\": \"1\",
\"unloading_cost\": \"...\",
\"remark\": \"...\"
}"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/client-rate/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"rate_status": "1",
"client_id": "...",
"transporter_id": "...",
"origin_id": "...",
"destination_id": "...",
"type_id": "...",
"status": "1",
"currency": "IDR",
"rate_type": "1",
"vehicle_rate": "1",
"unloading_cost": "...",
"remark": "..."
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/client-rate/1';
$response = $client->put(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'rate_status' => '1',
'client_id' => '...',
'transporter_id' => '...',
'origin_id' => '...',
'destination_id' => '...',
'type_id' => '...',
'status' => '1',
'currency' => 'IDR',
'rate_type' => '1',
'vehicle_rate' => '1',
'unloading_cost' => '...',
'remark' => '...',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Hapus data Client Rate
requires authentication
Example request:
curl --request DELETE \
"https://devapitms.erunix.id/api/v1/master/client-rate/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/client-rate/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/client-rate/1';
$response = $client->delete(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Download Client Rate
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/master/client-rate/download" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/client-rate/download"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/client-rate/download';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Workshop
List data Workshop
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/master/workshop?search=...&start=0&pageSize=10&sortField=name&sortOrder=desc" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/workshop"
);
const params = {
"search": "...",
"start": "0",
"pageSize": "10",
"sortField": "name",
"sortOrder": "desc",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/workshop';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'search' => '...',
'start' => '0',
'pageSize' => '10',
'sortField' => 'name',
'sortOrder' => 'desc',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Simpan data Workshop
requires authentication
Example request:
curl --request POST \
"https://devapitms.erunix.id/api/v1/master/workshop" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"workshop_id\": \"...\",
\"name\": \"...\",
\"address1\": \"...\",
\"address2\": \"...\",
\"city\": \"...\",
\"postal_code\": \"...\",
\"phone\": \"...\",
\"additional_information\": \"...\",
\"is_active\": 1
}"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/workshop"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"workshop_id": "...",
"name": "...",
"address1": "...",
"address2": "...",
"city": "...",
"postal_code": "...",
"phone": "...",
"additional_information": "...",
"is_active": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/workshop';
$response = $client->post(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'workshop_id' => '...',
'name' => '...',
'address1' => '...',
'address2' => '...',
'city' => '...',
'postal_code' => '...',
'phone' => '...',
'additional_information' => '...',
'is_active' => 1,
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Perbaharui data Workshop
requires authentication
Example request:
curl --request PUT \
"https://devapitms.erunix.id/api/v1/master/workshop/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"workshop_id\": \"...\",
\"name\": \"...\",
\"address1\": \"...\",
\"address2\": \"...\",
\"city\": \"...\",
\"postal_code\": \"...\",
\"phone\": \"...\",
\"additional_information\": \"...\",
\"is_active\": 1
}"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/workshop/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"workshop_id": "...",
"name": "...",
"address1": "...",
"address2": "...",
"city": "...",
"postal_code": "...",
"phone": "...",
"additional_information": "...",
"is_active": 1
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/workshop/1';
$response = $client->put(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'workshop_id' => '...',
'name' => '...',
'address1' => '...',
'address2' => '...',
'city' => '...',
'postal_code' => '...',
'phone' => '...',
'additional_information' => '...',
'is_active' => 1,
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Hapus data Workshop
requires authentication
Example request:
curl --request DELETE \
"https://devapitms.erunix.id/api/v1/master/workshop/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/workshop/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/workshop/1';
$response = $client->delete(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Mechanical
List data Mechanic
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/master/mechanic?search=...&start=0&pageSize=10&sortField=name&sortOrder=desc" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/mechanic"
);
const params = {
"search": "...",
"start": "0",
"pageSize": "10",
"sortField": "name",
"sortOrder": "desc",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/mechanic';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'search' => '...',
'start' => '0',
'pageSize' => '10',
'sortField' => 'name',
'sortOrder' => 'desc',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Simpan data Mechanic
requires authentication
Example request:
curl --request POST \
"https://devapitms.erunix.id/api/v1/master/mechanic" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"...\",
\"address1\": \"...\",
\"address2\": \"...\",
\"city\": \"...\",
\"phone\": \"...\",
\"workshop_id\": 0
}"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/mechanic"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "...",
"address1": "...",
"address2": "...",
"city": "...",
"phone": "...",
"workshop_id": 0
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/mechanic';
$response = $client->post(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'name' => '...',
'address1' => '...',
'address2' => '...',
'city' => '...',
'phone' => '...',
'workshop_id' => 0,
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Perbaharui data Mechanic
requires authentication
Example request:
curl --request PUT \
"https://devapitms.erunix.id/api/v1/master/mechanic/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"...\",
\"address1\": \"...\",
\"address2\": \"...\",
\"city\": \"...\",
\"phone\": \"...\",
\"workshop_id\": 0
}"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/mechanic/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "...",
"address1": "...",
"address2": "...",
"city": "...",
"phone": "...",
"workshop_id": 0
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/mechanic/1';
$response = $client->put(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'name' => '...',
'address1' => '...',
'address2' => '...',
'city' => '...',
'phone' => '...',
'workshop_id' => 0,
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Hapus data Mechanic
requires authentication
Example request:
curl --request DELETE \
"https://devapitms.erunix.id/api/v1/master/mechanic/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/mechanic/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/mechanic/1';
$response = $client->delete(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Postal Code
List data Postal Code
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/master/postal-code?search=...&start=0&pageSize=10&sortField=urban_village&sortOrder=desc" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/postal-code"
);
const params = {
"search": "...",
"start": "0",
"pageSize": "10",
"sortField": "urban_village",
"sortOrder": "desc",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/postal-code';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'search' => '...',
'start' => '0',
'pageSize' => '10',
'sortField' => 'urban_village',
'sortOrder' => 'desc',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Perbaharui data Postal Code
requires authentication
Example request:
curl --request PUT \
"https://devapitms.erunix.id/api/v1/master/postal-code/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"urban_village\": \"...\",
\"sub_district\": \"...\",
\"district\": \"...\",
\"province\": \"...\",
\"area_id\": \"...\",
\"postal_code\": \"...\"
}"
const url = new URL(
"https://devapitms.erunix.id/api/v1/master/postal-code/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"urban_village": "...",
"sub_district": "...",
"district": "...",
"province": "...",
"area_id": "...",
"postal_code": "..."
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/master/postal-code/1';
$response = $client->put(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'urban_village' => '...',
'sub_district' => '...',
'district' => '...',
'province' => '...',
'area_id' => '...',
'postal_code' => '...',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Options
API endpoints for managing Options
List Option Areas
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/option/area?search=..." \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/option/area"
);
const params = {
"search": "...",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/option/area';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'search' => '...',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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 Option Transporters
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/option/transporter?search=..." \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/option/transporter"
);
const params = {
"search": "...",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/option/transporter';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'search' => '...',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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 Option Workshops
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/option/workshop?search=..." \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/option/workshop"
);
const params = {
"search": "...",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/option/workshop';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'search' => '...',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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 Option Vehicle Types
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/option/vehicleType?search=..." \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/option/vehicleType"
);
const params = {
"search": "...",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/option/vehicleType';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'search' => '...',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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 Option Drivers
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/option/driver?search=..." \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/option/driver"
);
const params = {
"search": "...",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/option/driver';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'search' => '...',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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 Option Clients
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/option/client?search=..." \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/option/client"
);
const params = {
"search": "...",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/option/client';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'search' => '...',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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 Option Vehicles
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/option/vehicle?search=..." \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/option/vehicle"
);
const params = {
"search": "...",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/option/vehicle';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'search' => '...',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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 Option Mechanics
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/option/mechanic?search=..." \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/option/mechanic"
);
const params = {
"search": "...",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/option/mechanic';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'search' => '...',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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 Option Service Tasks
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/option/serviceTask?search=..." \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/option/serviceTask"
);
const params = {
"search": "...",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/option/serviceTask';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'search' => '...',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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 Option Customers
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/option/customer?search=..." \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/option/customer"
);
const params = {
"search": "...",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/option/customer';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'search' => '...',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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 Option UOMs
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/option/uom?search=..." \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/option/uom"
);
const params = {
"search": "...",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/option/uom';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'search' => '...',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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 Option Component Transports
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/option/componentTransport?search=..." \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/option/componentTransport"
);
const params = {
"search": "...",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/option/componentTransport';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'search' => '...',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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 Option Component PODs
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/option/componentPod?search=..." \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/option/componentPod"
);
const params = {
"search": "...",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/option/componentPod';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'search' => '...',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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 Option UOMs
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/option/uom2?search=..." \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/option/uom2"
);
const params = {
"search": "...",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/option/uom2';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'search' => '...',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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 Option Roles
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/option/role?search=..." \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/option/role"
);
const params = {
"search": "...",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/option/role';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'search' => '...',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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 Option Setting
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/option/settingOption?search=..." \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/option/settingOption"
);
const params = {
"search": "...",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/option/settingOption';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'search' => '...',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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 Option Ring Codes
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/option/ringCode?search=..." \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/option/ringCode"
);
const params = {
"search": "...",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/option/ringCode';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'search' => '...',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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 Option Postal Codes
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/option/postal-code?search=..." \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/option/postal-code"
);
const params = {
"search": "...",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/option/postal-code';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'search' => '...',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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 Option All Clients
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/option/clientAll?search=..." \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/option/clientAll"
);
const params = {
"search": "...",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/option/clientAll';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'search' => '...',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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 Option Sales Orders
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/option/sales-order?search=..." \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/option/sales-order"
);
const params = {
"search": "...",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/option/sales-order';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'search' => '...',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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 Option Product Sales Orders
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/option/product-sales-order?search=..." \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/option/product-sales-order"
);
const params = {
"search": "...",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/option/product-sales-order';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'search' => '...',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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 Option Area Zones
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/option/area-zone?search=..." \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/option/area-zone"
);
const params = {
"search": "...",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/option/area-zone';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'search' => '...',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Report
Profit & Lost
List data Report Profit & Lost
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/report/pnl?start_date=2024-07-01&end_date=2024-07-30" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/report/pnl"
);
const params = {
"start_date": "2024-07-01",
"end_date": "2024-07-30",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/report/pnl';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'start_date' => '2024-07-01',
'end_date' => '2024-07-30',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Export data Report Profit & Lost
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/report/pnl/export?start_date=2024-07-01&end_date=2024-07-30" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/report/pnl/export"
);
const params = {
"start_date": "2024-07-01",
"end_date": "2024-07-30",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/report/pnl/export';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'start_date' => '2024-07-01',
'end_date' => '2024-07-30',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Operation
List data Report Operation
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/report/operational?start_date=2024-07-01&end_date=2024-07-30" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/report/operational"
);
const params = {
"start_date": "2024-07-01",
"end_date": "2024-07-30",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/report/operational';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'start_date' => '2024-07-01',
'end_date' => '2024-07-30',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Export data Report Operation
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/report/operational/export?start_date=2024-07-01&end_date=2024-07-30" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/report/operational/export"
);
const params = {
"start_date": "2024-07-01",
"end_date": "2024-07-30",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/report/operational/export';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'start_date' => '2024-07-01',
'end_date' => '2024-07-30',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Daily Monitoring
List data Report Daily Monitoring
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/report/dailyMonitoring?start_date=2024-07-01&end_date=2024-07-30" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/report/dailyMonitoring"
);
const params = {
"start_date": "2024-07-01",
"end_date": "2024-07-30",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/report/dailyMonitoring';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'start_date' => '2024-07-01',
'end_date' => '2024-07-30',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Export data Daily Monitoring
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/report/dailyMonitoring/export?start_date=2024-07-01&end_date=2024-07-30" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/report/dailyMonitoring/export"
);
const params = {
"start_date": "2024-07-01",
"end_date": "2024-07-30",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/report/dailyMonitoring/export';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'start_date' => '2024-07-01',
'end_date' => '2024-07-30',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Activity
List data Report Activity
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/report/activity?start_date=2024-07-01&end_date=2024-07-30" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/report/activity"
);
const params = {
"start_date": "2024-07-01",
"end_date": "2024-07-30",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/report/activity';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'start_date' => '2024-07-01',
'end_date' => '2024-07-30',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Export data Report Activity
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/report/activity/export?start_date=2024-07-01&end_date=2024-07-30" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/report/activity/export"
);
const params = {
"start_date": "2024-07-01",
"end_date": "2024-07-30",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/report/activity/export';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'start_date' => '2024-07-01',
'end_date' => '2024-07-30',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Transport
Trucking Order
List data Trucking Order
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/transport/truckingOrder" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/truckingOrder"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/truckingOrder';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Simpan data Trucking Order
requires authentication
Example request:
curl --request POST \
"https://devapitms.erunix.id/api/v1/transport/truckingOrder" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/truckingOrder"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/truckingOrder';
$response = $client->post(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Perbaharui data Trucking Order
requires authentication
Example request:
curl --request PUT \
"https://devapitms.erunix.id/api/v1/transport/truckingOrder/est" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/truckingOrder/est"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "PUT",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/truckingOrder/est';
$response = $client->put(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Hapus Trucking Order
requires authentication
Example request:
curl --request DELETE \
"https://devapitms.erunix.id/api/v1/transport/truckingOrder/est" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/truckingOrder/est"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/truckingOrder/est';
$response = $client->delete(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Data Trucking Order by Id
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/transport/truckingOrder/et" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/truckingOrder/et"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/truckingOrder/et';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Transport Order
List data Transport Order
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/transport/transportOrder?search=...&start=0&pageSize=10&sortField=reference_id&sortOrder=desc" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/transportOrder"
);
const params = {
"search": "...",
"start": "0",
"pageSize": "10",
"sortField": "reference_id",
"sortOrder": "desc",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/transportOrder';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'search' => '...',
'start' => '0',
'pageSize' => '10',
'sortField' => 'reference_id',
'sortOrder' => 'desc',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Simpan data Transport Order
requires authentication
Example request:
curl --request POST \
"https://devapitms.erunix.id/api/v1/transport/transportOrder" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/transportOrder"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/transportOrder';
$response = $client->post(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Perbaharui data Transport Order
requires authentication
Example request:
curl --request PUT \
"https://devapitms.erunix.id/api/v1/transport/transportOrder/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/transportOrder/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "PUT",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/transportOrder/1';
$response = $client->put(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Hapus data Transport Order
requires authentication
Example request:
curl --request DELETE \
"https://devapitms.erunix.id/api/v1/transport/transportOrder/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/transportOrder/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/transportOrder/1';
$response = $client->delete(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Duplikasi data Transport Order
requires authentication
Example request:
curl --request POST \
"https://devapitms.erunix.id/api/v1/transport/transportOrder/duplicate" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"id\": 1
}"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/transportOrder/duplicate"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/transportOrder/duplicate';
$response = $client->post(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'id' => 1,
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Download data Transport Order
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/transport/transportOrder/download" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/transportOrder/download"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/transportOrder/download';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Route Planning
Simpan data Route Plan : Transport Order and Manifest
requires authentication
Example request:
curl --request POST \
"https://devapitms.erunix.id/api/v1/transport/routePlanning" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/routePlanning"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/routePlanning';
$response = $client->post(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Simpan data UnRoute Plan : Transport Order and Manifest
requires authentication
Example request:
curl --request POST \
"https://devapitms.erunix.id/api/v1/transport/routePlanning/destroy" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/routePlanning/destroy"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/routePlanning/destroy';
$response = $client->post(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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 data Vehicle
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/transport/routePlanning/vehicle" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/routePlanning/vehicle"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/routePlanning/vehicle';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Manifest
List data Manifest
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/transport/manifest" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/manifest"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/manifest';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Simpan data Manifest
requires authentication
Example request:
curl --request POST \
"https://devapitms.erunix.id/api/v1/transport/manifest" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/manifest"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/manifest';
$response = $client->post(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Perbaharui data Manifest
requires authentication
Example request:
curl --request PUT \
"https://devapitms.erunix.id/api/v1/transport/manifest/omnis" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/manifest/omnis"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "PUT",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/manifest/omnis';
$response = $client->put(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Hapus data Manifest
requires authentication
Example request:
curl --request DELETE \
"https://devapitms.erunix.id/api/v1/transport/manifest/est" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/manifest/est"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/manifest/est';
$response = $client->delete(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Data Manifest By Id
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/transport/manifest/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/manifest/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/manifest/1';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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 data Total Utilization
requires authentication
Example request:
curl --request POST \
"https://devapitms.erunix.id/api/v1/transport/manifest/totalUtilization" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/manifest/totalUtilization"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/manifest/totalUtilization';
$response = $client->post(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Konfirmasi data Manifest
requires authentication
Example request:
curl --request POST \
"https://devapitms.erunix.id/api/v1/transport/manifest/confirm" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/manifest/confirm"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/manifest/confirm';
$response = $client->post(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Batal Konfirmasi data Manifest
requires authentication
Example request:
curl --request POST \
"https://devapitms.erunix.id/api/v1/transport/manifest/unConfirm" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/manifest/unConfirm"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/manifest/unConfirm';
$response = $client->post(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Data Rate Manifest
requires authentication
Example request:
curl --request POST \
"https://devapitms.erunix.id/api/v1/transport/manifest/rate" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/manifest/rate"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/manifest/rate';
$response = $client->post(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Perbaharui data Rate Manifest
requires authentication
Example request:
curl --request PUT \
"https://devapitms.erunix.id/api/v1/transport/manifest/updateRate/ea" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/manifest/updateRate/ea"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "PUT",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/manifest/updateRate/ea';
$response = $client->put(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Data Vehicle Manifest
requires authentication
Example request:
curl --request POST \
"https://devapitms.erunix.id/api/v1/transport/manifest/showVehicle" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/manifest/showVehicle"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/manifest/showVehicle';
$response = $client->post(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Perbaharui data Vehicle Manifest
requires authentication
Example request:
curl --request POST \
"https://devapitms.erunix.id/api/v1/transport/manifest/updateVehicle" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/manifest/updateVehicle"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/manifest/updateVehicle';
$response = $client->post(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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 Manifest Self Billing atau Client Invoice
requires authentication
Example request:
curl --request POST \
"https://devapitms.erunix.id/api/v1/transport/manifest/manifestInvoice" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/manifest/manifestInvoice"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/manifest/manifestInvoice';
$response = $client->post(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Cetak data Manifest
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/transport/manifestFile/print" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/manifestFile/print"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/manifestFile/print';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Time Window
List data Time Window
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/transport/timeWindow" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/timeWindow"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/timeWindow';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Perbaharui data Time Window
requires authentication
Example request:
curl --request POST \
"https://devapitms.erunix.id/api/v1/transport/timeWindow/update" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/timeWindow/update"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/timeWindow/update';
$response = $client->post(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Data Time Window By Id
requires authentication
Example request:
curl --request POST \
"https://devapitms.erunix.id/api/v1/transport/timeWindow/show" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/timeWindow/show"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/timeWindow/show';
$response = $client->post(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Manifest File
List data Manifest File
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/transport/manifestFile" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/manifestFile"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/manifestFile';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Simpan data Manifest File
requires authentication
Example request:
curl --request POST \
"https://devapitms.erunix.id/api/v1/transport/manifestFile" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/manifestFile"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/manifestFile';
$response = $client->post(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Download data Manifest File
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/transport/manifestFile/download" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/manifestFile/download"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/manifestFile/download';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Hapus data Manifest File
requires authentication
Example request:
curl --request DELETE \
"https://devapitms.erunix.id/api/v1/transport/manifestFile/reprehenderit" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/manifestFile/reprehenderit"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/manifestFile/reprehenderit';
$response = $client->delete(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Traffic Monitoring
List data Traffic Monitoring
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/transport/trafficMonitoring" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/trafficMonitoring"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/trafficMonitoring';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
POD
List data POD
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/transport/pod?search=...&start=0&pageSize=10&sortField=manifest_number&sortOrder=desc" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/pod"
);
const params = {
"search": "...",
"start": "0",
"pageSize": "10",
"sortField": "manifest_number",
"sortOrder": "desc",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/pod';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'search' => '...',
'start' => '0',
'pageSize' => '10',
'sortField' => 'manifest_number',
'sortOrder' => 'desc',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Perbaharui data POD
requires authentication
Example request:
curl --request PUT \
"https://devapitms.erunix.id/api/v1/transport/pod/suscipit" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/pod/suscipit"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "PUT",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/pod/suscipit';
$response = $client->put(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Perbaharui multi data POD
requires authentication
Example request:
curl --request POST \
"https://devapitms.erunix.id/api/v1/transport/pod/podMultiple" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/pod/podMultiple"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/pod/podMultiple';
$response = $client->post(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Export data POD
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/transport/pod/export" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/pod/export"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/pod/export';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Self Billing
List data Self Billing
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/transport/purchaseInvoice" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/purchaseInvoice"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/purchaseInvoice';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Simpan data Self Billing
requires authentication
Example request:
curl --request POST \
"https://devapitms.erunix.id/api/v1/transport/purchaseInvoice" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/purchaseInvoice"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/purchaseInvoice';
$response = $client->post(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Perbaharui data Self Billing
requires authentication
Example request:
curl --request PUT \
"https://devapitms.erunix.id/api/v1/transport/purchaseInvoice/sunt" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/purchaseInvoice/sunt"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "PUT",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/purchaseInvoice/sunt';
$response = $client->put(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Hapus data Self Billing
requires authentication
Example request:
curl --request DELETE \
"https://devapitms.erunix.id/api/v1/transport/purchaseInvoice/aut" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/purchaseInvoice/aut"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/purchaseInvoice/aut';
$response = $client->delete(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Cetak data Self Billing
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/transport/purchaseInvoice/print" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/purchaseInvoice/print"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/purchaseInvoice/print';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Client Invoice
List data Client Invoice
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/transport/salesInvoice" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/salesInvoice"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/salesInvoice';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Simpan data Client Invoice
requires authentication
Example request:
curl --request POST \
"https://devapitms.erunix.id/api/v1/transport/salesInvoice" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/salesInvoice"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/salesInvoice';
$response = $client->post(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Perbaharui data Client Invoice
requires authentication
Example request:
curl --request PUT \
"https://devapitms.erunix.id/api/v1/transport/salesInvoice/porro" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/salesInvoice/porro"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "PUT",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/salesInvoice/porro';
$response = $client->put(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Hapus data Client Invoice
requires authentication
Example request:
curl --request DELETE \
"https://devapitms.erunix.id/api/v1/transport/salesInvoice/possimus" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/salesInvoice/possimus"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/salesInvoice/possimus';
$response = $client->delete(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Cetak data Client Invoice
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/transport/salesInvoice/print" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/transport/salesInvoice/print"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/transport/salesInvoice/print';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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
Role
List data Role User
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/userManagement/role?search=...&start=0&pageSize=10&sortField=code&sortOrder=desc" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/userManagement/role"
);
const params = {
"search": "...",
"start": "0",
"pageSize": "10",
"sortField": "code",
"sortOrder": "desc",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/userManagement/role';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'search' => '...',
'start' => '0',
'pageSize' => '10',
'sortField' => 'code',
'sortOrder' => 'desc',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Simpan data Role User
requires authentication
Example request:
curl --request POST \
"https://devapitms.erunix.id/api/v1/userManagement/role" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"code\": \"ADM\",
\"role\": \"Admin\",
\"is_active\": 1,
\"use_dashboard\": 1
}"
const url = new URL(
"https://devapitms.erunix.id/api/v1/userManagement/role"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"code": "ADM",
"role": "Admin",
"is_active": 1,
"use_dashboard": 1
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/userManagement/role';
$response = $client->post(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'code' => 'ADM',
'role' => 'Admin',
'is_active' => 1,
'use_dashboard' => 1,
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Perbaharui data Role User
requires authentication
Example request:
curl --request PUT \
"https://devapitms.erunix.id/api/v1/userManagement/role/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"code\": \"ADM\",
\"role\": \"Admin\",
\"is_active\": 1,
\"use_dashboard\": 1
}"
const url = new URL(
"https://devapitms.erunix.id/api/v1/userManagement/role/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"code": "ADM",
"role": "Admin",
"is_active": 1,
"use_dashboard": 1
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/userManagement/role/1';
$response = $client->put(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'code' => 'ADM',
'role' => 'Admin',
'is_active' => 1,
'use_dashboard' => 1,
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Hapus data Role User
requires authentication
Example request:
curl --request DELETE \
"https://devapitms.erunix.id/api/v1/userManagement/role/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/userManagement/role/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/userManagement/role/1';
$response = $client->delete(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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
List data User
requires authentication
Example request:
curl --request GET \
--get "https://devapitms.erunix.id/api/v1/userManagement/user?search=...&start=0&pageSize=10&sortField=code&sortOrder=desc" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/userManagement/user"
);
const params = {
"search": "...",
"start": "0",
"pageSize": "10",
"sortField": "code",
"sortOrder": "desc",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/userManagement/user';
$response = $client->get(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'query' => [
'search' => '...',
'start' => '0',
'pageSize' => '10',
'sortField' => 'code',
'sortOrder' => 'desc',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Simpan data User
requires authentication
Example request:
curl --request POST \
"https://devapitms.erunix.id/api/v1/userManagement/user" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/userManagement/user"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/userManagement/user';
$response = $client->post(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Perbaharui data User
requires authentication
Example request:
curl --request PUT \
"https://devapitms.erunix.id/api/v1/userManagement/user/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/userManagement/user/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "PUT",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/userManagement/user/1';
$response = $client->put(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Hapus data User
requires authentication
Example request:
curl --request DELETE \
"https://devapitms.erunix.id/api/v1/userManagement/user/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"https://devapitms.erunix.id/api/v1/userManagement/user/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/userManagement/user/1';
$response = $client->delete(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.
Perbaharui data Password User
requires authentication
Example request:
curl --request POST \
"https://devapitms.erunix.id/api/v1/userManagement/user/updatePassword" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"old_password\": \"oldpass\",
\"new_password\": \"newpass\",
\"confirm_password\": \"confirmpass\"
}"
const url = new URL(
"https://devapitms.erunix.id/api/v1/userManagement/user/updatePassword"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"old_password": "oldpass",
"new_password": "newpass",
"confirm_password": "confirmpass"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'https://devapitms.erunix.id/api/v1/userManagement/user/updatePassword';
$response = $client->post(
$url,
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'old_password' => 'oldpass',
'new_password' => 'newpass',
'confirm_password' => 'confirmpass',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: https://devtms.erunix.id
Unauthorized.
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.