POST api/v1/values/stockdetail?stockcode={stockcode}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
stockcode

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of CF_STOK_DEPO_DETAY
NameDescriptionTypeAdditional information
STOK_KODU

string

String length: inclusive between 0 and 30

STOK_KISA_ADI

string

String length: inclusive between 0 and 80

DEPO_KODU

string

String length: inclusive between 0 and 30

ADI

string

String length: inclusive between 0 and 120

KALAN_MIKTAR

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "STOK_KODU": "sample string 1",
    "STOK_KISA_ADI": "sample string 2",
    "DEPO_KODU": "sample string 3",
    "ADI": "sample string 4",
    "KALAN_MIKTAR": 1.0
  },
  {
    "STOK_KODU": "sample string 1",
    "STOK_KISA_ADI": "sample string 2",
    "DEPO_KODU": "sample string 3",
    "ADI": "sample string 4",
    "KALAN_MIKTAR": 1.0
  }
]

application/xml, text/xml

Sample:
<ArrayOfCF_STOK_DEPO_DETAY xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CFAndroidService.Models">
  <CF_STOK_DEPO_DETAY>
    <ADI>sample string 4</ADI>
    <DEPO_KODU>sample string 3</DEPO_KODU>
    <KALAN_MIKTAR>1</KALAN_MIKTAR>
    <STOK_KISA_ADI>sample string 2</STOK_KISA_ADI>
    <STOK_KODU>sample string 1</STOK_KODU>
  </CF_STOK_DEPO_DETAY>
  <CF_STOK_DEPO_DETAY>
    <ADI>sample string 4</ADI>
    <DEPO_KODU>sample string 3</DEPO_KODU>
    <KALAN_MIKTAR>1</KALAN_MIKTAR>
    <STOK_KISA_ADI>sample string 2</STOK_KISA_ADI>
    <STOK_KODU>sample string 1</STOK_KODU>
  </CF_STOK_DEPO_DETAY>
</ArrayOfCF_STOK_DEPO_DETAY>