POST api/v1/values/quantity?stockCode={stockCode}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
stockCode

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of CF_STOK_BIRIM
NameDescriptionTypeAdditional information
STOK_ID

integer

None.

STOK_KODU

string

String length: inclusive between 0 and 30

BIRIM_ADI

string

String length: inclusive between 0 and 10

BIRIM

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "STOK_ID": 1,
    "STOK_KODU": "sample string 2",
    "BIRIM_ADI": "sample string 3",
    "BIRIM": 4
  },
  {
    "STOK_ID": 1,
    "STOK_KODU": "sample string 2",
    "BIRIM_ADI": "sample string 3",
    "BIRIM": 4
  }
]

application/xml, text/xml

Sample:
<ArrayOfCF_STOK_BIRIM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CFAndroidService.Models">
  <CF_STOK_BIRIM>
    <BIRIM>4</BIRIM>
    <BIRIM_ADI>sample string 3</BIRIM_ADI>
    <STOK_ID>1</STOK_ID>
    <STOK_KODU>sample string 2</STOK_KODU>
  </CF_STOK_BIRIM>
  <CF_STOK_BIRIM>
    <BIRIM>4</BIRIM>
    <BIRIM_ADI>sample string 3</BIRIM_ADI>
    <STOK_ID>1</STOK_ID>
    <STOK_KODU>sample string 2</STOK_KODU>
  </CF_STOK_BIRIM>
</ArrayOfCF_STOK_BIRIM>