/
user_get_team_list ()

user_get_team_list ()

Function prototype

user_get_team_list ( session, [user] )

API Version

All

Supported interfaces

SOAP, REST (Since API Version 2.7.31)

Description

Return a list of all the TEAMS where the user is member

 

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

Input parameters:

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

  • user: reference of the user. If not set user, then the active session’s USER will be used

Output parameters:

  • result:

    • team_list/team: list of TEAMs with the information about each TEAM

      • ref: reference of the parent TEAM

      • code: TEAM CODE. Introduced in API Version 2.7.19

      • name: Name of the TEAM

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

      • active: (true/false) Indicates if the current TEAM is active. Introduced in API Version 2.7.19

      • pictures: images of the TEAM. Introduced in API Version 2.7.19

      • roles: List of ROLES of the USER in the parent TEAM

        • role: Information about each ROLE

          • ref: Reference of the ROLE (e.g. 24 = CASE MANAGER)

          • name: Description of the ROLE in the active SESSION language

          • profiles/profile: list of profiles. Some ROLES have a sub-classification in "profiles" (sub-roles). For example, roles "Team Manager" and "Program Manager" are considered profiles of the parent ROLE “Admin”. See ROLE OBJECT.

            • ref: Reference of the ROLE (e.g. 24 = CASE MANAGER)

            • name: Description of the ROLE in the active SESSION language

  • 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

function_name ( “LCAAAAAAAAAAAA”, "xxxx")

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

USER.NOT_FOUND

The requested USER was not found



Related content