Unable to associate customer on create. It seems that I can only associate a customer on update.
POST /v3/merchants/MERCHANT_ID/orders
{
"note":"test note",
"customers":[
{
"id":"CUSTOMER_ID"
}
],
"total":10000,
"manualTransaction":true
}
GET /v3/merchants/PBHPQQ7J70VNM/orders/CHQYJM6154KGP?expand=customers
Will return the order without the "customers" field.
Is it only possible to add customers after creation? What's the reason for this?
Are the fields that are allowed on creation listed anywhere in the documentation?