MENU navbar-image

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"
}
 

Request      

POST api/v1/auth/login

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

email   string   

email pengguna. Example: demo@mail.com

password   string   

kata sandi pengguna. Example: password

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.
 

Request      

GET api/v1/auth/access

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

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.
 

Request      

GET api/v1/auth/user

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

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.
 

Request      

GET api/v1/fleet/truckAccident

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

search   string  optional  

Mencari data Role. Example: ...

start   string  optional  

Menyesuaikan URI paginator. Example: 0

pageSize   string  optional  

Menyesuaikan jumlah data yang ditampilkan. Example: 10

sortField   string  optional  

Menyortir data ( key_name / -key_name ). Example: vehicle_desc

sortOrder   string  optional  

Menyortir data ( asc / desc ), default -desc. Example: desc

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.
 

Request      

POST api/v1/fleet/truckAccident

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

vehicle_id   integer   

Vehicle Id. Example: 0

driver_id   integer   

Driver Id. Example: 0

client_id   integer   

Client Id. Example: 0

accident_date   string   

Accident Date. Example: 2024-07-01

accident_type   string   

Accident Type. Example: ...

location   string   

Location. Example: ...

chronology_accident   string  optional  

Chronology Accident. Example: ...

vehicle_condition   string  optional  

Vehicle Condition. Example: ...

current_position   string  optional  

Current Position. Example: ...

amount_less   string  optional  

Amount Less. Example: ...

police_investigation_report   string  optional  

Police Investigation Report. Example: ...

additional_information   string  optional  

Additional Information. Example: ...

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.
 

Request      

PUT api/v1/fleet/truckAccident/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

Truck Accident id. Defaults to 'id'. Example: 1

Body Parameters

vehicle_id   integer   

Vehicle Id. Example: 0

driver_id   integer   

Driver Id. Example: 0

client_id   integer   

Client Id. Example: 0

accident_date   string   

Accident Date. Example: 2024-07-01

accident_type   string   

Accident Type. Example: ...

location   string   

Location. Example: ...

chronology_accident   string  optional  

Chronology Accident. Example: ...

vehicle_condition   string  optional  

Vehicle Condition. Example: ...

current_position   string  optional  

Current Position. Example: ...

amount_less   string  optional  

Amount Less. Example: ...

police_investigation_report   string  optional  

Police Investigation Report. Example: ...

additional_information   string  optional  

Additional Information. Example: ...

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.
 

Request      

DELETE api/v1/fleet/truckAccident/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

Truck Accident id. Defaults to 'id'. Example: 1

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.
 

Request      

GET api/v1/fleet/serviceOrder

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

search   string  optional  

Mencari data Role. Example: ...

start   string  optional  

Menyesuaikan URI paginator. Example: 0

pageSize   string  optional  

Menyesuaikan jumlah data yang ditampilkan. Example: 10

sortField   string  optional  

Menyortir data ( key_name / -key_name ). Example: vehicle_desc

sortOrder   string  optional  

Menyortir data ( asc / desc ), default -desc. Example: desc

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.
 

Request      

POST api/v1/fleet/serviceOrder

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

reference   string   

Reference. Example: ...

vehicle_id   integer   

Vehicle Id. Example: 0

odometer   string   

Odometer. Example: ...

registered_date   string   

Registered Date. Example: 2024-07-01

registered_time   string   

Registered Time. Example: 08:00:00

completion_date   string  optional  

Completion Date. Example: 2024-07-01

completion_time   string  optional  

Completion Time. Example: 08:00:00

workshop_id   integer   

Workshop Id. Example: 0

service_type   string  optional  

Service Type. Example: ...

service_status   string  optional  

Service Status. Example: ...

assigned_to   integer   

Assigned To. Example: 0

vat   string  optional  

Vat. Example: ...

task_entries   string   

Task Entries. Example: ...

sub_total   string  optional  

Sub Total. Example: ...

total_vat   string  optional  

Total Vat. Example: ...

total_amount   string  optional  

Total Amount. Example: ...

remark   string  optional  

Remark. Example: ...

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.
 

Request      

PUT api/v1/fleet/serviceOrder/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

Service Order id. Defaults to 'id'. Example: 1

Body Parameters

reference   string   

Reference. Example: ...

vehicle_id   integer   

Vehicle Id. Example: 0

odometer   string   

Odometer. Example: ...

registered_date   string   

Registered Date. Example: 2024-07-01

registered_time   string   

Registered Time. Example: 08:00:00

completion_date   string  optional  

Completion Date. Example: 2024-07-01

completion_time   string  optional  

Completion Time. Example: 08:00:00

workshop_id   integer   

Workshop Id. Example: 0

service_type   string  optional  

Service Type. Example: ...

service_status   string  optional  

Service Status. Example: ...

assigned_to   integer   

Assigned To. Example: 0

vat   string  optional  

Vat. Example: ...

task_entries   string   

Task Entries. Example: ...

sub_total   string  optional  

