Welcome To OES Developer portal.
The Impact of OES on Your Digital Platform
Our APIs enable the data connections essential for delivering value to customers via e-commerce platforms, supply chain visibility tools, and direct integrations. Open a Support Ticket
Introduction
The One Easy Stop API enables the creation and printing of Air Waybills (AWBs) through a RESTful API. This service is exclusively available to customers with valid access credentials. Authorized users can access the API using their assigned username and password.
Basic api
The basic api endpoint is
https://staging-api.oneeasystop.com:3000/api
Quotes
This method returns the rates of the shipment
Quotes API Endpoint
https://staging-api.oneeasystop.com:3000/api/shipper/quotation
Headers
Header Name |
Value |
Description |
---|---|---|
Content-Type |
application/json |
Specifies the format of the request body. |
Authorization |
Bearer <your_token_here > |
Bearer token for authentication. |
This method returns the rates of the shipment
Request Body
The request body contains the details of the quotation. It must be sent as a JSON object with the following structure:
Root Object:
quotation
- Type: Object
- Description: Contains the quotation details.
Properties:
Data:
- Type: Object
- Description: Contains shipment-related details.
Fields
Field Name |
Type |
Description |
---|---|---|
fromCountry |
String |
Name of the origin country |
fromCountryCode |
String |
ISO code of the origin country |
fromState |
String |
Name of the origin state |
fromStateCode |
String |
Code of the origin state |
fromCity |
String |
Name of the origin city |
fromCityCode |
String |
Code of the origin city |
from_zip |
String |
ZIP code of the origin location |
toCountry |
String |
Name of the destination country |
toCountryCode |
String |
ISO code of the destination country |
toState |
String |
Name of the destination state |
toStateCode |
String |
Code of the destination state |
toCity |
String |
Name of the destination city |
toCityCode |
String |
Code of the destination city |
to_zip |
String |
ZIP code of the destination location |
magnitude |
Integer |
Magnitude of the shipment (1 = international, 2 = national) |
delivery_fast |
Integer |
Indicates whether fast delivery is required (0 = No, 1 = Yes) |
cheaper |
Boolean |
Indicates whether the cheapest option is preferred |
extra_charges |
Integer |
Any additional charges for the shipment |
extra_description |
String |
Description of additional charges (if applicable) |
date_of_quote |
String |
ISO 8601 date format for the quotation request |
city |
Boolean |
Indicates whether the city field is used (true/false) |
Values:
quotation
- Type: Array
- Description: Contains the details of individual shipment items.
Field Name |
Type |
Description |
---|---|---|
tmpId |
Integer |
Temporary identifier for the shipment item |
long |
Integer |
Length of the item (in appropriate units) |
height |
Integer |
Height of the item (in appropriate units) |
wide |
Integer |
Width of the item (in appropriate units) |
weight |
Integer |
Weight of the item (in appropriate units) |
service |
Integer |
Service type for the shipment (1 = package, 2 = document) |
currency_id |
Integer |
Currency ID for the value of the shipment |
value |
Double |
Declared value of the shipment item |
delivery_payment_type |
Integer |
Payment type for delivery |
volumetric |
Double |
Volumetric weight of the shipment item |
Method: POST
Response codes
Response Explanation:
Root Object: data
- Type: Array
- Description: Contains details of the quotation and shipping options.
Response Fields:
Field Name |
Type |
Description |
---|---|---|
id |
Number |
Unique identifier for the quotation entry |
data |
Object |
Shipment-related information |
data.from |
String |
Origin country |
data.to |
String |
Destination country |
data.magnitude |
String |
Type of shipment, e.g., "International" or "Domestic" |
total |
Number |
Total cost of the shipment (including all charges) |
provider |
Object |
Information about the shipping provider |
provider.name |
String |
Name of the shipping provider |
provider.image |
String |
URL of the provider's logo |
quotation_id |
Number |
Quotation identifier |
quantity |
String |
Quantity of items |
freight |
Number |
Freight cost |
fee |
Number |
Additional fees |
declared_value |
Number |
Declared value of the shipment |
pickup_time |
String |
Estimated pickup time (if available) |
delivery_time |
Number |
Estimated delivery time in days |
agent_freight |
Number |
Freight cost provided by the agent (if applicable) |
agent_fee |
Number |
Additional agent fees (if applicable) |
agent_value |
Number |
Declared value from the agent's side |
utility |
Number |
Utility charges (if applicable) |
high |
Number |
Height of the shipment |
wide |
Number |
Width of the shipment |
long |
Number |
Length of the shipment |
extra_charges |
Number |
Any additional charges for the shipment |
currency |
Object |
Information about the currency used for the transaction |
tax |
Number |
Tax amount |
description |
String |
Additional description, e.g., "BY AIR" |
type_code |
String |
Code indicating the shipment type, e.g., "A" for air shipment |
Creating Shipment
This method to create the shipment
API Endpoint
http://staging-api.oneeasystop.com:3000/api/shipper/generate?locale=en
Headers
Header Name |
Value |
Description |
---|---|---|
Content-Type |
application/json |
Specifies the format of the request body. |
Authorization |
Bearer <your_token_here > |
Bearer token for authentication. |
Request Body
The request body contains the order details and related information. It must be sent as a JSON object with the following structure:
Root Object:
order
- Type: Object
- Description: Contains the order details.
Properties:
Order Fields
Field Name |
Type |
Description |
---|---|---|
id |
Number |
Unique identifier for the quotation id |
description |
String |
Description of the parcel or order |
extra_description |
String |
Additional description of the parcel |
extra_charges |
Number |
Additional charges for the order |
extra_charges_currency |
Number |
Currency ID for the extra charges |
option |
Number |
Selected option ID for the order |
objects |
Array |
List of objects in the order |
Objects Array:
Each item in the objects array must have the following fields:
Field Name |
Type |
Description |
---|---|---|
quantity |
Number |
Quantity of the item |
weight |
Number |
Weight of the item |
unit_value |
Number |
Unit value of the item |
value |
Number |
Total value of the item |
Sender Details
Field Name |
Type |
Description |
---|---|---|
document_type_id |
Number |
ID representing the type of document |
name |
String |
First name of the sender |
lastname |
String |
Last name of the sender |
document |
String |
Document number of the sender |
String |
Email address of the sender |
|
phone |
String |
Phone number of the sender |
zip |
String |
ZIP code of the sender's location |
address |
String |
Address of the sender |
Receiver Details:
Field Name |
Type |
Description |
---|---|---|
document_type_id |
Number |
ID representing the type of document |
name |
String |
First name of the receiver |
lastname |
String |
Last name of the receiver |
document |
String |
Document number of the receiver |
String |
Email address of the receiver |
|
phone |
String |
Phone number of the receiver |
zip |
String |
ZIP code of the receiver's location |
address |
String |
Address of the receiver |
Method: POST
Response codes
Response Explanation:
Root Object: order
- Type: Object
- Description: Contains information about the generated order.
Response Fields:
Field Name |
Type |
Description |
---|---|---|
id |
Number |
Unique identifier for the website order |
total |
Number |
Total cost of the order |
origin_name |
String |
Full name of the origin location (country, state, and city) |
destination_name |
String |
Full name of the destination location (country, state, and city) |
magnitude_id |
Number |
Identifier for the magnitude of the order (e.g., international, domestic) |
code |
String |
Unique order code |
observations |
String |
Any special observations for the order (if applicable) |
tracking |
String |
Tracking details for the shipment (if available) |
status |
Number |
Current status of the order |
payment_method |
Number |
Payment method used for the order |
transaction |
Object |
Details of the transaction (if applicable) |
provider_guide |
String |
Provider's guide details (if available) |
transaction_codes |
String |
Unique transaction code for the payment |
quotation_details |
Object |
Details of the quotation linked to the order |
from_external_api |
Boolean |
Indicates whether the order was generated from an external API |
api_tracking |
String |
Tracking details retrieved from the API (if applicable) |
api_reference |
String |
Reference code from the API |
provider_label |
String |
URL for the provider's label (if available) |
city_id |
Number |
Identifier for the city associated with the order |
destination_id |
Number |
Identifier for the destination city |
country_from |
String |
Name of the originating country |
sender_coordinates |
Array |
Geographic coordinates (latitude, longitude) of the sender's location |
receiver_coordinates |
Array |
Geographic coordinates (latitude, longitude) of the receiver's location |
delivery_payment_type |
String |
Type of delivery payment (if applicable) |
country_to |
String |
Name of the destination country |
currency |
Number |
Currency ID for the order |
invoice |
String |
URL for the invoice document |
Nested Object: provider
- Type: Object
- Description: Information about the service provider handling the order.
Field Name |
Type |
Description |
---|---|---|
id |
Number |
Unique identifier for the provider |
name |
String |
Name of the provider |
code |
String |
Unique code associated with the provider |
image |
Object |
Object containing URLs for the provider's logo and its thumbnail |
Nested Object: sender
- Type: Object
- Description: Contains information about the sender.
Field Name |
Type |
Description |
---|---|---|
id |
Number |
Unique identifier for the sender |
name |
String |
First name of the sender |
lastname |
String |
Last name of the sender |
document_type_id |
Number |
Document type ID for the sender |
document |
String |
Document number of the sender |
String |
Email address of the sender |
|
address |
String |
Address of the sender |
phone |
String |
Phone number of the sender |
zip |
String |
ZIP code of the sender's location |
created_at |
String |
Timestamp when the sender's details were created |
updated_at |
String |
Timestamp when the sender's details were last updated |
Nested Object: receiver
- Type: Object
- Description: Contains information about the receiver.
Field Name |
Type |
Description |
---|---|---|
id |
Number |
Unique identifier for the receiver |
name |
String |
First name of the receiver |
lastname |
String |
Last name of the receiver |
document_type_id |
Number |
Document type ID for the receiver |
document |
String |
Document number of the receiver |
String |
Email address of the receiver |
|
address |
String |
Address of the receiver |
phone |
String |
Phone number of the receiver |
zip |
String |
ZIP code of the receiver's location |
created_at |
String |
Timestamp when the receiver's details were created |
updated_at |
String |
Timestamp when the receiver's details were last updated |
Nested Array: packages
- Type: Array
- Description: List of packages associated with the order.
Package Fields :
Field Name |
Type |
Description |
---|---|---|
id |
Number |
Unique identifier for the package |
weight |
Number |
Weight of the package |
height |
Number |
Height of the package |
wide |
Number |
Width of the package |
long |
Number |
Length of the package |
value |
Number |
Declared value of the package |
description |
String |
Description of the package |
currency_id |
Number |
Currency ID for the declared value |
website_order_id |
Number |
Associated website order ID |
created_at |
String |
Timestamp when the package details were created |
updated_at |
String |
Timestamp when the package details were last updated |
Pickup Shipment
This method to pickup the shipment
API Endpoint
http://staging-api.oneeasystop.com:3000/api/pickup-shipment
Headers
Header Name |
Value |
Description |
---|---|---|
Content-Type |
application/json |
Specifies the format of the request body. |
Authorization |
Bearer <your_token_here > |
Bearer token for authentication. |
Request Body
The request body contains the order details and related information. It must be sent as a JSON object with the following structure:
Root Object:
order
- Type: Object
- Description: Contains information about the cancel order.
Field Name |
Type |
Description |
---|---|---|
id |
Number |
Unique identifier for the order |
status |
String |
Status for changing, e.g., "cancel" |
description |
String |
Description of the parcel or order |
Method: POST
Response codes
Cancel Pickup Shipment
This method to cancel the pickup shipment
API Endpoint
http://staging-api.oneeasystop.com:3000/api/cancel-pickup-shipment
Headers
Header Name |
Value |
Description |
---|---|---|
Content-Type |
application/json |
Specifies the format of the request body. |
Authorization |
Bearer <your_token_here > |
Bearer token for authentication. |
Request Body
The request body contains the order details and related information. It must be sent as a JSON object with the following structure:
Root Object:
order
- Type: Object
- Description: Contains information about the cancel order.
Field Name |
Type |
Description |
---|---|---|
id |
Number |
Unique identifier for the order |
status |
String |
Status for changing, e.g., "cancel" |
description |
String |
Description of the parcel or order |