curl --request PATCH \
--url https://api.example.com/api/currency/{alphabetic_code} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"activate_currency": true,
"currency": "<string>",
"alphabetic_code": "<string>",
"numeric_code": "<string>"
}
'