Salla Docs
Merchant API
  • Merchant API
  • Salla OAuth 2.0
Partner APIs
  • App API
  • Shipment API
Storefront
  • Twilight Engine
  • Twilight SDK
  • Web Components
  • Change Log
Salla CLI
Merchant API
  • Merchant API
  • Salla OAuth 2.0
Partner APIs
  • App API
  • Shipment API
Storefront
  • Twilight Engine
  • Twilight SDK
  • Web Components
  • Change Log
Salla CLI
Salla - Opensource
Salla - Developers Community
  1. Shipping Companies
  • Publish App
  • Change Log
  • Getting Started
  • Migration to the New API
  • Shipping Management
    • Create App
    • App Cycle
    • Setup App
    • Test App
  • Order Fulfilment
    • Create App
    • App Cycle
    • Setup App
    • Test App
  • Shipments
    • Create Shipment
      POST
    • List Shipments
      GET
    • Update Shipment Details
      PUT
    • Shipment Details
      GET
    • Cancel Shipments
      POST
    • Return Shipments
      POST
    • Shipment Tracking
      GET
  • Shipping Companies
    • List Shipping Companies
      GET
    • Shipping Company Details
      GET
  1. Shipping Companies

Shipping Company Details

Production
https://api.salla.dev/admin/v2
Production
https://api.salla.dev/admin/v2
GET
https://api.salla.dev/admin/v2
/shipping/companies/{company_id}
Shipping Companies
Last modified:2024-09-26 09:30:21
This endpoint allows you to fetch details of shipping companies for your store.
Scopes
shipping.read- Shipping Read Only

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params
company_id
number 
required
Shipping Company ID

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 --request GET 'https://api.salla.dev/admin/v2/shipping/companies/'

Responses

🟢200Success
application/json
Body
status
number 
optional
Response Status Code
Example:
200
success
boolean 
optional
Whether or not the response is successful
Default:
true
data
object 
optional
id
number 
optional
Shipping Company ID
Example:
346226214
name
string 
optional
Shipping Company Name
Example:
Shipping Company
app_id
string  | null 
optional
Shipping Application ID
Example:
505994491
activation_type
enum<string>  | enum<null> 
optional
Shipping Company Activation Type
Allowed values:
apimanualnull
Example:
api
slug
string  | null 
optional
Shipping Company Slug
Example:
shipping-company
Example
{
  "status": 200,
  "success": true,
  "data": {
    "id": 976721503,
    "name": "Shipping Company",
    "app_id": "505994491",
    "activation_type": "api",
    "slug": "shipping-company"
  }
}
🟠404Not Found
Previous
List Shipping Companies