/
audit_calendar_month()

audit_calendar_month()

Function prototype

audit_calendar_month( session, id, year, month, context, [filter])

API Version

All

Supported interfaces

SOAP, REST (Since API Version 2.7.30)

Description

Returns the list of days in a month in which the patient/user has audit records (AUDIT)

Required permissions: The active user must have role SUPERVISOR. Otherwise an INSUFFICIENT_PRIVILEGES error will be returned.

Input parameters:

  • session: is the session token obtained in the session_init() call

  • id: CASE or USER reference (depending on the context value)

  • month: Month (numerical value from 1 to 12) of the audit records

  • year: Year of the audit records

  • id: CASE or USER reference

  • context: Possible values:

    • "CASE": The list of audit records will correspond to operations that affected the selected CASE

    • "USER": The list of audit records will correspond to operations executed by the selected USER

  • filter: JSON string with options to filter the list of audit records returned. See AUDIT Filter options

Output parameters:

  • result: List of days that contain audit records. Only the days with any activity will be included in the list. Each entry provides the following information

    • date

    • audits: number of audit records in the day

  • ErrorMsg: If any error occurs, then this value contains a description of the error translated to the current language

  • ErrorCode: If any error occurs, then this value contains any of the standard ERROR CODES

Request example

audit_calendar_month( "LC0000001", 111, 2015, 02, "CASE")

Response

The response format is XML when the function has been invoked via the SOAP API, and JSON when it has been invoked via the REST API

Return Error codes

ERROR CODE

 

ERROR CODE

 

INVALID_TOKEN

The session token provided is not valid

INSUFFICIENT_PRIVILEGES

The session user does not have the necessary privileges to …



 

Related content