GET api/EntityValueAddedServices/GetEntityValueAddedServices?entityCode={entityCode}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| entityCode | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of EntityValueAddedServiceItem| Name | Description | Type | Additional information |
|---|---|---|---|
| EntityValueAddedServiceId | globally unique identifier |
None. |
|
| PoliServiceID | globally unique identifier |
None. |
|
| ServiceName | string |
None. |
|
| IsDeleted | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"EntityValueAddedServiceId": "b8203fbd-b94a-42b0-aa86-4d4883258f59",
"PoliServiceID": "b7b078c5-6f24-4881-aefd-6dd9df2b5d0a",
"ServiceName": "sample string 3",
"IsDeleted": true
},
{
"EntityValueAddedServiceId": "b8203fbd-b94a-42b0-aa86-4d4883258f59",
"PoliServiceID": "b7b078c5-6f24-4881-aefd-6dd9df2b5d0a",
"ServiceName": "sample string 3",
"IsDeleted": true
}
]
application/xml, text/xml
Sample:
<ArrayOfEntityValueAddedServiceItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ConsoleAPI.Internal.Models.Entities">
<EntityValueAddedServiceItem>
<EntityValueAddedServiceId>b8203fbd-b94a-42b0-aa86-4d4883258f59</EntityValueAddedServiceId>
<IsDeleted>true</IsDeleted>
<PoliServiceID>b7b078c5-6f24-4881-aefd-6dd9df2b5d0a</PoliServiceID>
<ServiceName>sample string 3</ServiceName>
</EntityValueAddedServiceItem>
<EntityValueAddedServiceItem>
<EntityValueAddedServiceId>b8203fbd-b94a-42b0-aa86-4d4883258f59</EntityValueAddedServiceId>
<IsDeleted>true</IsDeleted>
<PoliServiceID>b7b078c5-6f24-4881-aefd-6dd9df2b5d0a</PoliServiceID>
<ServiceName>sample string 3</ServiceName>
</EntityValueAddedServiceItem>
</ArrayOfEntityValueAddedServiceItem>