curl --location -g --request PUT '{{ecommercev2_url}}/invoices/67f3772a871e6e0420cd699d' \
--header 'x-client: {{client}}' \
--header 'accept-language: {{acceptLanguage}}' \
--header 'Content-Type: application/json' \
--header 'x-access-token;' \
--data-raw '{
"invoiceNumber": "INV-2024-002",
"date": "2024-03-20T10:30:00Z",
"user": "user123",
"company": "Acme Corporation",
"region": "Middle East",
"details": "Annual subscription renewal for premium services",
"status": "pending",
"paymentStatus": "pending",
"amount": 999.99,
"discount": 50.00,
"paidAmount": 0.00,
"dueAmount": 949.99,
"paymentMethod": "credit_card",
"transactionId": "txn_123456789",
"referenceNumber": "REF-2024-001",
"accountManager": "john.doe@company.com",
"salesRep": "jane.smith@company.com",
"salesSource": "website",
"currency": "USD"
}'