/
subscription_get ()

subscription_get ()

Function prototype

subscription_get ( session, program, team [, subscription] )

API Version

All

Supported interfaces

SOAP, REST (From API Version 2.7.27)

Description

Returns information about a SUBSCRIPTION

Input

  • session: Session token obtained by calling session_init ()

  • program: Reference to the PROGRAM of the SUBSCRIPTION

  • team: Reference of the TEAM OWNER of the SUBSCRIPTION

  • subscription: id of subscription (optional). If this value is provided, then program and team are ignored. The most recent SUBSCRIPTION for the indicated program and team will be used

Output

  • result: XML with information about the SUBSCRIPTION

    • ref: reference of the SUBSCRIPTION.

    • version: Version of the PROGRAM used in this SUBSCRIPTION. Note that there may exist other versions of the PROGRAM.

    • subscription_date: date of creation of the SUBSCRIPTION.

    • last_update_date: date of last modification of the SUBSCRIPTION.

    • active: (true/false) Indicates whether the SUBSCRIPTION is active or not. It is only possible to create new ADMISSIONs in active SUBSCRIPTIONs.

    • locked: (true/false) Indicates whether the SUBSCRIPTION is locked or not. It is only possible to create new ADMISSIONs in active SUBSCRIPTIONs that are not locked.

    • manual_admissions_disabledindicates if this SUBSCRIPTION should permit the creation of ADMISSIONs manually (this property is defined in the PROGRAM TEMPLATE). This is only a recommendation for the client application, who is responsible of permitting a user to create a new ADMISSION from the interface. The purpose of this property is to indicate that the ADMISSIONS should only be created programatically. Introduced in API Version 2.7.22.
      Possible values are:

      • NULL (not set): If not set, the SUBSCRIPTION will inherit the value from the property of the same name configured in the PROGRAM of the SUBSCRIPTION (see program_get () )

      • true: manual creation ADMISSIONs in the client application should be disabled.

      • false: manual creation of ADMISSIONs in the client application should be enabled.

    • events_disabled: Indicates whether the manual creation of EVENTS is permitted or not. Introduced in API Version 2.7.22.
      Possible values are:

      • NULL (not set): If not set, the SUBSCRIPTION will inherit the value from the property of the same name configured in the PROGRAM of the SUBSCRIPTION (see program_get () )

      • true: creation of EVENTS using the API functions (e.g. event_insert ()  ) is permitted

      • false: creation of EVENTS using the API functions (e.g. event_insert () ) is not permitted. Nevertheless it is still possible to create EVENTs using FORMULAS

    • predefined_events: Indicates whether the creation of predefined EVENT types ("CARE", "SOCIAL", etc.) should be offered as a possibility when invoking action list functions (e.g. action_list_case () ). Note that if events_disabled is false, no EVENT can be created at all. Introduced in API Version 2.7.22.
      Possible values are:

      • NULL (not set): If not set, the SUBSCRIPTION will inherit the value from the property of the same name configured in the PROGRAM of the SUBSCRIPTION (see program_get () )

      • true: action list functions requesting the list of available MESSAGES will include the predefined EVENT types

      • false:  action list functions requesting the list of available MESSAGES will not include the predefined EVENT types

    • case_enroll_mode: Indicates which type of CASES can be enrolled in this subscription. Introduced in API Version 2.7.23.

      • "ANY": The CASES enrolled in the SUBSCRIPTION are can be new CASES (that should be created created before inserting a new ADMISSION) or existing CASES. The client application should allow to search for existing CASES  unless the user forces to create a new CASE. This is the default value when the PROGRAM is not a clinical trial (clinical trials by default expect to insert anonymous CASES)

      • "NEW": The CASES enrolled in the SUBSCRIPTION are always expected to be new CASES that must be created created before inserting a new ADMISSION. This is the default value when the PROGRAM is a clinical trial (clinical trials by default expect to insert anonymous CASES)

    • only_existing_patients: (true/false) Indicates whether only patients that already exist should be allowed to be enrolled in this SUBSCRIPTION. Introduced in API Version 2.7.24. When this value is true, the API function case_insert () will not allow to insert new patients in this SUBSCRIPTION

    • inherit_owner_users: (true/false) Indicates whether the PROFESSIONAL members of the SUBSCRIPTION are inherited from the TEAM owner of the SUBSCRIPTION or are assigned manually. If true, then the members of the SUBSCRIPTION are considered to be the members of the TEAM owner with their corresponding ROLES. Introduced in API Version 2.7.27

    • inherit_owner_teams: (true/false) Indicates whether the TEAM members of the SUBSCRIPTION are inherited from the TEAM owner of the SUBSCRIPTION or are assigned manually. If true, then the members of the SUBSCRIPTION are considered to be the members of the TEAM owner with their corresponding ROLES. Introduced in API Version 2.7.27

    • duration: Specifies the maximum duration of the ADMISSIONs of this SUBSCRIPTION. This node is only present if a specific value has been configured overriding the PROGRAM configuration. If not present, then the maximum duration of the ADMISSIONS is defined at PROGRAM level. If a duration is specified, the ADMISSIONs still active that were enrolled before that duration value will be discharged automatically. Introduced in API version 2.7.22.

      • value: Number of units of duration. If 0 or empty, an infinite duration is assumed

      • unit: Units used to define the duration (DAYS, WEEKS, MONTHS, YEARS)

      • description: human readable description of the units

    • team: information about the TEAM OWNER of the SUBSCRIPTION

      • ref: reference of the TEAM

      • code: TEAM CODE. Introduced in API Version 2.7.19

      • name: Name of the TEAM

      • type: Type of TEAM. See TEAM.CATEGORY CODES

    • program: Information about the PROGRAM of the SUBSCRIPTION.

      • ref: reference of the PROGRAM

      • code: PROGRAM CODE. Introduced in API Version 2.7.19

      • version: last version of the PROGRAM (note that can be different than the version used by the SUBSCRIPTION). Introduced in API Version 2.7.12

      • name: Name of the PROGRAM translated to the active language. Introduced in API Version 2.7.12

      • image_info: information of the image of the PROGRAM. See LIBRARY RESOURCE INFO (JSON) for more information. Introduced in API Version 2.7.12

      • settings:

        • trial: (true/false) indicates whether the PROGRAM is a "trial" or not. Introduced in API Version 2.7.12

        • manual_admissions_disabledindicates if the PROGRAM is configured to permit the creation of ADMISSIONs manually. This is only a recommendation for the client application, who is responsible of permitting a user to create a new ADMISSION from the interface. The purpose of this property is to indicate that the ADMISSIONS should only be created programatically. Introduced in API Version 2.7.16.
          NOTE: The value assigned to this property may be overridden by the SUBSCRIPTION configuration

          • true: Manual creation of ADMISSIONs in the client application should be disabled.

          • false: Manual creation of ADMISSIONs in the client application should be enabled.

        • events_disabled: Indicates whether the manual creation of EVENTS is permitted or not. Introduced in API Version 2.7.22. 
          NOTE: The value assigned to this property may be overridden by the SUBSCRIPTION configuration
          Possible values: 

          • true: creation of EVENTS using the API functions (e.g. event_insert ()  ) is permitted

          • false: creation of EVENTS using the API functions (e.g. event_insert () ) is not permitted. Nevertheless it is still possible to create EVENTs using FORMULAS

        • predefined_events: Indicates whether the creation of predefined EVENT types ("CARE", "SOCIAL", etc.) should be offered as a possibility when invoking action list functions (e.g. action_list_case () ). Note that if events_disabled is false, no EVENT can be created at all. Introduced in API Version 2.7.22.
          NOTE: The value assigned to this property may be overridden by the SUBSCRIPTION configuration
          Possible values are:

          • true: action list functions requesting the list of available MESSAGES will include the predefined EVENT types

          • false:  action list functions requesting the list of available MESSAGES will not include the predefined EVENT types

        • duration: Maximum duration of the ADMISSIONS in this PROGRAM. If no value (or 0) is assigned, the duration is assumed to be infinite. If a duration is specified, the ADMISSIONs still active that were enrolled before that duration value will be discharged automatically. Introduced in API version 2.7.22.
          NOTE: The value assigned to this property may be overridden by the SUBSCRIPTION configuration

          • value: Number of units of duration. If 0 or empty, an infinite duration is assumed

          • unit: Units used to define the duration (DAYS, WEEKS, MONTHS, YEARS)

          • description: human readable description of the units

    • case_manager: (true/false) indicates if the active USER is "CASE MANAGER" of the SUBSCRIPTION. Introduced in API Version 2.7.19. Removed in API Version 2.7.31

    • admissions: contains information about the number of ADMISSIONS created in this SUBSCRIPTION

      • all: total number of ADMISSIONs.

      • enrolled: Number of ADMISSIONS with status "ENROLLED". Introduced in API Version 2.7.19

      • active: total number of ADMISSIONs with status ENROLL, ACTIVE or PAUSE.

      • outdated: (array) List of active ADMISSIONS of this SUBSCRIPTION that are assigned to an older PROGRAM version. This happens after updating the SUBSCRIPTION to a newer PROGRAM version (see subscription_update() ), because updating the SUBSCRIPTION doesn´t update the existing ADMISSIONS . Introduced in API Version 2.7.31.
        ADMISSIONS that have been discharged or rejected are never considered as “outdated” because the have been finished and it makes no sense to update them to a new PROGRAM version.

        • outdated_version:

          • program_version: PROGRAM version number of the ADMISSIONS

          • active: number of active ADMISSIONS (with status ENROLL, ACTIVE or PAUSE) with this PROGRAM version

    • status: (UPTODATE / OUTDATED) indicates if the version of the PROGRAM of this SUBSCRIPTION is the last version.

    • editable: (true/false) Indicates whether the active user has "LIBRARY_MANAGER" ROLE in the SUBSCRIPTION (which allow to perform actions like deactivate or lock a SUBSCRIPTION). Introduced in API Version 2.7.19. Removed in API Version 2.7.31, moved to node permissions

    • permissions: permissions of the ACTIVE USER in the SUBSCRIPTION. Introduced in API Version 2.7.12

      • edit: (true/false) Indicates whether the active user can edit the properties of an SUBSCRIPTION. The active user must have "LIBRARY_MANAGER" ROLE in the SUBSCRIPTION. Introduced in API Version 2.7.31

      • delete: (true/false) Indicates whether the active user can delete SUBSCRIPTION. The active user must have "LIBRARY_MANAGER" ROLE in the SUBSCRIPTION and the number of ADMISSIONS in this SUBSCRIPTION must be 0 (it is not possible to delete a SUBSCRIPTION that contains ADMISSIONS). Introduced in API Version 2.7.31

      • create_admission: ACTIVE USER can create new ADMISSIONs in this SUBSCRIPTION. This is only possible if ACTIVE USER has the ROLE "Case Manager" in the SUBSCRIPTION and it is not locked nor inactive

      • create_appointment: (true/false) Indicates if the active user can create appointments related with this SUBSCRIPTION. Introduced in API Version 2.7.32

    • case_invitation: a SHARED KEY OBJECT that allows a CASE to create a new ADMISSION in the SUBSCRIPTION without the intervention of a PROFESSIONAL (auto registration). This shared key is only returned if the active USER has role "CASE MANAGER" in the SUBSCRIPTION, and can be passed to account_create () or session_init () . Introduced in API Version 2.7.19
      This value is not included in the response when the SUBSCRIPTION is related with the draft version of a PROGRAM (the option to create SUBSCRIPTIONS to draft versions of PROGRAMS was introduced in API Version 2.7.32)

    • parameters: List of parameters of the SUBSCRIPTION. This parameters only exist if there exist TASK TEMPLATES defined in the STAGE "ADMISSION SETUP". Each ITEM of those TASKs is considered a SUBSCRIPTION parameter. Introduced in API Version 2.7.21

      • parameter

        • name: name of the parameter

        • description: description of the parameter.

        • type: type of data stored in the parameter. Possible values are:

          • BOOLEAN

          • NUMERIC

          • TEXT

          • VERTICAL_RADIO

        • value: value assigned to the parameter

    • reports: List of links to download REPORTS defined at PROGRAM level in the PROGRAM TEMPLATE. Introduced in API version 2.8.1

      • ref: Reference of the Report.

      • name: Name (title) of the REPORT

      • url: url to generate the REPORT in PDF format. Only usable by the same session that generated this URL.

      • url_html: url to generate the REPORT in HTML format. Only usable by the same session that generated this URL.

  • ErrorMsg: any fault in the call, either in the validation of input parameters, errors in the connection to the database or any other error, this parameter returns the error message produced.

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

Request example

subscription_get (“LC53060c6f729de8.42629546”, 51, 23)

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

WRONG_PARAMS

It is necessary to provide the parameters (program and team) or subscription

SUBSCRIPTION.NOT_FOUND

The SUBSCRIPTION was not found



Related content