Sub Total. Example: ...

total_vat   string  optional  

Total Vat. Example: ...

total_amount   string  optional  

Total Amount. Example: ...

remark   string  optional  

Remark. Example: ...

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.
 

Request      

DELETE api/v1/fleet/serviceOrder/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

Service Order id. Defaults to 'id'. Example: 1

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.
 

Request      

GET api/v1/fleet/serviceTask

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

search   string  optional  

Mencari data Role. Example: ...

start   string  optional  

Menyesuaikan URI paginator. Example: 0

pageSize   string  optional  

Menyesuaikan jumlah data yang ditampilkan. Example: 10

sortField   string  optional  

Menyortir data ( key_name / -key_name ). Example: name

sortOrder   string  optional  

Menyortir data ( asc / desc ), default -desc. Example: desc

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.
 

Request      

POST api/v1/fleet/serviceTask

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

name   string   

Name. Example: ...

description   string  optional  

Description. Example: ...

is_active   integer  optional  

Status Active. Example: 0

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.
 

Request      

PUT api/v1/fleet/serviceTask/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

Service Task id. Defaults to 'id'. Example: 1

Body Parameters

name   string   

Name. Example: ...

description   string  optional  

Description. Example: ...

is_active   integer  optional  

Status Active. Example: 0

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.
 

Request      

DELETE api/v1/fleet/serviceTask/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

Service Task id. Defaults to 'id'. Example: 1

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.
 

Request      

GET api/v1/master/area

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

search   string  optional  

Mencari data Role. Example: ...

start   string  optional  

Menyesuaikan URI paginator. Example: 0

pageSize   string  optional  

Menyesuaikan jumlah data yang ditampilkan. Example: 10

sortField   string  optional  

Menyortir data ( key_name / -key_name ). Example: description

sortOrder   string  optional  

Menyortir data ( asc / desc ), default -desc. Example: desc

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.
 

Request      

POST api/v1/master/area

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

area_id   string   

Area Id. Example: ...

description   string   

Description. Example: ...

area_type   string   

Area Type. Example: ...

area_group   integer  optional  

Area Group. Example: 0

additional_information   string  optional  

Additional Information. Example: ...

area_zone_id   integer  optional  

Area Zone Id. Example: 0

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.
 

Request      

PUT api/v1/master/area/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

Area id. Defaults to 'id'. Example: 1

Body Parameters

area_id   string   

Area Id. Example: ...

description   string   

Description. Example: ...

area_type   string   

Area Type. Example: ...

area_group   integer  optional  

Area Group. Example: 0

additional_information   string  optional  

Additional Information. Example: ...

area_zone_id   integer  optional  

Area Zone Id. Example: 0

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.
 

Request      

GET api/v1/master/client

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

search   string  optional  

Mencari data Role. Example: ...

start   string  optional  

Menyesuaikan URI paginator. Example: 0

pageSize   string  optional  

Menyesuaikan jumlah data yang ditampilkan. Example: 10

sortField   string  optional  

Menyortir data ( key_name / -key_name ). Example: name

sortOrder   string  optional  

Menyortir data ( asc / desc ), default -desc. Example: desc

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.
 

Request      

POST api/v1/master/client

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

client_id   string   

Client Id. Example: ...

name   string   

Name. Example: ...

address1   string  optional  

Address1. Example: ...

address2   string  optional  

Address2. Example: ...

city   string  optional  

City. Example: ...

postal_code   string  optional  

Postal Code. Example: ...

phone   string  optional  

Phone. Example: ...

fax   string  optional  

Fax. Example: ...

pic   string  optional  

Pic. Example: ...

email   string  optional  

Email. Example: ...

additional_information   string  optional  

Additional Information. Example: ...

payment_term   string  optional  

Payment Term. Example: ...

is_by_type   string  optional  

Is By Type. Example: ...

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.
 

Request      

PUT api/v1/master/client/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

Client id. Defaults to 'id'. Example: 1

Body Parameters

client_id   string   

Client Id. Example: ...

name   string   

Name. Example: ...

address1   string  optional  

Address1. Example: ...

address2   string  optional  

Address2. Example: ...

city   string  optional  

City. Example: ...

postal_code   string  optional  

Postal Code. Example: ...

phone   string  optional  

Phone. Example: ...

fax   string  optional  

Fax. Example: ...

pic   string  optional  

Pic. Example: ...

email   string  optional  

Email. Example: ...

additional_information   string  optional  

Additional Information. Example: ...

payment_term   string  optional  

Payment Term. Example: ...

is_by_type   string  optional  

Is By Type. Example: ...

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.
 

Request      

DELETE api/v1/master/client/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

Client id. Defaults to 'id'. Example: 1

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.
 

Request      

GET api/v1/master/customer

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

search   string  optional  

Mencari data Role. Example: ...

start   string  optional  

Menyesuaikan URI paginator. Example: 0

pageSize   string  optional  

Menyesuaikan jumlah data yang ditampilkan. Example: 10

