POST api/v1/values/crmcustomer?customerName={customerName}&page={page}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| customerName | string |
Required |
|
| page | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of CF_MUSTERILER| Name | Description | Type | Additional information |
|---|---|---|---|
| MUSTERI_ID | integer |
None. |
|
| MUST_KODU | string |
String length: inclusive between 0 and 30 |
|
| MUST_ADI | string |
String length: inclusive between 0 and 50 |
|
| SATIR | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"MUSTERI_ID": 1,
"MUST_KODU": "sample string 2",
"MUST_ADI": "sample string 3",
"SATIR": 1
},
{
"MUSTERI_ID": 1,
"MUST_KODU": "sample string 2",
"MUST_ADI": "sample string 3",
"SATIR": 1
}
]
application/xml, text/xml
Sample:
<ArrayOfCF_MUSTERILER xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CFAndroidService.Models">
<CF_MUSTERILER>
<MUSTERI_ID>1</MUSTERI_ID>
<MUST_ADI>sample string 3</MUST_ADI>
<MUST_KODU>sample string 2</MUST_KODU>
<SATIR>1</SATIR>
</CF_MUSTERILER>
<CF_MUSTERILER>
<MUSTERI_ID>1</MUSTERI_ID>
<MUST_ADI>sample string 3</MUST_ADI>
<MUST_KODU>sample string 2</MUST_KODU>
<SATIR>1</SATIR>
</CF_MUSTERILER>
</ArrayOfCF_MUSTERILER>