|  Developer
Updated on May 17, 2022

update_item_dictionary_value()

  • Update value with specific key of specific dictionary item
Edit

  • params: item_id (string), item_dictionary_id (string), value (it depends of item dictionary subtype)
  • return: none.
Edit
				
					require "core"

item_id = "1234abcd"
item_dictionary_id = "4"
value = {
    userCode = "3141",
    userName = "Ivan"
}

core.update_item_dictionary_value( item_id, item_dictionary_id, value )