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": "14896fba-aaa2-4286-acbe-0700c16facff",
"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>14896fba-aaa2-4286-acbe-0700c16facff</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": "bc55342c-f5ab-446a-b7a7-86ee4e5ec2b5",
"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>bc55342c-f5ab-446a-b7a7-86ee4e5ec2b5</Id> <LastAmount>8</LastAmount> <Name>sample string 2</Name> <Status>4</Status> <StatusText>sample string 5</StatusText> <TotalAmount>6</TotalAmount> <TotalPaymentAmount>7</TotalPaymentAmount> </CustomerDetailDto>