Skladon - Developers
  • Skladon docs
  • 📡Integration
    • API
      • API usage tips and limits
      • Authentication
      • Claims
      • Files
      • Orders
      • Products
      • Products availability
      • Products sets
      • Receivings
      • Returns
      • Shipper service codes
      • Webhooks
      • Stock movements
    • Webhooks
  • Report a Bug
Powered by GitBook
On this page
  1. Integration
  2. API

Shipper service codes

PreviousReturnsNextWebhooks

Last updated 1 year ago

You may find descriptions of endpoints for work with shipper service codes bellow.

📡

Get all avaialble shipper service codes

get
Authorizations
Header parameters
x-api-keystringRequired

This is the eshop key you receive during onboarding.

authorizationstringRequired

Token you get from calling /users/login

Responses
200
Success response
application/json
401
Unauthorized response
application/json
get
GET /v2/shipper-service-codes HTTP/1.1
Host: gw.new.skladon.net
authorization: text
x-api-key: text
Accept: */*
{
  "statusCode": 200,
  "message": "text",
  "data": [
    {
      "label": "UPS - Express saver",
      "value": "UPSES",
      "shipper": "UPS",
      "isExpedition": true,
      "isReturn": false
    }
  ]
}