POST api/CustomerSeller/GetCustomerDetail
Musteri Detay
Request Information
URI Parameters
None.
Body Parameters
GetCustomerDetailInput| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerId | globally unique identifier |
None. |
|
| Token | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"CustomerId": "7da734f5-ae45-4d95-ac8d-9b3e8d4182f9",
"Token": "sample string 2"
}
text/xml
Sample:
<GetCustomerDetailInput 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 2</Token> <CustomerId>7da734f5-ae45-4d95-ac8d-9b3e8d4182f9</CustomerId> </GetCustomerDetailInput>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
CustomerDetailDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| CompanyName | string |
None. |
|
| Status | integer |
None. |
|
| StatusText | string |
None. |
|
| TotalAmount | decimal number |
None. |
|
| TotalPaymentAmount | decimal number |
None. |
|
| LastAmount | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "4a7dd147-ee22-43d0-adf7-af9897540f68",
"Name": "sample string 2",
"CompanyName": "sample string 3",
"Status": 4,
"StatusText": "sample string 5",
"TotalAmount": 6.0,
"TotalPaymentAmount": 7.0,
"LastAmount": 8.0
}
text/xml
Sample:
<CustomerDetailDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BiCay.Services.CustomerServices.Dtos"> <CompanyName>sample string 3</CompanyName> <Id>4a7dd147-ee22-43d0-adf7-af9897540f68</Id> <LastAmount>8</LastAmount> <Name>sample string 2</Name> <Status>4</Status> <StatusText>sample string 5</StatusText> <TotalAmount>6</TotalAmount> <TotalPaymentAmount>7</TotalPaymentAmount> </CustomerDetailDto>