GET api/Suppliers?supplierId={supplierId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
supplierId

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of SupplierShippingMethodDto
NameDescriptionTypeAdditional information
SupplierId

integer

None.

SupplierName

string

None.

SupplierShipingMethodId

integer

None.

ShippingMethodName

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "SupplierId": 1,
    "SupplierName": "sample string 2",
    "SupplierShipingMethodId": 3,
    "ShippingMethodName": "sample string 4"
  },
  {
    "SupplierId": 1,
    "SupplierName": "sample string 2",
    "SupplierShipingMethodId": 3,
    "ShippingMethodName": "sample string 4"
  }
]