GET api/TreatmentCost?token={token}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| token | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of MDLTreatmentCost| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Value | decimal number |
None. |
|
| Identifier | string |
None. |
|
| Name | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Value": 2.0,
"Identifier": "sample string 3",
"Name": "sample string 4"
},
{
"Id": 1,
"Value": 2.0,
"Identifier": "sample string 3",
"Name": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfMDLTreatmentCost xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Asanus.BarCon.Middleware.Shared">
<MDLTreatmentCost>
<Id>1</Id>
<Identifier>sample string 3</Identifier>
<Name>sample string 4</Name>
<Value>2</Value>
</MDLTreatmentCost>
<MDLTreatmentCost>
<Id>1</Id>
<Identifier>sample string 3</Identifier>
<Name>sample string 4</Name>
<Value>2</Value>
</MDLTreatmentCost>
</ArrayOfMDLTreatmentCost>