I would like to ask if what is the correct attribute/tag for dynamic field in Otrs5 using webservice of soap?
Tried to use
Code: Select all
 $result = $this->__soapCall("Dispatch", array($this->_wsconf['username'], $this->_wsconf['password'],
   "DynamicFieldValueObject",  "ValueSet",
   "FieldID",      $fieldId,
   "ObjectID",   $ticketId,
   "Value",      array(
      "0" => array(
         "ValueText" => $value
      )
   ) ,
   "UserID",      1
  ));Thanks alot!