Skip to main content

TeamModifiableFields

These are fields in the Team object that can be modified or given as input when creating a new Team.

See the List Teams endpoint for general information about the purpose and role of Teams in the Journyx system.

group_names object[]

A list of Groups (names and IDs) that the object belongs to.

This is a read-only list. To change the Groups that an object belongs to, use the groups field.

See GroupFields for additional information about Groups and this field.

  • Array [
  • iduuid

    The Group ID.

    pnamestring

    The Group name.

    uristring

    The URI of the Group.

    WARNING: this field is planned in a future release but is not yet available.

  • ]
  • groupsuuid[]

    A list of Group IDs that the object belongs to. See GroupFields for additional information about Groups and this field.

    Example: ["5088C427E8B64EBEBE1C5B5961DB1902","3553F715A6F54DAB95D0D25B08468195"]
    pnamestringrequired

    The name of the Team.

    Example: Sales Team
    auto_addboolean

    Indicates whether the Team is automatically added to new Groups as they are created.

    Example: false
    hiddenboolean

    Indicates whether the Team is hidden.

    Example: false
    team_members object[]

    A list of Team Members that belongs to current Team.

  • Array [
  • fullnamestring

    The full name of the user.

    Example: Alex Denton
    id_useruuid

    The unique internal ID of this user.

    Example: 66C197E19B1645A8A3D4A966F39907CF
    skillsstring[]

    A list of skills for the user.

    Important: the list of available skills is determined by the "Team Skills" User Custom Field definition, a multi-selection typed Custom Field. In order to modify the list of available skills, this User Custom Field definition must be updated.

  • ]
  • TeamModifiableFields
    {
    "pname": "Sales Team",
    "auto_add": false,
    "hidden": false,
    "team_members": [
    {
    "fullname": "Alex Denton",
    "id_user": "66C197E19B1645A8A3D4A966F39907CF",
    "skills": [
    "C++ Programming"
    ]
    }
    ],
    "group_names": [
    {
    "id": "5088C427E8B64EBEBE1C5B5961DB1902",
    "pname": "Sales"
    },
    {
    "id": "3553F715A6F54DAB95D0D25B08468195",
    "pname": "Accounting"
    }
    ],
    "groups": [
    "5088C427E8B64EBEBE1C5B5961DB1902",
    "3553F715A6F54DAB95D0D25B08468195"
    ]
    }