GET api/Invoice/GetAllTotalDetailTypes
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of TotalDetailType| Name | Description | Type | Additional information |
|---|---|---|---|
| TotalDetailTypeID | integer |
None. |
|
| TotalDetailTypeName | string |
None. |
|
| IsTaxable | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"TotalDetailTypeID": 1,
"TotalDetailTypeName": "sample string 2",
"IsTaxable": true
},
{
"TotalDetailTypeID": 1,
"TotalDetailTypeName": "sample string 2",
"IsTaxable": true
}
]
application/xml, text/xml
Sample:
<ArrayOfTotalDetailType xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<TotalDetailType>
<TotalDetailTypeID>1</TotalDetailTypeID>
<TotalDetailTypeName>sample string 2</TotalDetailTypeName>
<IsTaxable>true</IsTaxable>
</TotalDetailType>
<TotalDetailType>
<TotalDetailTypeID>1</TotalDetailTypeID>
<TotalDetailTypeName>sample string 2</TotalDetailTypeName>
<IsTaxable>true</IsTaxable>
</TotalDetailType>
</ArrayOfTotalDetailType>