curl --location -g --request PUT '{{ecommercev2_url}}/payments/67f2b086a1176df4cdd6e604' \
--header 'x-client: {{client}}' \
--header 'accept-language: {{acceptLanguage}}' \
--header 'Content-Type: application/json' \
--header 'x-access-token;' \
--data-raw '{
"paymentMethod": "bank_transfer",
"bankName": "Chase Bank",
"iban": "US12345678901234567890",
"holderName": "John Doe",
"status": "pending",
"invoiceId": "INV-12345",
"referenceNumber": "REF-67890",
"amount": 200.00,
"account": "Main Account",
"note": "Note text goes here",
"attachments": [
{
"_id": "507f1f77bcf86cd799439012",
"path": "https://example.com/images/mens-accessories-2.jpg"
}
]
}'