GET api/case/{caseId}/treatment/bills
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| caseId | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of TreatmentBillsModel| Name | Description | Type | Additional information |
|---|---|---|---|
| treatment_id | integer |
None. |
|
| description | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"treatment_id": 1,
"description": "sample string 2"
},
{
"treatment_id": 1,
"description": "sample string 2"
}
]
text/html
Sample:
[{"treatment_id":1,"description":"sample string 2"},{"treatment_id":1,"description":"sample string 2"}]
application/xml, text/xml
Sample:
<ArrayOfTreatmentBillsModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LSAtlas_WebAPI.Models">
<TreatmentBillsModel>
<description>sample string 2</description>
<treatment_id>1</treatment_id>
</TreatmentBillsModel>
<TreatmentBillsModel>
<description>sample string 2</description>
<treatment_id>1</treatment_id>
</TreatmentBillsModel>
</ArrayOfTreatmentBillsModel>
multipart/form-data
Sample:
<ArrayOfTreatmentBillsModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LSAtlas_WebAPI.Models"><TreatmentBillsModel><description>sample string 2</description><treatment_id>1</treatment_id></TreatmentBillsModel><TreatmentBillsModel><description>sample string 2</description><treatment_id>1</treatment_id></TreatmentBillsModel></ArrayOfTreatmentBillsModel>