sortField   string  optional  

Menyortir data ( key_name / -key_name ). Example: name

sortOrder   string  optional  

Menyortir data ( asc / desc ), default -desc. Example: desc

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.
 

Request      

POST api/v1/master/customer

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

customer_id   string   

Customer Id. Example: ...

name   string   

Name. Example: ...

address1   string   

Address1. Example: ...

address2   string  optional  

Address2. Example: ...

type   string  optional  

Type. Example: ...

city   string  optional  

City. Example: ...

position   string  optional  

Position. Example: ...

region_id   string  optional  

Region Id. Example: ...

area_id   string   

Area Id. Example: ...

postal_code_id   integer   

Postal Code Id. Example: 0

postal_code   string  optional  

Postal Code. Example: ...

phone   string  optional  

Phone. Example: ...

fax   string  optional  

Fax. Example: ...

pic   string  optional  

Pic. Example: ...

email   string  optional  

Email. Example: ...

additional_information   string  optional  

Additional Information. Example: ...

latitude   string  optional  

Latitude. Example: ...

longitude   string  optional  

Longitude. Example: ...

radius   string  optional  

Radius. Example: ...

geofence_area   string  optional  

Geofence Area. Example: ...

vehicle_type_id   string  optional  

Vehicle Type Id. Example: ...

max_volume   string  optional  

Max Volume. Example: ...

max_weight   string  optional  

Max Weight. Example: ...

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.
 

Request      

PUT api/v1/master/customer/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

Customer id. Defaults to 'id'. Example: 1

Body Parameters

customer_id   string   

Customer Id. Example: ...

name   string   

Name. Example: ...

address1   string   

Address1. Example: ...

address2   string  optional  

Address2. Example: ...

type   string  optional  

Type. Example: ...

city   string  optional  

City. Example: ...

position   string  optional  

Position. Example: ...

region_id   string  optional  

Region Id. Example: ...

area_id   string   

Area Id. Example: ...

postal_code_id   integer   

Postal Code Id. Example: 0

postal_code   string  optional  

Postal Code. Example: ...

phone   string  optional  

Phone. Example: ...

fax   string  optional  

Fax. Example: ...

pic   string  optional  

Pic. Example: ...

email   string  optional  

Email. Example: ...

additional_information   string  optional  

Additional Information. Example: ...

latitude   string  optional  

Latitude. Example: ...

longitude   string  optional  

Longitude. Example: ...

radius   string  optional  

Radius. Example: ...

geofence_area   string  optional  

Geofence Area. Example: ...

vehicle_type_id   string  optional  

Vehicle Type Id. Example: ...

max_volume   string  optional  

Max Volume. Example: ...

max_weight   string  optional  

Max Weight. Example: ...

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.
 

Request      

DELETE api/v1/master/customer/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

Customer id. Defaults to 'id'. Example: 1

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.
 

Request      

GET api/v1/master/customer/download

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

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.
 

Request      

GET api/v1/master/transporter

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

search   string  optional  

Mencari data Role. Example: ...

start   string  optional  

Menyesuaikan URI paginator. Example: 0

pageSize   string  optional  

Menyesuaikan jumlah data yang ditampilkan. Example: 10

sortField   string  optional  

Menyortir data ( key_name / -key_name ). Example: name

sortOrder   string  optional  

Menyortir data ( asc / desc ), default -desc. Example: desc

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.
 

Request      

POST api/v1/master/transporter

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

transporter_id   string   

Transporter Id. Example: ...

name   string   

Name. Example: ...

address1   string  optional  

Address1. Example: ...

address2   string  optional  

Address2. Example: ...

city   string  optional  

City. Example: ...

postal_code   string  optional  

Postal Code. Example: ...

phone   string  optional  

Phone. Example: ...

fax   string  optional  

Fax. Example: ...

transport_mode   string  optional  

Transport Mode. Example: ...

additional_information   string  optional  

Additional Information. Example: ...

payment_term   string  optional  

Payment Term. Example: ...

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.
 

Request      

PUT api/v1/master/transporter/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

Transporter id. Defaults to 'id'. Example: 1

Body Parameters

transporter_id   string   

Transporter Id. Example: ...

name   string   

Name. Example: ...

address1   string  optional  

Address1. Example: ...

address2   string  optional  

Address2. Example: ...

city   string  optional  

City. Example: ...

postal_code   string  optional  

Postal Code. Example: ...

phone   string  optional  

Phone. Example: ...

fax   string  optional  

Fax. Example: ...

transport_mode   string  optional  

Transport Mode. Example: ...

additional_information   string  optional  

Additional Information. Example: ...

payment_term   string  optional  

Payment Term. Example: ...

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.
 

Request      

DELETE api/v1/master/transporter/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

Transporter id. Defaults to 'id'. Example: 1

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.
 

Request      

GET api/v1/master/driver

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

search   string  optional  

Mencari data Role. Example: ...

start   string  optional  

Menyesuaikan URI paginator. Example: 0

