Introduction
Dokumentasi ini bertujuan untuk memberikan semua informasi yang Anda butuhkan untuk bekerja dengan API kami.
Base URL
http://api-mobile-uprayyan.erunix.id
Authenticating requests
This API is authenticated by sending 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 Login.
Authentication
API endpoints for managing authentication
Masuk dengan kredensial.
Pengguna hanyal boleh memiliki 1 token akses.
Example request:
curl -X POST \
"https://api-mobile-uprayyan.erunix.id/api/login" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"username":"aryaanggara.dev@gmail.com","password":"isipassword"}'
const url = new URL(
"https://api-mobile-uprayyan.erunix.id/api/login"
);
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
};
let body = {
"username": "aryaanggara.dev@gmail.com",
"password": "isipassword"
}
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->post(
'https://api-mobile-uprayyan.erunix.id/api/login',
[
'headers' => [
'Accept' => 'application/json',
],
'json' => [
'username' => 'aryaanggara.dev@gmail.com',
'password' => 'isipassword',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Received response:
Request failed with error:
Fetch user.
requires authentication
Example request:
curl -X POST \
"https://api-mobile-uprayyan.erunix.id/api/fetch" \
-H "Authorization: Bearer {YOUR_AUTH_KEY}" \
-H "Accept: application/json"
const url = new URL(
"https://api-mobile-uprayyan.erunix.id/api/fetch"
);
let headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->post(
'https://api-mobile-uprayyan.erunix.id/api/fetch',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Logout
requires authentication
Example request:
curl -X DELETE \
"https://api-mobile-uprayyan.erunix.id/api/logout" \
-H "Authorization: Bearer {YOUR_AUTH_KEY}" \
-H "Accept: application/json"
const url = new URL(
"https://api-mobile-uprayyan.erunix.id/api/logout"
);
let headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->delete(
'https://api-mobile-uprayyan.erunix.id/api/logout',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (200):
{
"message": "Token dihapus!",
}
Received response:
Request failed with error:
Driver Notification
Mendapatkan list data Notifikasi Saya.
requires authentication
Dibagian ini Anda bisa mendapatkan list data Notifikasi Saya.
Example request:
curl -X GET \
-G "http://api-mobile-uprayyan.erunix.id/api/driver-notifications?search=...&page[number]=1&page[size]=2&sort=created_at" \
-H "Authorization: Bearer {YOUR_AUTH_KEY}" \
-H "Accept: application/json"
const url = new URL(
"http://api-mobile-uprayyan.erunix.id/api/driver-notifications"
);
let params = {
"search": "...",
"page[number]": "1",
"page[size]": "2",
"sort": "created_at",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
let headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'http://api-mobile-uprayyan.erunix.id/api/driver-notifications',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Accept' => 'application/json',
],
'query' => [
'search'=> '...',
'page[number]'=> '1',
'page[size]'=> '2',
'sort'=> 'created_at',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Firebase
Memperbaharui device token.
requires authentication
Example request:
curl -X POST \
"http://api-mobile-uprayyan.erunix.id/api/firebase/device-token" \
-H "Authorization: Bearer {YOUR_AUTH_KEY}" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"device_token":"cSN1fH..."}'
const url = new URL(
"http://api-mobile-uprayyan.erunix.id/api/firebase/device-token"
);
let headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Accept": "application/json",
"Content-Type": "application/json",
};
let body = {
"device_token": "cSN1fH..."
}
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->post(
'http://api-mobile-uprayyan.erunix.id/api/firebase/device-token',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Accept' => 'application/json',
],
'json' => [
'device_token' => 'cSN1fH...',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (200):
{
"message": "Berhasil memperbaharui device token.",
}
Received response:
Request failed with error:
GeoFance
Aktif Geo Fence.
requires authentication
Example request:
curl -X GET \
-G "http://api-mobile-uprayyan.erunix.id/api/geofence/active" \
-H "Authorization: Bearer {YOUR_AUTH_KEY}" \
-H "Accept: application/json"
const url = new URL(
"http://api-mobile-uprayyan.erunix.id/api/geofence/active"
);
let headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'http://api-mobile-uprayyan.erunix.id/api/geofence/active',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Store current Coordinate.
requires authentication
Example request:
curl -X POST \
"http://api-mobile-uprayyan.erunix.id/api/geofence/cordinate" \
-H "Authorization: Bearer {YOUR_AUTH_KEY}" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"manifest_id":1,"latitude":"3123","longitude":"1231"}'
const url = new URL(
"http://api-mobile-uprayyan.erunix.id/api/geofence/cordinate"
);
let headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Accept": "application/json",
"Content-Type": "application/json",
};
let body = {
"manifest_id": 1,
"latitude": "3123",
"longitude": "1231"
}
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->post(
'http://api-mobile-uprayyan.erunix.id/api/geofence/cordinate',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Accept' => 'application/json',
],
'json' => [
'manifest_id' => 1,
'latitude' => '3123',
'longitude' => '1231',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Update Status Geofance to 1.
requires authentication
Example request:
curl -X POST \
"http://api-mobile-uprayyan.erunix.id/api/geofence/1" \
-H "Authorization: Bearer {YOUR_AUTH_KEY}" \
-H "Accept: application/json"
const url = new URL(
"http://api-mobile-uprayyan.erunix.id/api/geofence/1"
);
let headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->post(
'http://api-mobile-uprayyan.erunix.id/api/geofence/1',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Order Saya
Memperbaharui Trafic Monitoring.
requires authentication
Example request:
curl -X POST \
"http://api-mobile-uprayyan.erunix.id/api/orders/tm/1" \
-H "Authorization: Bearer {YOUR_AUTH_KEY}" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"image":"path...","note":"...","location":"31.2467601,29.9020376"}'
const url = new URL(
"http://api-mobile-uprayyan.erunix.id/api/orders/tm/1"
);
let headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Accept": "application/json",
"Content-Type": "application/json",
};
let body = {
"image": "path...",
"note": "...",
"location": "31.2467601,29.9020376"
}
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->post(
'http://api-mobile-uprayyan.erunix.id/api/orders/tm/1',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Accept' => 'application/json',
],
'json' => [
'image' => 'path...',
'note' => '...',
'location' => '31.2467601,29.9020376',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Mendapatkan list data Order Saya.
requires authentication
Dibagian ini Anda bisa mendapatkan list data Order Saya.
Example request:
curl -X GET \
-G "http://api-mobile-uprayyan.erunix.id/api/my-orders?search=...&done=...&page[number]=1&page[size]=2&sort=created_at" \
-H "Authorization: Bearer {YOUR_AUTH_KEY}" \
-H "Accept: application/json"
const url = new URL(
"http://api-mobile-uprayyan.erunix.id/api/my-orders"
);
let params = {
"search": "...",
"done": "...",
"page[number]": "1",
"page[size]": "2",
"sort": "created_at",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
let headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'http://api-mobile-uprayyan.erunix.id/api/my-orders',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Accept' => 'application/json',
],
'query' => [
'search'=> '...',
'done'=> '...',
'page[number]'=> '1',
'page[size]'=> '2',
'sort'=> 'created_at',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Mendapatkan Detail Order.
requires authentication
Example request:
curl -X GET \
-G "http://api-mobile-uprayyan.erunix.id/api/my-orders/1" \
-H "Authorization: Bearer {YOUR_AUTH_KEY}" \
-H "Accept: application/json"
const url = new URL(
"http://api-mobile-uprayyan.erunix.id/api/my-orders/1"
);
let headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'http://api-mobile-uprayyan.erunix.id/api/my-orders/1',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Mendapatkan timewindows.
requires authentication
Example request:
curl -X GET \
-G "http://api-mobile-uprayyan.erunix.id/api/my-orders/timewindows/1" \
-H "Authorization: Bearer {YOUR_AUTH_KEY}" \
-H "Accept: application/json"
const url = new URL(
"http://api-mobile-uprayyan.erunix.id/api/my-orders/timewindows/1"
);
let headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'http://api-mobile-uprayyan.erunix.id/api/my-orders/timewindows/1',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (401):
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Server
Ping the server.
Example request:
curl -X GET \
-G "http://api-mobile-uprayyan.erunix.id/api/ping" \
-H "Accept: application/json"
const url = new URL(
"http://api-mobile-uprayyan.erunix.id/api/ping"
);
let headers = {
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'http://api-mobile-uprayyan.erunix.id/api/ping',
[
'headers' => [
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
Example response (200):
{
"status": "ok",
"timestamp": "2022-08-17T17:11:13.472126Z",
"host": "127.0.0.1"
}
Received response:
Request failed with error: