Fix csv error responses
Created by: gspasov
Changing CSV API response json structure from:
{
"status": 404,
"data": {
"message": "Error message"
}
}
to:
{
"message": "Error message"
}
Because status can be checked from response code. It is redundant to have it in the json as well.