POST api/Customer/GetSetting
Kullanici Ayarlarini Goruntule
Request Information
URI Parameters
None.
Body Parameters
GetCustomerSettingInput| Name | Description | Type | Additional information |
|---|---|---|---|
| Token | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Token": "sample string 1"
}
text/xml
Sample:
<GetCustomerSettingInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BiCay.Services.CustomerServices.Dtos"> <Token xmlns="http://schemas.datacontract.org/2004/07/BiCay.Services.Base.Dtos">sample string 1</Token> </GetCustomerSettingInput>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
CustomerSettingDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Type | integer |
None. |
|
| Name | string |
None. |
|
| LastName | string |
None. |
|
| CompanyName | string |
None. |
|
| ProfileImage | string |
None. |
|
| string |
None. |
||
| Phone | string |
None. |
|
| Address | string |
None. |
|
| DistrictId | integer |
None. |
|
| DistrictName | string |
None. |
|
| CityId | integer |
None. |
|
| CityName | string |
None. |
|
| TaxName | string |
None. |
|
| TaxNo | string |
None. |
|
| Gender | integer |
None. |
|
| BirthDate | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"Type": 1,
"Name": "sample string 2",
"LastName": "sample string 3",
"CompanyName": "sample string 4",
"ProfileImage": "sample string 5",
"Email": "sample string 6",
"Phone": "sample string 7",
"Address": "sample string 8",
"DistrictId": 1,
"DistrictName": "sample string 9",
"CityId": 1,
"CityName": "sample string 10",
"TaxName": "sample string 11",
"TaxNo": "sample string 12",
"Gender": 1,
"BirthDate": "08.11.2025"
}
text/xml
Sample:
<CustomerSettingDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BiCay.Services.CustomerServices.Dtos"> <Address>sample string 8</Address> <BirthDate>2025-11-08T12:53:19.4782976+03:00</BirthDate> <CityId>1</CityId> <CityName>sample string 10</CityName> <CompanyName>sample string 4</CompanyName> <DistrictId>1</DistrictId> <DistrictName>sample string 9</DistrictName> <Email>sample string 6</Email> <Gender>1</Gender> <LastName>sample string 3</LastName> <Name>sample string 2</Name> <Phone>sample string 7</Phone> <ProfileImage>sample string 5</ProfileImage> <TaxName>sample string 11</TaxName> <TaxNo>sample string 12</TaxNo> <Type>1</Type> </CustomerSettingDto>