First improvement: In your domainmodel rename Items to Item. Entity names are better singular. Your ‘Call REST (GET)’ return one item only, not a list of items.
Best way to find out what the call returns is to first ‘Store result’ in a variable (string). Then restart and debug to see the content of that variable.
Do the import-mapping separately after that call, passing your variable into the import-mapping. This gives you most control during development. You will probably figure out the last steps.
Hi Gabe, you should return the list of Items from the rest call (if it's really a list, right click and choose set as return value) or if you want to go with your current actions because it's a single object, add an extra ‘change list’ action at the end and choose ‘add’ and set the $Items to be added.