I have been looking for help on google, but have not found anything to work yet. Since this is the API I am using, I thought I would ask here. I found the API Documentation, but has not helped me solve this problem.
Trying to create a Modifier Group with several Modifiers at the same time.
POST to https://api.clover.com/v3/merchants/[... ID]/modifier_groups?expand=modifiers
{"name":"test-group","modifiers":{"elements":[{"name":"Big","price":900},{"name":"Medium","price":800},{"name":"Small","price":700},{"name":"Mini","price":700},{"name":"Small - 2","price":700},{"name":"Mini - 2","price":700}]}}
The Modifier Group is created, but without any modifiers.
The response is:
{"id": "5YBM796AAY3C6", "name": "test-group", "showByDefault": true, "modifiers": {"elements": [ ]}}
What am I missing?
Thank you for any help.