salesforce - Update JIRA field with a value from a csv file using Ruby and REST -


need in order update historic data after recent jira upgrade. did try this?

any appreciated,

thank you,

simply run on csv lines:

csv.foreach('jiraissues.csv',             :quote_char=>'"', #           :force_quotes => true,             :col_sep =>";",             :headers => true,             :header_converters => :symbol ) |row|      processfield(row[:com_jiraid] , row[:value]) end 

the processfield method include asked in updating jira custom field using jira-ruby gem (rest api) not work


Comments