Docs
  • National Logistics Ecosystem
  • Getting Started
    • introduction
    • Login with LOGPASS
      • Overview
      • Business Flow
      • Plugin
      • Glossary
    • Versioning
    • Contact Developer
  • API's
    • Customs API
      • Overview
      • List Document
        • NO BL By NPWP
        • Dok PPFTZ
        • BC20 By NOBL
        • BC20 By NOPIB
        • BC16 By NPWP
        • BC20 By NPWP
        • BC23 By NPWP
      • List Container
        • Kontainer SP3B
        • Kontainer BC 16
        • Kontainer BC 20
        • Kontainer BC 23
        • Kontainer BC 27
        • Kontainer BC 28
        • Kontainer BC 30
        • Kontainer BC 25
        • Kontainer BC 261
        • Kontainer BC 262
        • Kontainer PPFTZ
    • DO Online
      • Version 1.0
      • DO Final Version
      • OAuth Version
        • API GET Active DO By BL House
        • API GET Active DO
        • API PUT Update DO Paid Date
        • API PUT Update Price
        • API PUT Update Status DO
        • API GET Document DO List By BL
        • API GET Document DO By BL
        • API GET Document DO By NPWP
        • API Post Document DO
    • SP2 Online
      • Platform
        • Cargo Owner
        • Host-to-host
      • Version 1.0
      • SP2 Final Version
      • OAuth Version
        • Overview
        • API
        • Reference
    • Trucking
      • Open Bidding
        • Overview
        • API 01
        • API 02
        • API 04
        • API 05
        • API 06
        • API 09
        • API 10
        • API 11
      • OAuth Version
        • Overview
        • API 01
        • API 02
        • API 06
        • API 09
        • API 10
        • API 11
    • Vessel Domestic
      • OAuth Version
        • API
    • Warehouse
      • OAuth Version
        • API
  • User Guide
    • Inbound
    • Outbound
    • Domestic
      • Vessel
    • Free Trade Zone (BLE)
      • LAYANAN STS/ FSU
Powered by GitBook
On this page
  • POST Data Pemesanan
  • Raw data example

Was this helpful?

  1. API's
  2. Trucking
  3. Open Bidding

API 01

POST Data Pemesanan

POST https://api.beacukai.go.id/V3/NLE/Booking/

url development: https://api.beacukai.go.id/NLE-DEV/Booking/

Headers

Name
Type
Description

beacukai-api-key

string

API_KEY

Authorization

string

ACCESS_TOKEN

Request Body

Name
Type
Description

term_of_payment

integer

term_of_payment

mobile

string

Telp perusahaan

email

string

Email perusahaan

address

string

Alamat perusahaan

company

string

Nama perusahaan

longitude

string

longitude

latitude

string

latitude

destination

string

Destination

urutan

integer

Urutan

other_destination

array

List Destination

id_platform

string

Kode trucking platform

npwp

string

NPWP Pengguna Jasa

id_User

string

NPWP Pengguna jasa

dangerous_material

string

dangerous_material

dangerous_type

string

dangerous_type

temperature

string

Temperature

over_weight

string

Over Weight

over_length

string

Over Lenght

idRequestBooking

string

Kode request booking

id_document

integer

ID Document

id_ff_ppjk

string

ID FF PPJK

booking_date

string

datetime (tanggal pencarian)

pod

string

Nama pelabuhan asal

pod_lat

string

Koordinat latitude pelabuhan asal

pod_lon

string

Koordinat longitude pelabuhan asal

pod_lon

string

Koordinat longitude pelabuhan asal

total_distance

string

Total jarak rute

party

integer

Total Container

plan_date

string

datetime (tanggal pencarian)

bl_no

string

Nomor BL

bl_date

string

date (tanggal BL)

sp2valid_date

string

date (masa berlaku SP2)

spcvalid_date

string

datetime (masa berlaku SPC)

container

array

List container

container_no

string

Nomor container

container_size

string

Ukuran container

container_type

string

Tipe container

over_height

string

Over height

over_width

string

Over width

{    "name": "Cake's name",    "recipe": "Cake's recipe name",    "cake": "Binary cake"}
{    "message": "Ain't no cake like that."}

Raw data example

{
	"idRequestBooking": "testBooking",
	"id_document":33,
	"id_ff_ppjk":"",
	"booking_date": "2020-02-04 14:13:21",
	"pod": "JICT",
	"pod_lat": "-6.1066044",
	"pod_lon": "106.8942988",
	"total_distance": 57,
	"party": 1,
	"plan_date": "2020-02-04 14:13:21",
	"bl_no": "HJSCSHSR2U154700",
	"bl_date": "2012-06-04",
	"sp2valid_date": "2020-01-23",
	"spcvalid_date": "2020-01-23 12:00:12",
	"container": [
       	{
            "idRequestBooking": "testBooking",
    	      "container_no": "SKLU1324270",
            "container_size": "20",
            "container_type": "General/ Dry Cargo",
            "over_height": null, //Numeric
            "over_width": null,  //Numeric
            "over_length": null, //Numeric
            "over_weight": null, //Numeric
            "temperatur": null,  //Numeric
            "dangerous_type": "Dangerous",
            "dangerous_material": "Class 1: Coba"
       	}
	],
	"id_User": "1234567890",
	"npwp": "1234567890",
      "id_platform": "PL000",
	"other_destination": [
        {
            "idRequestBooking":"testBooking",
            "urutan":"1",
            "destination": "cek2222",
            "latitude": "-6.157519",
            "longitude": "106.948607"
        }
	],
	"company": "PT Sejahtera Tbk",
	"address": "Jln Haji Maskur",
	"email":"sejahtera@gmail.com",
	"mobile":"08122001211",
	"term_of_payment": 0
}

PreviousOverviewNextAPI 02

Last updated 4 years ago

Was this helpful?