GET api/Supplier/{id}

GET api/Supplier/{id}

return the supplier with the provided Suppliercode

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

string

Required

Body Parameters

None.

Response Information

Resource Description

Supplier
NameDescriptionTypeAdditional information
SupplierCode

string

None.

Name

string

None.

Name2

string

None.

Street

string

None.

City

string

None.

Phone

string

None.

CustomerNumber

string

None.

GLN

string

None.

Store

string

None.

StoreGLN

string

None.

QCactive

boolean

None.

QCRatingTypes

string

None.

Response Formats

application/json, text/json

Sample:
{
  "SupplierCode": "sample string 1",
  "Name": "sample string 2",
  "Name2": "sample string 3",
  "Street": "sample string 4",
  "City": "sample string 5",
  "Phone": "sample string 6",
  "CustomerNumber": "sample string 7",
  "GLN": "sample string 8",
  "Store": "sample string 9",
  "StoreGLN": "sample string 10",
  "QCactive": true,
  "QCRatingTypes": "sample string 12"
}

application/xml, text/xml

Sample:
<Supplier xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/KOSTIFC">
  <City>sample string 5</City>
  <CustomerNumber>sample string 7</CustomerNumber>
  <GLN>sample string 8</GLN>
  <Name>sample string 2</Name>
  <Name2>sample string 3</Name2>
  <Phone>sample string 6</Phone>
  <QCRatingTypes>sample string 12</QCRatingTypes>
  <QCactive>true</QCactive>
  <Store>sample string 9</Store>
  <StoreGLN>sample string 10</StoreGLN>
  <Street>sample string 4</Street>
  <SupplierCode>sample string 1</SupplierCode>
</Supplier>