Home Home
  login

Gemini Community Support Site

This Gemini community support site can be used to find solutions to product issues. You can log in using Open Id, Google Profile and even Facebook. Feel free to ask a question or browse FAQs and documentation. Product tour videos are also available along with how-to videos demonstrating key Gemini capabilities.




Process of saving item

custom-fields
items
api

Is there a specific order of saving an item in the api? In particular, how do you handle the saving of custom fields? It appears that you must first use UpdateIssue, then save each individual custom field with SaveCustomFieldData for every modfied and new custom field. In a simplified form, I am doing this:

myStoredIssueEN = GetIssue [any one of the functions to get an issue)

myStoredIssueEN = UpdateIssue(myStoredIssueEN) <= This will wipe out any modified custom fields in myStoredIssueEN, so the custom fields must be saved elsewhere

for each CustomFieldDataEN in custom fields myStoredIssueEN = SaveCustomFieldData(custom field structure) <= This will wipe out any modifications to the IssueEN and any custom fields other thn the one being saved; hence the UpdateIssue first

I'm sure I'm not doing this in the most efficient way. If you're updating an item with custom field data (some being added, some new), what is the best way?

Thanks.

User75023
· 1
User75023
Replies (1)
helpful
0
not helpful

That's the best way when updating an issue. If you are creating one you can pass the custom fields but make sure you set the state of each to new.


Mark Wing
· 9108
Mark Wing