pageSize   string  optional  

Menyesuaikan jumlah data yang ditampilkan. Example: 10

sortField   string  optional  

Menyortir data ( key_name / -key_name ). Example: name

sortOrder   string  optional  

Menyortir data ( asc / desc ), default -desc. Example: desc

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.
 

Request      

POST api/v1/master/driver

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

name   string   

Name. Example: ...

address1   string  optional  

Address1. Example: ...

address2   string  optional  

Address2. Example: ...

city   string  optional  

City. Example: ...

phone   string   

Phone. Example: ...

transporter_id   string  optional  

Transporter Id. Example: ...

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.
 

Request      

PUT api/v1/master/driver/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

Driver id. Defaults to 'id'. Example: 1

Body Parameters

name   string   

Name. Example: ...

address1   string  optional  

Address1. Example: ...

address2   string  optional  

Address2. Example: ...

city   string  optional  

City. Example: ...

phone   string   

Phone. Example: ...

transporter_id   string  optional  

Transporter Id. Example: ...

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.
 

Request      

DELETE api/v1/master/driver/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

Driver id. Defaults to 'id'. Example: 1

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.
 

Request      

GET api/v1/master/vehicleType

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

search   string  optional  

Mencari data Role. Example: ...

start   string  optional  

Menyesuaikan URI paginator. Example: 0

pageSize   string  optional  

Menyesuaikan jumlah data yang ditampilkan. Example: 10

sortField   string  optional  

Menyortir data ( key_name / -key_name ). Example: description

sortOrder   string  optional  

Menyortir data ( asc / desc ), default -desc. Example: desc

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.
 

Request      

POST api/v1/master/vehicleType

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

type_id   string   

Type_Id. Example: ...

description   string   

Description. Example: ...

volume_cap   string   

Volume_Cap. Example: ...

weight_cap   string   

Weight_Cap. Example: ...

sequence_no   integer  optional  

Sequence_No. Example: 1

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.
 

Request      

PUT api/v1/master/vehicleType/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

Vehicle Type id. Defaults to 'id'. Example: 1

Body Parameters

type_id   string   

Type_Id. Example: ...

description   string   

Description. Example: ...

volume_cap   string   

Volume_Cap. Example: ...

weight_cap   string   

Weight_Cap. Example: ...

sequence_no   integer  optional  

Sequence_No. Example: 1

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.
 

Request      

DELETE api/v1/master/vehicleType/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

Vehicle Type id. Defaults to 'id'. Example: 1

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.
 

Request      

GET api/v1/master/vehicle

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

search   string  optional  

Mencari data Role. Example: ...

start   string  optional  

Menyesuaikan URI paginator. Example: 0

pageSize   string  optional  

Menyesuaikan jumlah data yang ditampilkan. Example: 10

sortField   string  optional  

Menyortir data ( key_name / -key_name ). Example: vehicle_id

sortOrder   string  optional  

Menyortir data ( asc / desc ), default -desc. Example: desc

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.
 

Request      

POST api/v1/master/vehicle

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

vehicle_id   string   

Vehicle Id. Example: ...

driver   string   

Driver. Example: ...

co_driver   string   

Co Driver. Example: ...

transporter_id   string   

Transporter Id. Example: ...

status   string   

Status 1 = On Call, 2 = Dedicated. Example: 1

type   string   

Type. Example: ...

max_volume   string   

Max Volume. Example: ...

max_weight   string   

Max Weight. Example: ...

client_id   string  optional  

Client Id. Example: ...

subcon   string  optional  

Subcon. Example: ...

period_invoice   string  optional  

Period Invoice. Example: ...

additional_information   string  optional  

Additional Information. Example: ...

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.
 

Request      

PUT api/v1/master/vehicle/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

Vehicle id. Defaults to 'id'. Example: 1

Body Parameters

vehicle_id   string   

Vehicle Id. Example: ...

driver   string   

Driver. Example: ...

co_driver   string   

Co Driver. Example: ...

transporter_id   string   

Transporter Id. Example: ...

status   string   

Status 1 = On Call, 2 = Dedicated. Example: 1

type   string   

Type. Example: ...

max_volume   string   

Max Volume. Example: ...

max_weight   string   

Max Weight. Example: ...

client_id   string  optional  

Client Id. Example: ...

subcon   string  optional  

Subcon. Example: ...

period_invoice   string  optional  

Period Invoice. Example: ...

additional_information   string  optional  

Additional Information. Example: ...

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.
 

Request      

DELETE api/v1/master/vehicle/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

Vehicle id. Defaults to 'id'. Example: 1

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.
 

Request      

GET api/v1/master/transporter-rate

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

search   string  optional  

Mencari data Role. Example: ...

start   string  optional  

Menyesuaikan URI paginator. Example: 0

pageSize   string  optional  

Menyesuaikan jumlah data yang ditampilkan. Example: 10

sortField   string  optional  

Menyortir data ( key_name / -key_name ). Example: client_desc

