curl --request PATCH \
--url https://api.example.com/auctions/{id} \
--header 'Content-Type: application/json' \
--data '
{
"amount": 2,
"currency": "<string>",
"currency_conversion": {
"from_currency": "<string>",
"from_amount": 1
},
"name": "<string>"
}
'