1. Shipping Companies
Salla Platform Docs
  • Getting Started
  • Migration to the New API
  • Publish App
  • Change Log
  • Shipping Management
    • App Cycle
    • Test App
    • Create App
    • Setup App
  • Order Fulfilment
    • App Cycle
    • Setup App
    • Test App
    • Create App
  • Salla AWB
    • Getting Started
    • Create Shipping App
    • Setup Shipping App
    • App Functions
      • Shipment Creating
      • Shipment Cancelling
    • Generating AWB
      • Shipment AWB
      • Shipment Return AWB
      • Shipment Cancelled AWB
  • APIs
    • 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
    • Shipping Routes
      • Routes List
        GET
      • Route Details
        GET
      • Create Route
        POST
      • Update Route
        PATCH
      • Default Route
        PATCH
      • Delete Route
        DELETE
Merchant
Merchant
  • Merchant API
  • Embedded SDK
  • Salla OAuth 2.0
Storefront
Storefront
  • Twilight Engine
  • Twilight SDK
  • Web Components
  • Ecommerce Events
  • Component Bundle
  • Checkout APIs
  • Change Log
App Functions
Partner APIs
Partner APIs
  • App API
  • Shipments & Fulfillment APIs
  • Salla AWB
  • Recurring Payments API
  • Billing System Salla partners
  • Communication Apps
Dev Tools
Dev Tools
  • Partners Agent Kit
  • Salla Apps Playbook
  • Salla CLI
Merchant
Merchant
  • Merchant API
  • Embedded SDK
  • Salla OAuth 2.0
Storefront
Storefront
  • Twilight Engine
  • Twilight SDK
  • Web Components
  • Ecommerce Events
  • Component Bundle
  • Checkout APIs
  • Change Log
App Functions
Partner APIs
Partner APIs
  • App API
  • Shipments & Fulfillment APIs
  • Salla AWB
  • Recurring Payments API
  • Billing System Salla partners
  • Communication Apps
Dev Tools
Dev Tools
  • Partners Agent Kit
  • Salla Apps Playbook
  • Salla CLI
Salla - Opensource
Salla - Developers Community
  1. Shipping Companies

List Shipping Companies

Production
https://api.salla.dev/admin/v2
Production
https://api.salla.dev/admin/v2
GET
https://api.salla.dev/admin/v2
/shipping/companies/
Last modified:2024-09-26 09:30:21
This endpoint allows you to list all active shipping companies associated with the store.
Note
If the "activation_type" is set to:
manual : which means that the shipping company is from the merchant side (not available to be linked from salla dashboard)
api : which means it has been linked through salla.
Scopes
shipping.read- Shipping Read Only

Request

Authorization
Add the parameter
Authorization
to Headers
,whose value is to concatenate the Token after the Bearer.
Example:
Authorization: Bearer ********************

Request Code 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 'https://api.salla.dev/admin/v2/shipping/companies/' \
--header 'Authorization: Bearer <token>'

Responses

🟢200Success
application/json
Bodyapplication/json

Example
{
    "status": 200,
    "success": true,
    "data": [
        {
            "id": 1723506348,
            "name": "سمسا",
            "app_id": "1683195908",
            "activation_type": "manual",
            "slug": null
        },
        {
            "id": 989286562,
            "name": "ارامكس",
            "app_id": "1311345502",
            "activation_type": "manual",
            "slug": null
        },
        {
            "id": 2079537577,
            "name": "البريد السعودي | سُبل",
            "app_id": "88903443",
            "activation_type": "manual",
            "slug": null
        },
        {
            "id": 814202285,
            "name": "DHL Express",
            "app_id": "827885927",
            "activation_type": "api",
            "slug": "dhl-express"
        },
        {
            "id": 1130931637,
            "name": "Ajeek",
            "app_id": "1499493023",
            "activation_type": "api",
            "slug": "ajeek"
        },
        {
            "id": 665151403,
            "name": "أي مكان",
            "app_id": "944213936",
            "activation_type": "manual",
            "slug": null
        },
        {
            "id": 915304371,
            "name": "UPS",
            "app_id": "1218344689",
            "activation_type": "api",
            "slug": "ups"
        },
        {
            "id": 1764372897,
            "name": "فتشر",
            "app_id": "2099547131",
            "activation_type": "api",
            "slug": "fetcher"
        },
        {
            "id": 1378987453,
            "name": "mlcGO",
            "app_id": "1720219575",
            "activation_type": "manual",
            "slug": null
        },
        {
            "id": 349994915,
            "name": "سلاسة",
            "app_id": "456034465",
            "activation_type": "manual",
            "slug": null
        },
        {
            "id": 1096243131,
            "name": "Storage Station",
            "app_id": "1353087977",
            "activation_type": "api",
            "slug": "storage-station"
        }
    ]
}
Modified at 2024-09-26 09:30:21
Previous
Shipment Tracking
Next
Shipping Company Details