ShippingModuleProvider Data Type

The external shipping provider behind a shipping module (e.g. GLS, DPD, DHL). Identifies the provider and its supported connection type.

Available Since
1.3.0
Properties
Name Type Description
id number Unique numeric identifier for the ShippingModuleProvider.
name string The name for the ShippingModuleProvider.
provider string The name for the Provider.
serviceType string The name for the service type.
moduleType ShippingModuleType The shipping module type that this provider belongs to.
ShippingModuleProvider (JSON)
{
  "shippingModuleProvider" : {
    "id" : 12345,
    "name" : "Standard",
    "provider" : "ups",
    "serviceType" : "standard",
    "moduleType" : {
      "id" : 12345,
      "name" : "SPOD"
    }
  }
}
ShippingModuleProvider Data Type

The external shipping provider behind a shipping module (e.g. GLS, DPD, DHL). Identifies the provider and its supported connection type.

Available Since
1.3.0
Properties
Name Type Description
id int Unique numeric identifier for the ShippingModuleProvider.
moduleType ShippingModuleType The shipping module type that this provider belongs to.
name string The name for the ShippingModuleProvider.
provider string The name for the Provider.
serviceType string The name for the service type.
ShippingModuleProvider (XML)
<shippingModuleProvider>
  <id>...</id>
  <name>Standard</name>
  <provider>ups</provider>
  <serviceType>standard</serviceType>
  <moduleType>
    <id>...</id>
    <name>SPOD</name>
  </moduleType>
</shippingModuleProvider>