Get Order Shipping
curl --request GET \
--url https://api.bitbybit.studio/customer/api/open/v1/orders/{id}/shipping \
--header 'x-api-key: <api-key>'import requests
url = "https://api.bitbybit.studio/customer/api/open/v1/orders/{id}/shipping"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.bitbybit.studio/customer/api/open/v1/orders/{id}/shipping', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.bitbybit.studio/customer/api/open/v1/orders/{id}/shipping",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.bitbybit.studio/customer/api/open/v1/orders/{id}/shipping"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.bitbybit.studio/customer/api/open/v1/orders/{id}/shipping")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.bitbybit.studio/customer/api/open/v1/orders/{id}/shipping")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": {
"companyId": 123,
"id": "<string>",
"name": "<string>",
"fee": 123,
"currency": "<string>",
"deliveryAddress": "<string>",
"deliveryEmail": "<string>",
"deliveryLatitude": 123,
"deliveryLongitude": 123,
"deliveryCity": "<string>",
"deliveryProvince": "<string>",
"deliveryZip": "<string>",
"deliveryCountry": "<string>",
"deliveryName": "<string>",
"deliveryNotes": "<string>",
"deliveryPhone": "<string>",
"deliveryKecamatan": "<string>",
"deliveryKecamatanId": 123,
"deliveryKelurahan": "<string>",
"deliveryKelurahanId": 123,
"driverLicensePlate": "<string>",
"driverName": "<string>",
"driverPhone": "<string>",
"driverPhoto": "<string>",
"senderAddress": "<string>",
"senderEmail": "<string>",
"senderLatitude": 123,
"senderLongitude": 123,
"senderName": "<string>",
"senderNotes": "<string>",
"senderPhone": "<string>",
"senderZip": "<string>",
"senderCountry": "<string>",
"senderProvince": "<string>",
"senderCity": "<string>",
"senderKecamatan": "<string>",
"senderKelurahan": "<string>",
"senderKecamatanId": 123,
"senderKelurahanId": 123,
"shippingStatus": "<string>",
"trackingUrl": "<string>",
"deliveryMethod": "<string>",
"distance": 123,
"packageWeight": 123,
"packageLength": 123,
"packageWidth": 123,
"packageHeight": 123,
"orderNo": "<string>",
"bookingId": "<string>",
"cancellationReason": "<string>",
"retryBooking": true,
"eventTimestamp": "<string>",
"cancelledBy": "<string>",
"cancelledSource": "<string>",
"itemName": "<string>",
"itemType": "<string>",
"itemValue": 123,
"itemQty": 123,
"shippingNotes": "<string>",
"insurance": true,
"insuranceFee": 123,
"insuranceAmount": 123,
"discountAmount": 123,
"discountPercentage": 123,
"pickupSchedule": "2023-11-07T05:31:56Z",
"courierGroup": "<string>",
"selectedExpedition": "<string>",
"selectedDelivery": "<string>",
"bikeFuelType": "<string>",
"pickupNumber": "<string>",
"paymentId": "<string>",
"paymentStatus": "<string>",
"awb": "<string>",
"serviceName": "<string>",
"statusCode": 123,
"storeLocationId": "<string>"
}
}{
"error": {
"code": "NOT_FOUND",
"message": "Resource not found"
}
}Orders
Get Order Shipping
Retrieve the selected (active) shipping method for an order by order ID.
GET
/
orders
/
{id}
/
shipping
Get Order Shipping
curl --request GET \
--url https://api.bitbybit.studio/customer/api/open/v1/orders/{id}/shipping \
--header 'x-api-key: <api-key>'import requests
url = "https://api.bitbybit.studio/customer/api/open/v1/orders/{id}/shipping"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.bitbybit.studio/customer/api/open/v1/orders/{id}/shipping', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.bitbybit.studio/customer/api/open/v1/orders/{id}/shipping",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.bitbybit.studio/customer/api/open/v1/orders/{id}/shipping"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.bitbybit.studio/customer/api/open/v1/orders/{id}/shipping")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.bitbybit.studio/customer/api/open/v1/orders/{id}/shipping")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": {
"companyId": 123,
"id": "<string>",
"name": "<string>",
"fee": 123,
"currency": "<string>",
"deliveryAddress": "<string>",
"deliveryEmail": "<string>",
"deliveryLatitude": 123,
"deliveryLongitude": 123,
"deliveryCity": "<string>",
"deliveryProvince": "<string>",
"deliveryZip": "<string>",
"deliveryCountry": "<string>",
"deliveryName": "<string>",
"deliveryNotes": "<string>",
"deliveryPhone": "<string>",
"deliveryKecamatan": "<string>",
"deliveryKecamatanId": 123,
"deliveryKelurahan": "<string>",
"deliveryKelurahanId": 123,
"driverLicensePlate": "<string>",
"driverName": "<string>",
"driverPhone": "<string>",
"driverPhoto": "<string>",
"senderAddress": "<string>",
"senderEmail": "<string>",
"senderLatitude": 123,
"senderLongitude": 123,
"senderName": "<string>",
"senderNotes": "<string>",
"senderPhone": "<string>",
"senderZip": "<string>",
"senderCountry": "<string>",
"senderProvince": "<string>",
"senderCity": "<string>",
"senderKecamatan": "<string>",
"senderKelurahan": "<string>",
"senderKecamatanId": 123,
"senderKelurahanId": 123,
"shippingStatus": "<string>",
"trackingUrl": "<string>",
"deliveryMethod": "<string>",
"distance": 123,
"packageWeight": 123,
"packageLength": 123,
"packageWidth": 123,
"packageHeight": 123,
"orderNo": "<string>",
"bookingId": "<string>",
"cancellationReason": "<string>",
"retryBooking": true,
"eventTimestamp": "<string>",
"cancelledBy": "<string>",
"cancelledSource": "<string>",
"itemName": "<string>",
"itemType": "<string>",
"itemValue": 123,
"itemQty": 123,
"shippingNotes": "<string>",
"insurance": true,
"insuranceFee": 123,
"insuranceAmount": 123,
"discountAmount": 123,
"discountPercentage": 123,
"pickupSchedule": "2023-11-07T05:31:56Z",
"courierGroup": "<string>",
"selectedExpedition": "<string>",
"selectedDelivery": "<string>",
"bikeFuelType": "<string>",
"pickupNumber": "<string>",
"paymentId": "<string>",
"paymentStatus": "<string>",
"awb": "<string>",
"serviceName": "<string>",
"statusCode": 123,
"storeLocationId": "<string>"
}
}{
"error": {
"code": "NOT_FOUND",
"message": "Resource not found"
}
}⌘I

