- 🐶 Walk through Apidog
- hey couriers
- Web
- Hey Courier
- Auth
- Group Permission
- Webhook Secret Key
- Profile Update
- Common
- Employee
- Package Model
- 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
- Depo Address
- Archive
- Company Report
- GetGET
- CreatePOST
- Register Company Without AuthPOST
- RetrieveGET
- UpdatePATCH
- Status ChangePATCH
- DeleteDELETE
- 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
Create
POST
{{base_url}}company/
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Body Params application/json
company_name
string
required
company_contact_name
string
required
company_number
string
required
company_abn_no
string
required
company_email
string
required
company_note
string
required
company_street_address
string
required
company_suburb
string
required
company_state
string
required
company_postcode
string
required
company_additional_detail
string
required
depo_address
array [object {5}]
required
depo_street_address
string
optional
depo_suburb
integer
optional
depo_state
integer
optional
depo_postcode
integer
optional
depo_additional_details
string
optional
Example
{
"company_name": "CompanyThree",
"company_contact_name": "Sneha",
"company_number": "9923159846",
"company_abn_no": "ABN498675",
"company_email": "sneha8@yopmail.com",
"company_note": "sakfh a;slfj losjkfoj lj",
"company_street_address": "Gota",
"company_suburb": "Gota",
"company_state": "Gujarat",
"company_postcode": "2145",
"company_additional_detail": "This information includes who works for the company, what it produces, when it started, where it's located, why it's special, and how it plans to grow.",
"depo_address": [
{
"depo_street_address": "Gota 123",
"depo_suburb": "Gota",
"depo_state": "Gujrat",
"depo_postcode": "093274",
"depo_additional_details": "Diapost 13"
}
]
}
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 POST '{{base_url}}company/' \
--header 'Content-Type: application/json' \
--data-raw '{
"company_name": "CompanyThree",
"company_contact_name": "Sneha",
"company_number": "9923159846",
"company_abn_no": "ABN498675",
"company_email": "sneha8@yopmail.com",
"company_note": "sakfh a;slfj losjkfoj lj",
"company_street_address": "Gota",
"company_suburb": "Gota",
"company_state": "Gujarat",
"company_postcode": "2145",
"company_additional_detail": "This information includes who works for the company, what it produces, when it started, where it'\''s located, why it'\''s special, and how it plans to grow.",
"depo_address": [
{
"depo_street_address": "Gota 123",
"depo_suburb": "Gota",
"depo_state": "Gujrat",
"depo_postcode": "093274",
"depo_additional_details": "Diapost 13"
}
]
}'
Responses
🟢200Success
application/json
Body
object {0}
Example
{}
Modified at 2024-11-22 06:13:56