sortOrder   string  optional  

Menyortir data ( asc / desc ), default -desc. Example: desc

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.
 

Request      

POST api/v1/master/transporter-rate

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

rate_status   string  optional  

Rate Status 0 = Inactive, 1 = Active. Example: 1

client_id   string   

Client Id. Example: ...

transporter_id   string   

Transporter Id. Example: ...

origin_id   string   

Origin Id. Example: ...

destination_id   string  optional  

Destination Id. Example: ...

type_id   string   

Type Id. Example: ...

status   string   

Status 1 = On Call, 2 = Dedicated. Example: 1

currency   string  optional  

Currency. Example: IDR

rate_type   string   

Rate Type 1 = Reguler, 2 = Weight. Example: 1

vehicle_rate   string   

Vehicle Rate. Example: 1

unloading_cost   string  optional  

Unloading Cost. Example: ...

remark   longtext  optional  

Remark. Example: ...

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.
 

Request      

PUT api/v1/master/transporter-rate/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

Transporter Rate id. Defaults to 'id'. Example: 1

Body Parameters

rate_status   string  optional  

Rate Status 0 = Inactive, 1 = Active. Example: 1

client_id   string   

Client Id. Example: ...

transporter_id   string   

Transporter Id. Example: ...

origin_id   string   

Origin Id. Example: ...

destination_id   string  optional  

Destination Id. Example: ...

type_id   string   

Type Id. Example: ...

status   string   

Status 1 = On Call, 2 = Dedicated. Example: 1

currency   string  optional  

Currency. Example: IDR

rate_type   string   

Rate Type 1 = Reguler, 2 = Weight. Example: 1

vehicle_rate   string   

Vehicle Rate. Example: 1

unloading_cost   string  optional  

Unloading Cost. Example: ...

remark   longtext  optional  

Remark. Example: ...

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.
 

Request      

DELETE api/v1/master/transporter-rate/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

Transporter Rate id. Defaults to 'id'. Example: 1

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.
 

Request      

GET api/v1/master/transporter-rate/download

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

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.
 

Request      

GET api/v1/master/client-rate

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

search   string  optional  

Mencari data Role. Example: ...

start   string  optional  

Menyesuaikan URI paginator. Example: 0

pageSize   string  optional  

Menyesuaikan jumlah data yang ditampilkan. Example: 10

sortField   string  optional  

Menyortir data ( key_name / -key_name ). Example: client_desc

sortOrder   string  optional  

Menyortir data ( asc / desc ), default -desc. Example: desc

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.
 

Request      

POST api/v1/master/client-rate

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

rate_status   string  optional  

Rate Status 0 = Inactive, 1 = Active. Example: 1

client_id   string   

Client Id. Example: ...

transporter_id   string  optional  

Transporter Id. Example: ...

origin_id   string   

Origin Id. Example: ...

destination_id   string  optional  

Destination Id. Example: ...

type_id   string   

Type Id. Example: ...

status   string   

Status Status 1 = On Call, 2 = Dedicated. Example: 1

currency   string  optional  

Currency. Example: IDR

rate_type   string   

Rate Type 1 = Reguler, 2 = Weight. Example: 1

vehicle_rate   string   

Vehicle Rate. Example: 1

unloading_cost   string  optional  

Unloading Cost. Example: ...

remark   string  optional  

Remark. Example: ...

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.
 

Request      

PUT api/v1/master/client-rate/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

Client Rate id. Defaults to 'id'. Example: 1

Body Parameters

rate_status   string  optional  

Rate Status 0 = Inactive, 1 = Active. Example: 1

client_id   string   

Client Id. Example: ...

transporter_id   string  optional  

Transporter Id. Example: ...

origin_id   string   

Origin Id. Example: ...

destination_id   string  optional  

Destination Id. Example: ...

type_id   string   

Type Id. Example: ...

status   string   

Status Status 1 = On Call, 2 = Dedicated. Example: 1

currency   string  optional  

Currency. Example: IDR

rate_type   string   

Rate Type 1 = Reguler, 2 = Weight. Example: 1

vehicle_rate   string   

Vehicle Rate. Example: 1

unloading_cost   string  optional  

Unloading Cost. Example: ...

remark   string  optional  

Remark. Example: ...

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.
 

Request      

DELETE api/v1/master/client-rate/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

Client Rate id. Defaults to 'id'. Example: 1

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.
 

Request      

GET api/v1/master/client-rate/download

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

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.
 

Request      

GET api/v1/master/workshop

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

search   string  optional  

Mencari data Role. Example: ...

start   string  optional  

Menyesuaikan URI paginator. Example: 0

pageSize   string  optional  

Menyesuaikan jumlah data yang ditampilkan. Example: 10

sortField   string  optional  

Menyortir data ( key_name / -key_name ). Example: name

sortOrder   string  optional  

Menyortir data ( asc / desc ), default -desc. Example: desc

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.
 

Request      

POST api/v1/master/workshop

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

