Hey everyone! I just found a neat trick to manipulate the configuration JSON file that is downloaded from the configuration UI to create a mapping for the system and custom fields that are not available for mapping from the UI.
Here’s how: open the configuration JSON file and manually add the field and value you need. For example, I added ‘Priority’ = ‘Critical’ for the test set level priority field, since it was mandatory and I had to populate it somehow. This was the syntax I used:
“additional-testset-fields”:
{ “custom-fields”: {},
“system-fields”: { “priority”: “Critical” }
Hope it helps someone like it helped me!