I am able to successfully create an order type using just basic data without issue
{'label': 'my custom label', 'hoursAvailable': 'BUSINESS', 'isDefault': False, 'isHidden': True, 'taxable': True, 'filterCategories': False}
but when I try to go a step further and use set some of the newer attributes I get a 400 response with {'message': '"name" must be specified'}
{'label': 'Special Order Type', 'hoursAvailable': 'CUSTOM', 'taxable': True, 'isDefault': False, 'isHidden': True, 'labelKey': 'com.clover.order.type.table', 'systemOrderTypeId': 'TABLE-TYPE', 'customerIdMethod': 'NAME', 'filterCategories': False}
The data I am passing appears to fit the model in the API explorer, and there is no mention of a 'name' for Order Type
Any help would be awesome!