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
CustomerSummaryName | 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": "373da445-953c-4572-93df-4aacd7d92ee9", "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>373da445-953c-4572-93df-4aacd7d92ee9</Id> <LastName>sample string 2</LastName> <PolicySummaries i:nil="true" /> </CustomerSummary>