Can I avoid the order confirmation email?

I am having the same issue. Setting “send_receipt” and “send_fulfillment_receipt” to false or not including either still sends a receipt to the customer. I am trying to import orders from my client’s existing store into shopify for historical and loyalty purposes.

How can I avoid sending the customer an email when using the API to import historical orders?

Here is how I have it included in the order json i am sending:

{
“order”: {
“buyer_accepts_marketing”: false,
“confirmation_number”: “”,
“contact_email”: “”,
“created_at”: “2023-10-15T19:41:08-04:00”,
“currency”: “USD”,
“send_receipt”:false,
“send_fulfillment_receipt”:false,

}
}