workshop_id   string   

Workshop Id. Example: ...

name   string   

Name. Example: ...

address1   string  optional  

Address1. Example: ...

address2   string  optional  

Address2. Example: ...

city   string  optional  

City. Example: ...

postal_code   string  optional  

Postal Code. Example: ...

phone   string  optional  

Phone. Example: ...

additional_information   string  optional  

Additional Information. Example: ...

is_active   integer  optional  

Is Active 1 = Active, 0 = Inactive. Example: 1

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.
 

Request      

PUT api/v1/master/workshop/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

Workshop id. Defaults to 'id'. Example: 1

Body Parameters

workshop_id   string   

Workshop Id. Example: ...

name   string   

Name. Example: ...

address1   string  optional  

Address1. Example: ...

address2   string  optional  

Address2. Example: ...

city   string  optional  

City. Example: ...

postal_code   string  optional  

Postal Code. Example: ...

phone   string  optional  

Phone. Example: ...

additional_information   string  optional  

Additional Information. Example: ...

is_active   integer  optional  

Is Active 1 = Active, 0 = Inactive. Example: 1

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.
 

Request      

DELETE api/v1/master/workshop/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

Workshop id. Defaults to 'id'. Example: 1

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.
 

Request      

GET api/v1/master/mechanic

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

search   string  optional  

Mencari data Role. Example: ...

start   string  optional  

Menyesuaikan URI paginator. Example: 0

pageSize   string  optional  

Menyesuaikan jumlah data yang ditampilkan. Example: 10

sortField   string  optional  

Menyortir data ( key_name / -key_name ). Example: name

sortOrder   string  optional  

Menyortir data ( asc / desc ), default -desc. Example: desc

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.
 

Request      

POST api/v1/master/mechanic

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

name   string   

Name. Example: ...

address1   string  optional  

Address1. Example: ...

address2   string  optional  

Address2. Example: ...

city   string  optional  

City. Example: ...

phone   string  optional  

Phone. Example: ...

workshop_id   integer  optional  

Workshop Id. Example: 0

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.
 

Request      

PUT api/v1/master/mechanic/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

Mechanic id. Defaults to 'id'. Example: 1

Body Parameters

name   string   

Name. Example: ...

address1   string  optional  

Address1. Example: ...

address2   string  optional  

Address2. Example: ...

city   string  optional  

City. Example: ...

phone   string  optional  

Phone. Example: ...

workshop_id   integer  optional  

Workshop Id. Example: 0

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.
 

Request      

DELETE api/v1/master/mechanic/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

Mechanic id. Defaults to 'id'. Example: 1

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.
 

Request      

GET api/v1/master/postal-code

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

search   string  optional  

Mencari data Role. Example: ...

start   string  optional  

Menyesuaikan URI paginator. Example: 0

pageSize   string  optional  

Menyesuaikan jumlah data yang ditampilkan. Example: 10

sortField   string  optional  

Menyortir data ( key_name / -key_name ). Example: urban_village

sortOrder   string  optional  

Menyortir data ( asc / desc ), default -desc. Example: desc

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.
 

Request      

PUT api/v1/master/postal-code/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

Postal Code id. Defaults to 'id'. Example: 1

Body Parameters

urban_village   string  optional  

Urban_village. Example: ...

sub_district   string  optional  

Sub_district. Example: ...

district   string  optional  

District. Example: ...

province   string  optional  

Province. Example: ...

area_id   string   

Area_id. Example: ...

postal_code   string   

Postal_code. Example: ...

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.
 

Request      

GET api/v1/option/area

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

search   string  optional  

Mencari data Area. Example: ...

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.
 

Request      

GET api/v1/option/transporter

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

search   string  optional  

Mencari data Transporter. Example: ...

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.
 

Request      

GET api/v1/option/workshop

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

search   string  optional  

Mencari data Workshop. Example: ...

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.
 

Request      

GET api/v1/option/vehicleType

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

search   string  optional  

Mencari data Vehicle Type. Example: ...

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.
 

Request      

GET api/v1/option/driver

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

search   string  optional  

Mencari data Driver. Example: ...

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.
 

Request      

GET api/v1/option/client

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

search   string  optional  

Mencari data Client. Example: ...

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.
 

Request      

GET api/v1/option/vehicle

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

search   string  optional  

Mencari data Vehicle. Example: ...

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.
 

Request      

GET api/v1/option/mechanic

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

search   string  optional  

Mencari data Mechanic. Example: ...

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.
 

Request      

GET api/v1/option/serviceTask

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

search   string  optional  

Mencari data Service Task. Example: ...

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.
 

Request      

GET api/v1/option/customer

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

search   string  optional  

Mencari data Customer. Example: ...

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.
 

Request      

GET api/v1/option/uom

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

search   string  optional  

Mencari data UOM. Example: ...

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.
 

Request      

GET api/v1/option/componentTransport

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

search   string  optional  

Mencari data Component Transport. Example: ...

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.
 

Request      

