Querying for CustomFieldTypes #118
-
Hi people! In my project I want fetch all the current CustomFieldTypes. I thought it would be a good idea to use the following: However, this returns an error saying that it didn't anticipate 'enumID' and that it's supposed to be 'ID'. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
You're close. So it would want a project and a workitem type, like this:
|
Beta Was this translation helpful? Give feedback.
-
After some research and thinking I found |
Beta Was this translation helpful? Give feedback.
After some research and thinking I found
.getAllEnumOptionsForId()
which provided the expected output for me. This would probably explain why i got the error message since I used it for the wrong purpose. Thanks for the reply.