POST api/emar/startup/get-startup-data
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
EmarStartUpData| Name | Description | Type | Additional information |
|---|---|---|---|
| PatienResponsesList | Collection of EmarPatientResponseDto |
None. |
|
| SecurityMatrixRightsList | Collection of SecurityMatrixRight |
None. |
Response Formats
application/json, text/json
Sample:
{
"PatienResponsesList": [
{
"Response": "sample string 1",
"ColorName": "sample string 2",
"ColorHexValue": "sample string 3",
"ColorRgbValue": "sample string 4",
"AsTaken": true,
"IsDefault": true
},
{
"Response": "sample string 1",
"ColorName": "sample string 2",
"ColorHexValue": "sample string 3",
"ColorRgbValue": "sample string 4",
"AsTaken": true,
"IsDefault": true
}
],
"SecurityMatrixRightsList": [
{
"SecurityId": 1,
"ActionCode": "sample string 2",
"Description": "sample string 3",
"CategoryName": "sample string 4",
"IsEnabled": true
},
{
"SecurityId": 1,
"ActionCode": "sample string 2",
"Description": "sample string 3",
"CategoryName": "sample string 4",
"IsEnabled": true
}
]
}
application/xml, text/xml
Sample:
<EmarStartUpData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CWI.Mobile.Domain.DTO">
<PatienResponsesList>
<EmarPatientResponseDto>
<AsTaken>true</AsTaken>
<ColorHexValue>sample string 3</ColorHexValue>
<ColorName>sample string 2</ColorName>
<ColorRgbValue>sample string 4</ColorRgbValue>
<IsDefault>true</IsDefault>
<Response>sample string 1</Response>
</EmarPatientResponseDto>
<EmarPatientResponseDto>
<AsTaken>true</AsTaken>
<ColorHexValue>sample string 3</ColorHexValue>
<ColorName>sample string 2</ColorName>
<ColorRgbValue>sample string 4</ColorRgbValue>
<IsDefault>true</IsDefault>
<Response>sample string 1</Response>
</EmarPatientResponseDto>
</PatienResponsesList>
<SecurityMatrixRightsList>
<SecurityMatrixRight>
<ActionCode>sample string 2</ActionCode>
<CategoryName>sample string 4</CategoryName>
<Description>sample string 3</Description>
<IsEnabled>true</IsEnabled>
<SecurityId>1</SecurityId>
</SecurityMatrixRight>
<SecurityMatrixRight>
<ActionCode>sample string 2</ActionCode>
<CategoryName>sample string 4</CategoryName>
<Description>sample string 3</Description>
<IsEnabled>true</IsEnabled>
<SecurityId>1</SecurityId>
</SecurityMatrixRight>
</SecurityMatrixRightsList>
</EmarStartUpData>