GET api/suppliers/{id}/info?addressId={addressId}

Get Supplier Details

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

supplier Id

integer

Required

addressId

address Id

integer

None.

Body Parameters

None.

Response Information

supplier info

NameDescriptionTypeAdditional information
SupplierId

Supplier Id

integer

None.

DetailImageUrl

Details Image URL

string

None.

Name

Name

string

None.

Teaser

Teaser Text

string

None.

DiscountInfo

Discount Info

DiscountInfo

None.

Address

Address Info

SupplierAddressInfo

None.

CVR_Number

CVR Number

string

None.

Response Formats

application/json, text/json

Sample:
{
  "supplierId": 1,
  "detailImageUrl": "sample string 2",
  "name": "sample string 3",
  "teaser": "sample string 4",
  "discountInfo": {
    "info": "sample string 1",
    "minPercent": 1.1,
    "maxPercent": 1.1,
    "minAmount": 1.1,
    "maxAmount": 1.1,
    "text": "sample string 2",
    "currency": {
      "currencySymbol": "sample string 1",
      "isPrefix": true
    }
  },
  "address": {
    "addressId": 1,
    "detail": "sample string 2"
  },
  "cvR_Number": "sample string 5"
}