POST api/CustomerSeller/GetCustomerDetail

Musteri Detay

Request Information

URI Parameters

None.

Body Parameters

GetCustomerDetailInput
NameDescriptionTypeAdditional information
CustomerId

globally unique identifier

None.

Token

string

None.

Request Formats

application/json, text/json

Sample:
{
  "CustomerId": "a4ee5841-cfef-4372-8aed-7e6e7f9cc5ea",
  "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>a4ee5841-cfef-4372-8aed-7e6e7f9cc5ea</CustomerId>
</GetCustomerDetailInput>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

CustomerDetailDto
NameDescriptionTypeAdditional 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": "ffa6db32-d09b-429e-ac09-39dc5d317dcc",
  "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>ffa6db32-d09b-429e-ac09-39dc5d317dcc</Id>
  <LastAmount>8</LastAmount>
  <Name>sample string 2</Name>
  <Status>4</Status>
  <StatusText>sample string 5</StatusText>
  <TotalAmount>6</TotalAmount>
  <TotalPaymentAmount>7</TotalPaymentAmount>
</CustomerDetailDto>