You are not logged in.
Pages: 1
I'm using powershell module but I'm unable to set a task duration for a created task.
so far I have
$NewTask = @{
tickets_id = $ticket_number
content = "teste"
users_id_tech = $TechID
state = "2"
is_private = "1"
groups_id_tech = "0"
}
Add-GlpiItem -Creds $GlpiCreds -ItemType tickettask -Details $NewTask
whats the variable name for send a duration ?
Offline
this should work
actiontime (in seconds)
Trouver la panne avant de réparer...
GLPI10.0.16 (ubuntu 22.04 PHP8.1 Mariadb10.6 ) plugins : comportements 2.7.3 reports 1.16.0 formcreator 2.13.9, datainjection 2.13.5 fields 1.21.9
Offline
this should work
actiontime (in seconds)
That's it. thanks a lot
Offline
you can set all these values for tickettask
{
"tickets_id":,
"taskcategories_id":0,
"date":"2020-09-07 10:20:04",
"users_id":,
"users_id_editor":0,
"content":"xxxxx..",
"is_private":,
"actiontime":,
"begin":null,
"end":null,
"state":,
"users_id_tech":,
"groups_id_tech":,
"tasktemplates_id":,
"timeline_position":
Trouver la panne avant de réparer...
GLPI10.0.16 (ubuntu 22.04 PHP8.1 Mariadb10.6 ) plugins : comportements 2.7.3 reports 1.16.0 formcreator 2.13.9, datainjection 2.13.5 fields 1.21.9
Offline
Pages: 1