POST api/patient/savetransaction
Save Patient Transcations
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| model |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{
"imgUserId": 1,
"patientId": 2,
"transactionTypeId": 3,
"patientCategoryId": 4,
"notes": "sample string 5",
"description": "sample string 6",
"bodyDirectionId": 7,
"locationDirectionId": 8,
"woundLocationId": 9,
"overallId": 10,
"overallIncidentId": 11,
"width": 12.0,
"length": 13.0,
"depth": 14.0,
"imageCount": 15
}
application/xml, text/xml
Sample:
<TransactionVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WCCrossCutting.Models"> <BodyDirectionId>7</BodyDirectionId> <Depth>14</Depth> <Description>sample string 6</Description> <ImageCount>15</ImageCount> <ImgUserId>1</ImgUserId> <LocationDirectionId>8</LocationDirectionId> <Notes>sample string 5</Notes> <OverallId>10</OverallId> <OverallIncidentId>11</OverallIncidentId> <PatientCategoryId>4</PatientCategoryId> <PatientId>2</PatientId> <TransactionTypeId>3</TransactionTypeId> <Width>12</Width> <WoundLocationId>9</WoundLocationId> <length>13</length> </TransactionVM>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Response body formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.