Is it possible to add lineItems when creating/updating an order via REST API. My line items are not going through.
Sample request python dict:
{
'manualTransaction': True,
'note': 'asdf',
'state': 'open',
'total': '1234',
'lineItems': [{
'name': receipt_label,
'price': total_cents, # clover takes cents
'isRevenue': True,
}]
}