GET api/Customer/GetSummary?customerId={customerId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| customerId | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
CustomerSummary| Name | Description | Type | Additional information |
|---|---|---|---|
| FirstName | string |
None. |
|
| Id | globally unique identifier |
None. |
|
| LastName | string |
None. |
|
| PolicySummaries | Collection of PolicySummary |
None. |
Response Formats
application/json, text/json
Sample:
{
"FirstName": "sample string 1",
"Id": "bb001c52-0032-4740-876f-21b34201d981",
"LastName": "sample string 2",
"PolicySummaries": null
}
application/xml, text/xml
Sample:
<CustomerSummary xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tss.Eitr.Customer.Agria.WebApi.Models"> <FirstName>sample string 1</FirstName> <Id>bb001c52-0032-4740-876f-21b34201d981</Id> <LastName>sample string 2</LastName> <PolicySummaries i:nil="true" /> </CustomerSummary>