GET api/v1/option/componentPod

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

search   string  optional  

Mencari data Component POD. Example: ...

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.
 

Request      

GET api/v1/option/uom2

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

search   string  optional  

Mencari data UOM. Example: ...

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.
 

Request      

GET api/v1/option/role

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

search   string  optional  

Mencari data Role. Example: ...

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.
 

Request      

GET api/v1/option/settingOption

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

search   string  optional  

Mencari data Setting. Example: ...

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.
 

Request      

GET api/v1/option/ringCode

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

search   string  optional  

Mencari data Ring Code. Example: ...

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.
 

Request      

GET api/v1/option/postal-code

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

search   string  optional  

Mencari data Postal Code. Example: ...

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.
 

Request      

GET api/v1/option/clientAll

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

search   string  optional  

Mencari data All Client. Example: ...

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.
 

Request      

GET api/v1/option/sales-order

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

search   string  optional  

Mencari data Sales Order. Example: ...

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.
 

Request      

GET api/v1/option/product-sales-order

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

search   string  optional  

Mencari data Product Sales Order. Example: ...

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.
 

Request      

GET api/v1/option/area-zone

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

search   string  optional  

Mencari data Area Zone. Example: ...

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.
 

Request      

GET api/v1/report/pnl

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

start_date   string   

Start Date filter data. Example: 2024-07-01

end_date   string   

End Date filter data. Example: 2024-07-30

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.
 

Request      

GET api/v1/report/pnl/export

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

start_date   string   

Start Date filter data. Example: 2024-07-01

end_date   string   

End Date filter data. Example: 2024-07-30

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.
 

Request      

GET api/v1/report/operational

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

start_date   string   

Start Date filter data. Example: 2024-07-01

end_date   string   

End Date filter data. Example: 2024-07-30

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.
 

Request      

GET api/v1/report/operational/export

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

start_date   string   

Start Date filter data. Example: 2024-07-01

end_date   string   

End Date filter data. Example: 2024-07-30

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.
 

Request      

GET api/v1/report/dailyMonitoring

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

start_date   string   

Start Date filter data. Example: 2024-07-01

end_date   string   

End Date filter data. Example: 2024-07-30

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.
 

Request      

GET api/v1/report/dailyMonitoring/export

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

start_date   string   

Start Date filter data. Example: 2024-07-01

end_date   string   

End Date filter data. Example: 2024-07-30

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.
 

Request      

GET api/v1/report/activity

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

start_date   string   

Start Date filter data. Example: 2024-07-01

end_date   string   

End Date filter data. Example: 2024-07-30

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.
 

Request      

GET api/v1/report/activity/export

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

start_date   string   

Start Date filter data. Example: 2024-07-01

end_date   string   

End Date filter data. Example: 2024-07-30

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.
 

Request      

GET api/v1/transport/truckingOrder

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

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.
 

Request      

POST api/v1/transport/truckingOrder

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

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.
 

Request      

PUT api/v1/transport/truckingOrder/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

Example: est

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.
 

Request      

DELETE api/v1/transport/truckingOrder/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

Example: est

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.
 

Request      

GET api/v1/transport/truckingOrder/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

Example: et

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.
 

Request      

GET api/v1/transport/transportOrder

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

search   string  optional  

Mencari data Role. Example: ...

start   string  optional  

Menyesuaikan URI paginator. Example: 0

pageSize   string  optional  

Menyesuaikan jumlah data yang ditampilkan. Example: 10

sortField   string  optional  

Menyortir data ( key_name / -key_name ). Example: reference_id

sortOrder   string  optional  

Menyortir data ( asc / desc ), default -desc. Example: desc

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.
 

Request      

POST api/v1/transport/transportOrder

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

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.
 

Request      

PUT api/v1/transport/transportOrder/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

Transport Order id. Defaults to 'id'. Example: 1

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.
 

Request      

DELETE api/v1/transport/transportOrder/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

Transport Order id. Defaults to 'id'. Example: 1

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.
 

Request      

POST api/v1/transport/transportOrder/duplicate

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

id   integer   

Transport Order id. Defaults to 'id'. Example: 1

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.
 

Request      

GET api/v1/transport/transportOrder/download

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

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.
 

Request      

POST api/v1/transport/routePlanning

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

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.
 

Request      

POST api/v1/transport/routePlanning/destroy

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

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.
 

Request      

GET api/v1/transport/routePlanning/vehicle

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

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.
 

Request      

GET api/v1/transport/manifest

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

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.
 

Request      

POST api/v1/transport/manifest

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

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.
 

Request      

PUT api/v1/transport/manifest/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

Example: omnis

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.
 

Request      

DELETE api/v1/transport/manifest/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

Example: est

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.
 

Request      

GET api/v1/transport/manifest/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

Manifest id. Defaults to 'id'. Example: 1

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.
 

Request      

POST api/v1/transport/manifest/totalUtilization

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

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.
 

Request      

POST api/v1/transport/manifest/confirm

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

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.
 

