Printags Public
    • Accounts
      • Get current account
        GET
      • Get an account by ID
        GET
    • Orders
      • Find orders
        GET
      • Get an order by ID
        GET
      • Create a new order
        POST
      • Validate an order
        POST
    • Files
      • Upload a file
        POST
      • Get a file by ID
        GET
    • Statuses
      • Get all statuses
        GET
    • Shipping
      • List available carriers
        GET
      • Calculate shipping rates
        POST
    • Models
      • List available models
    • Schemas
      • Account
      • Address
      • Customer
      • Model
      • Product
      • ProductGroup
      • SubscriptionPlan
      • Shipping
      • ShippingCarrier
      • ShippingRate
      • ShippingEnvelope
      • Order
      • NFC

    ShippingCarrier

    A carrier service available for a destination, with its computed price.

    {
        "id": "lpf_standard",
        "name": "La Poste - Lettre Suivie",
        "code": "laposte",
        "hasServicePoints": false,
        "apiProvider": "laposte",
        "countries": [
            "FR",
            "BE"
        ],
        "enabledCountries": [
            "FR",
            "BE",
            "LU"
        ],
        "price": 2.3,
        "weightTier": 0,
        "priceTiers": {
            "0": 2.3,
            "250": 3
        },
        "minWeight": 0,
        "maxWeight": 3000
    }
    Built with