/
subscription_suggested_program_list ()

subscription_suggested_program_list ()

Function prototype

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

API Version

2.7.28

Supported interfaces

SOAP, REST

Description

Returns the list of suggested PROGRAMS assigned to a SUBSCRIPTION

A suggested PROGRAM is one that is recommended to the CASES that have an ADMISSION in a SUBSCRIPTION. A CASE can perform a self-enroll in any of the suggested PROGRAMS (the intervention of a PROFESSIONAL is not required)

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.

    • editable: (true/false) Indicates whether the active USER has permission to modify the list of suggested PROGRAMS

    • suggested_programs: List of PROGRAMS suggested to the patients that have an ADMISSION in this SUBSCRIPTION. Each element of the list is in fact another SUBSCRIPTION that a CASE can join. CASES are allowed to do a self-enroll (using the API function admission_create () ) in any of the suggested PROGRAMS, so it is not necessary a PROFESSIONAL to do the enroll

      • ref: reference of the suggested SUBSCRIPTION

      • program: basic information about the PROGRAM

        • ref: reference to the PROGRAM

        • code: PROGRAM CODE

        • name: Name of the program

        • image_info: Picture associated to the PROGRAM expressed as a LIBRARY RESOURCE INFO (JSON)

      • team: basic information about the TEAM owner of the suggested SUBSCRIPTION

        • ref: the team reference

        • code: TEAM CODE

        • type: INDIVIDUAL/UNIT/CENTER/OTHER/ GEOGRAPHIC_ZONE…

        • name: the name of the team

      • condition: a FORM FORMULAS that will be evaluated to decide whether the suggested PROGRAM is available for a CASE (when invoking the function case_get_optional_programs () )

  • 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_suggested_program_list (“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