Request      

POST api/v1/transport/manifest/unConfirm

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

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.
 

Request      

POST api/v1/transport/manifest/rate

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

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.
 

Request      

PUT api/v1/transport/manifest/updateRate/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

Example: ea

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.
 

Request      

POST api/v1/transport/manifest/showVehicle

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

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.
 

Request      

POST api/v1/transport/manifest/updateVehicle

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

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.
 

Request      

POST api/v1/transport/manifest/manifestInvoice

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

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.
 

Request      

GET api/v1/transport/manifestFile/print

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

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.
 

Request      

GET api/v1/transport/timeWindow

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

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.
 

Request      

POST api/v1/transport/timeWindow/update

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

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.
 

Request      

POST api/v1/transport/timeWindow/show

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

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.
 

Request      

GET api/v1/transport/manifestFile

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

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.
 

Request      

POST api/v1/transport/manifestFile

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

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.
 

Request      

GET api/v1/transport/manifestFile/download

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

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.
 

Request      

DELETE api/v1/transport/manifestFile/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

Example: reprehenderit

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.
 

Request      

GET api/v1/transport/trafficMonitoring

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

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.
 

Request      

GET api/v1/transport/pod

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

search   string  optional  

Mencari data Role. Example: ...

start   string  optional  

Menyesuaikan URI paginator. Example: 0

pageSize   string  optional  

Menyesuaikan jumlah data yang ditampilkan. Example: 10

sortField   string  optional  

Menyortir data ( key_name / -key_name ). Example: manifest_number

sortOrder   string  optional  

Menyortir data ( asc / desc ), default -desc. Example: desc

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.
 

Request      

PUT api/v1/transport/pod/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

Example: suscipit

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.
 

Request      

POST api/v1/transport/pod/podMultiple

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

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.
 

Request      

GET api/v1/transport/pod/export

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

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.
 

Request      

GET api/v1/transport/purchaseInvoice

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

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.
 

Request      

POST api/v1/transport/purchaseInvoice

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

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.
 

Request      

PUT api/v1/transport/purchaseInvoice/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

Example: sunt

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.
 

Request      

DELETE api/v1/transport/purchaseInvoice/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

Example: aut

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.
 

Request      

GET api/v1/transport/purchaseInvoice/print

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

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.
 

Request      

GET api/v1/transport/salesInvoice

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

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.
 

Request      

POST api/v1/transport/salesInvoice

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

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.
 

Request      

PUT api/v1/transport/salesInvoice/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

Example: porro

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.
 

Request      

DELETE api/v1/transport/salesInvoice/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

Example: possimus

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.
 

Request      

GET api/v1/transport/salesInvoice/print

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

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.
 

Request      

GET api/v1/userManagement/role

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

search   string  optional  

Mencari data Role. Example: ...

start   string  optional  

Menyesuaikan URI paginator. Example: 0

pageSize   string  optional  

Menyesuaikan jumlah data yang ditampilkan. Example: 10

sortField   string  optional  

Menyortir data ( key_name / -key_name ). Example: code

sortOrder   string  optional  

Menyortir data ( asc / desc ), default -desc. Example: desc

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.
 

Request      

POST api/v1/userManagement/role

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

code   string  optional  

Code Role User. Example: ADM

role   string  optional  

Role Name. Example: Admin

is_active   integer  optional  

Status active role. Example: 1

use_dashboard   integer  optional  

Role use dashboard. Example: 1

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.
 

Request      

PUT api/v1/userManagement/role/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

Valid Role id. Defaults to 'id'. Example: 1

Body Parameters

code   string  optional  

Code Role User. Example: ADM

role   string  optional  

Role Name. Example: Admin

is_active   integer  optional  

Status active role. Example: 1

use_dashboard   integer  optional  

Role use dashboard. Example: 1

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.
 

Request      

DELETE api/v1/userManagement/role/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

Valid Role id. Defaults to 'id'. Example: 1

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.
 

Request      

GET api/v1/userManagement/user

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

search   string  optional  

Mencari data User. Example: ...

start   string  optional  

Menyesuaikan URI paginator. Example: 0

pageSize   string  optional  

Menyesuaikan jumlah data yang ditampilkan. Example: 10

sortField   string  optional  

Menyortir data ( key_name / -key_name ). Example: code

sortOrder   string  optional  

Menyortir data ( asc / desc ), default -desc. Example: desc

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.
 

Request      

POST api/v1/userManagement/user

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

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.
 

Request      

PUT api/v1/userManagement/user/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

Valid User id. Defaults to 'id'. Example: 1

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.
 

Request      

DELETE api/v1/userManagement/user/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

Valid User id. Defaults to 'id'. Example: 1

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.
 

Request      

POST api/v1/userManagement/user/updatePassword

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

old_password   string  optional  

Old Password User. Example: oldpass

new_password   string  optional  

New Password User. Example: newpass

confirm_password   string  optional  

Confirm New Password User. Example: confirmpass