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