POST api2/EHOnCallEmergencyLog/InsertEmergencyLogItem
Request Information
URI Parameters
None.
Body Parameters
EHOnCallEmergencyLogItemModel| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| EntryId | integer |
None. |
|
| ResponsiblePerson | integer |
None. |
|
| DateTimeOfIncident | date |
None. |
|
| DateTimeResolved | date |
None. |
|
| Message | string |
None. |
|
| Disposition | string |
None. |
|
| Void | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": 1,
"EntryId": 2,
"ResponsiblePerson": 3,
"DateTimeOfIncident": "2026-01-09T08:10:03.7767321-06:00",
"DateTimeResolved": "2026-01-09T08:10:03.7767321-06:00",
"Message": "sample string 5",
"Disposition": "sample string 6",
"Void": true
}
application/xml, text/xml
Sample:
<EHOnCallEmergencyLogItemModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JCDHAPI.Controllers.EHOnCallApp.Models"> <DateTimeOfIncident>2026-01-09T08:10:03.7767321-06:00</DateTimeOfIncident> <DateTimeResolved>2026-01-09T08:10:03.7767321-06:00</DateTimeResolved> <Disposition>sample string 6</Disposition> <EntryId>2</EntryId> <Message>sample string 5</Message> <ResponsiblePerson>3</ResponsiblePerson> <Void>true</Void> <id>1</id> </EHOnCallEmergencyLogItemModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |