GET PlanCare2Api/ClientReports/Permissions
Retrieves the ClientReport permissions for the current user
Requires 'Start' permission for function ClientReportOverview {4250ABB5-A4FD-4362-8B29-79E0D78571E5}
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
The permissions for the current user.
ClientReportPermission| Name | Description | Type | Additional information |
|---|---|---|---|
| PrintingAllowed |
Returns whether printing is allowed |
boolean |
None. |
| FreeTextReportingAllowed |
Returns whether creating/editing reports based on FreeText is allowed |
boolean |
None. |
| SOEPReportingAllowed |
Returns whether creating/editing reports based on SOEP is allowed |
boolean |
None. |
| EpisodeReportingAllowed |
Returns whether creating/editing reports with an episode is allowed |
boolean |
None. |
| SubgoalReportingAllowed |
Returns whether creating/editing reports with a subgoal is allowed |
boolean |
None. |
| ActionReportingAllowed |
Returns whether creating/editing reports with an action is allowed |
boolean |
None. |
| DomainReportingAllowed |
Returns whether creating/editing reports with a domain is allowed |
boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"PrintingAllowed": true,
"FreeTextReportingAllowed": true,
"SOEPReportingAllowed": true,
"EpisodeReportingAllowed": true,
"SubgoalReportingAllowed": true,
"ActionReportingAllowed": true,
"DomainReportingAllowed": true
}
application/xml, text/xml
Sample:
<ClientReportPermission xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Api.Interface.ClientReport"> <ActionReportingAllowed>true</ActionReportingAllowed> <DomainReportingAllowed>true</DomainReportingAllowed> <EpisodeReportingAllowed>true</EpisodeReportingAllowed> <FreeTextReportingAllowed>true</FreeTextReportingAllowed> <PrintingAllowed>true</PrintingAllowed> <SOEPReportingAllowed>true</SOEPReportingAllowed> <SubgoalReportingAllowed>true</SubgoalReportingAllowed> </ClientReportPermission>