GET api/Guarantees/SummaryType
Get list of Guarantee type
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of GuaranteeTypeDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Name | string |
None. |
|
| Value | integer |
None. |
|
| Text | string |
None. |
|
| Description | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": 1,
"name": "sample string 2",
"value": 3,
"text": "sample string 4",
"description": "sample string 5"
},
{
"id": 1,
"name": "sample string 2",
"value": 3,
"text": "sample string 4",
"description": "sample string 5"
}
]
text/html
Sample:
[{"id":1,"name":"sample string 2","value":3,"text":"sample string 4","description":"sample string 5"},{"id":1,"name":"sample string 2","value":3,"text":"sample string 4","description":"sample string 5"}]
application/xml, text/xml
Sample:
<ArrayOfGuaranteeTypeDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TR.eSAM.SubcontractModule.Application.Dtos.Dtos.GuaranteeAgg">
<GuaranteeTypeDto>
<Description xmlns="http://schemas.datacontract.org/2004/07/TR.eSAM.Application.Base.Dtos">sample string 5</Description>
<Text xmlns="http://schemas.datacontract.org/2004/07/TR.eSAM.Application.Base.Dtos">sample string 4</Text>
<Value xmlns="http://schemas.datacontract.org/2004/07/TR.eSAM.Application.Base.Dtos">3</Value>
<Id>1</Id>
<Name>sample string 2</Name>
</GuaranteeTypeDto>
<GuaranteeTypeDto>
<Description xmlns="http://schemas.datacontract.org/2004/07/TR.eSAM.Application.Base.Dtos">sample string 5</Description>
<Text xmlns="http://schemas.datacontract.org/2004/07/TR.eSAM.Application.Base.Dtos">sample string 4</Text>
<Value xmlns="http://schemas.datacontract.org/2004/07/TR.eSAM.Application.Base.Dtos">3</Value>
<Id>1</Id>
<Name>sample string 2</Name>
</GuaranteeTypeDto>
</ArrayOfGuaranteeTypeDto>