Resource ia:user

Overview

The ia:user resource represents a MediaCentral Newsroom Management user.

Properties

The ia:user resource has the following properties:

base

Base identifier of the user. The property is a JSON object with the following sub properties:

  • systemType

  • systemID

  • type

  • id

common

Common attributes:

  • name

  • creator

  • created

  • modifier

  • modified

  • …​

settings

User settings:

  • superuser (boolean) - Is the user is superuser

  • local_only (boolean) - If true then user not allowed to connect to community systems

  • external (boolean) - If true then user is LDAP user

  • simplified (boolean) - Enables/disables simplified UI for user

  • blacklisted (boolean) - If true than user cannot login

  • readrate (int) - The number of words in minute

  • home_directory - Path to user’s directory in the system

  • mail_directory - Path to the directory where user’s mails are stored

  • destination_directory - Path to default user directory to store notes and so on

permissions

User permissions:

  • can_order (boolean) - Enables/disables ability to order queue stories

  • can_enter_remove (boolean) - Enables/disables ability to create/remove directories and queues

  • can_kill_all (boolean) - Enables/disables ability to delete all stories in the queue

  • can_connect (boolean) - Enables/disables ability to connect to MediaCentral Newsroom Management resources (server console)

  • can_configure_shortcut_toolbar (boolean) - Enables/disables ability to manage toolbar

  • can_color (boolean) - Enables/disables ability to configure custom status colors

  • can_read_highlight (boolean) - Enables/disables ability to highligh unread stories on user’s screen

  • can_manage_projects (boolean) - Enables/disables ability to manage projects

The ia:user resource has no link relations.

Description

The ia:user resource represents a MediaCentral Newsroom Management user.

Examples

Example: ia:user
 
{
    "base": {
        "id": "normaluser",
        "type": "user",
        "systemID": "INEWS6",
        "systemType": "inews"
    },
    "common": {
        "name": "Normal User",
        "created": "2018-07-11T09:19:24.000Z"
    },
    "settings": {
        "superuser": false,
        "local_only": false,
        "external": false,
        "simplified": false,
        "blacklisted": false,
        "readrate": 0,
        "home_directory": "PEOPLE.N.NORMALUSER",
        "mail_directory": "PEOPLE.N.NORMALUSER.MAIL",
        "destination_directory": "PEOPLE.N.NORMALUSER.NOTES"
    },
    "permissions": {
        "can_order": false,
        "can_enter_remove": false,
        "can_kill_all": false,
        "can_connect": false,
        "can_video_browse": true,
        "can_configure_shortcut_toolbar": false,
        "can_color": false,
        "can_read_highlight": false,
        "can_manage_projects": false
    },
    "_links": {
        "self": {
            "href": "https://host/.."
        }
    }
}