curl --location -g --request PUT 'http://ecompulse.test/api/v1/admin/currencies/3' \
--header 'Accept: application/json' \
--header 'X-API-Key: exzbLclGAzBCyL0k1Yv29Evu6mwoYOATBF0lWPyT' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "Pound",
"code": "GBP",
"symbol": "£",
"value": 0.85,
"default_status": 0
}'
{
"status": "success",
"message": "Currency updated successfully",
"data": {
"id": 3,
"name": "Pound",
"code": "GBP",
"symbol": "£",
"value": "0.85",
"default_status": 0,
"status": 1
}
}