- Admin API
- Auth
- Catalog
- Sales
- Purchases
- CMS
- User Management
- Settings
- Currency
- Coupons
- Warehouses
- Taxes
- Shippings
- Company
- GET All Price TypesGET
- GET All Product TypesGET
- GET All CountriesGET
- GET All PackagesGET
- GET PackageGET
- Ecommerce API
- Products
- Pages
- Shop
- Account
- Cart
- GET CompanyGET
- GET CountriesGET
GET Shipping
Developing
GET
{{url}}api/v1/admin/shippings/{id}
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'http://ecompulse.test/api/v1/admin/shippings/1' \
--header 'Accept: application/json' \
--header 'X-API-Key: exzbLclGAzBCyL0k1Yv29Evu6mwoYOATBF0lWPyT'
Response Response Example
{
"status": "success",
"message": "Shipping retrieved successfully",
"data": {
"id": 1,
"name": "Free Shipping",
"fee": "0.00",
"num_of_days": 21,
"status": 1
}
}
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
id
integerÂ
required
Example:
1
Header Params
Accept
stringÂ
required
Example:
application/json
X-API-Key
stringÂ
required
Example:
{{key}}
Responses
🟢200Success
application/json
Body
object {0}
Modified at 2024-05-27 08:18:41