Le seguenti 68 parole non sono state trovate nel dizionario di 1275 termini (includendo 1275 LocalSpellingWords) e sono evidenziate qui sotto:
allowed   array   be   been   before   Before   beginning   can   considered   created   createrole   createuser   creator   delete   description   ending   false   field   fixed   for   if   length   list   List   Manage   minutes   Mountpoint   mountpoint   name   Name   notallowed   number   password   permitted   playlists   Playlists   request   response   responsen   role   rolecreated   Roles   roles   scheduled   servererror   Slot   slot   slots   testing   textual   that   then   this   Time   time   Times   times   timeslots   Timetable   to   Transmission   transmission   true   user   username   Users   users   which  

Nascondi questo messaggio
Italiano English
Modifica History Actions

Radiomate/API

API

Users and Roles

{
        "request": "createrole",
        "username": <role creator's username>,
        "password": <role creator's password>,
        "role" : {
                "roleName": <name>,
                "canManageRoles": (true|false),  #true if the user can create/edit/delete roles
                "canManageUsers": (true|false),  #true if the user can create/edit/delete users
                "canManageAllPlaylists": (true|false),  #true if the user can create/edit/delete playlists
                "canManageTimetable": (true|false),  #true if the user can edit/delete the beginning and ending time of scheduled slots
                "fixedSlotTime": (true|false), #true if the fixedSlotTimesList field has to be considered
                "fixedSlotTimesList": <array of fixed slot times, in minutes>, #if fixedSlotTime is true, then this is the list of the allowed length for the timeslots for this user
                "changeTimeBeforeTransmission": <number of minutes before the beginning of the transmission in which the user is permitted to change the beginning time>,
                "canCreateTestMountpoint": (true|false), #true if the user is permitted to create a testing mountpoint
        }
}


{
        "response": ("rolecreated" | "notallowed" | "servererror"),
        "responsen": (0, 1, 2),
        "description": <textual description>,
        "role" : { #the role that has been created
                "roleName": <name>,
                "canManageRoles": (true|false),  #true if the user can create/edit/delete roles
                "canManageUsers": (true|false),  #true if the user can create/edit/delete users
                "canManageAllPlaylists": (true|false),  #true if the user can create/edit/delete playlists
                "canManageTimetable": (true|false),  #true if the user can edit/delete the beginning and ending time of scheduled slots
                "fixedSlotTime": (true|false), #true if the fixedSlotTimesList field has to be considered
                "fixedSlotTimesList": <array of fixed slot times, in minutes>, #if fixedSlotTime is true, then this is the list of the allowed length for the timeslots for this user
                "changeTimeBeforeTransmission": <number of minutes before the beginning of the transmission in which the user is permitted to change the beginning time>,
                "canCreateTestMountpoint": (true|false), #true if the user is permitted to create a testing mountpoint
        }
}

{
        "request":"createuser",
        "username": <creator's username>,
        "password": <creator's password>,
        "user" : {
                "name": <name>,
                "password": <password>,
                "role": <role>
        }
}