- 🐶 Walk through Apidog
- hey couriers
- Web
- Hey Courier
- Auth
- Group Permission
- Webhook Secret Key
- Profile Update
- Common
- Employee
- Package Model
- Archive
- Package CSV DownloadPATCH
- Create Package by CompanyPOST
- Area by PostcodeGET
- Get Package by IDPOST
- Update Package by CompanyPATCH
- GetGET
- Get PriceGET
- CreatePOST
- RetrieveGET
- UpdatePATCH
- DeleteDELETE
- Bulk UploadPOST
- Excel Upload POST
- Status ChangePATCH
- Multiple Zone FilterPATCH
- Package by Driver and UnassignPATCH
- Assign Package To Driver
- Photo Upload in Assign Package
- Route
- Delivery Rates
- Driver Delivery Rates
- Dashboard API
- Optimize Route List of Package
- Return Report
- Delivery Attempt
- Company
- Delivery Status Manage Model
- Warehouse
- Pickup Point
- Driver Lat-Long Manage
- Company Package Upload
- Package by Company Key
- Driver Support
- Pickup Package
- Wallet
- Pickup Route
- Pickup Package by Webhook
- Wallet Adjustment
- Invoice
- App
- Untitled EndpointGET
- Untitled EndpointGET
- Untitled EndpointPOST
Update Package by Company
PATCH
{{base_url}}add-package-by-webhook/2/
Request
Authorization
Add parameter in header
Example:
X-Token: ********************
Header Params
X-Webhook-Secret
string
optional
Example:
q1QyXKNj5D4ukdAk9QGna5DtUvketegM
Body Params application/json
hawb
string
required
customer_code
string
required
customer_name
string
required
customer_address
string
required
postcode
integer
required
description_of_goods
string
required
count
integer
required
landed
boolean
required
weight
integer
required
shipper_code
null
required
shipper_name
string
required
shipper_address
string
required
shipper_city
string
required
shipper_state
string
required
shipper_postcode
string
required
shipper_country
string
required
origin
string
required
port
null
required
total_value
integer
required
goods_currency
string
required
sac
boolean
required
fr_reference
null
required
sub_master
null
required
pkg_type
null
required
country_of_origin
null
required
cyber_vendor_account
null
required
customs_code
null
required
cyber_importer_account
null
required
importer_abn
null
required
importer_cac
null
required
cyber_supplier_account
null
required
supplier_customs_code
null
required
is_scanned
boolean
required
zone
integer
required
suburb
integer
required
state
integer
required
country
integer
required
height
number
required
length
number
required
volume_weighted
number
required
delivery_date
null
required
price
null
required
Example
{
"hawb": "HAWB56209",
"customer_code": "",
"customer_name": "Maahi Shah",
"customer_address": "Patel's Cafe, Road, Gota, Ahmedabad, Gujarat 382481",
"customer_phone": null,
"customer_email": null,
"postcode": null,
"description_of_goods": "",
"company": 1,
"count": null,
"landed": false,
"weight": null,
"shipper_code": "",
"shipper_name": "",
"shipper_address": "",
"shipper_city": "",
"shipper_state": "",
"shipper_postcode": "",
"shipper_country": "",
"origin": "",
"port": "",
"total_value": null,
"goods_currency": "",
"sac": false,
"fr_reference": "",
"sub_master": "",
"pkg_type": "",
"country_of_origin": "",
"cyber_vendor_account": "",
"customs_code": "",
"cyber_importer_account": "",
"importer_abn": "",
"importer_cac": "",
"cyber_supplier_account": "",
"supplier_customs_code": "",
"is_scanned": false,
"zone": 20,
"suburb": 2,
"state": 6,
"country": 2,
"height": null,
"length": null,
"volume_weighted": null,
"delivery_date": null,
"price": null,
"coordinates": {
"latitude": -33.89376300000001,
"longitude": 151.2281313
}
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request PATCH '{{base_url}}add-package-by-webhook/2/' \
--header 'X-Webhook-Secret: q1QyXKNj5D4ukdAk9QGna5DtUvketegM' \
--header 'Content-Type: application/json' \
--data-raw '{
"hawb": "HAWB56209",
"customer_code": "",
"customer_name": "Maahi Shah",
"customer_address": "Patel'\''s Cafe, Road, Gota, Ahmedabad, Gujarat 382481",
"customer_phone": null,
"customer_email": null,
"postcode": null,
"description_of_goods": "",
"company": 1,
"count": null,
"landed": false,
"weight": null,
"shipper_code": "",
"shipper_name": "",
"shipper_address": "",
"shipper_city": "",
"shipper_state": "",
"shipper_postcode": "",
"shipper_country": "",
"origin": "",
"port": "",
"total_value": null,
"goods_currency": "",
"sac": false,
"fr_reference": "",
"sub_master": "",
"pkg_type": "",
"country_of_origin": "",
"cyber_vendor_account": "",
"customs_code": "",
"cyber_importer_account": "",
"importer_abn": "",
"importer_cac": "",
"cyber_supplier_account": "",
"supplier_customs_code": "",
"is_scanned": false,
"zone": 20,
"suburb": 2,
"state": 6,
"country": 2,
"height": null,
"length": null,
"volume_weighted": null,
"delivery_date": null,
"price": null,
"coordinates": {
"latitude": -33.89376300000001,
"longitude": 151.2281313
}
}'
Responses
🟢200Success
application/json
Body
object {0}
Example
{}
Modified at 2025-05-19 09:11:00