I have a question. I have the folowing condition :
You should return an HTTP 500 status code and more details about the error in the message body. Set the HTTP content type response to “application/json”.The error detail must be in JSON format as described below:
{
"ErrorCode" : 402,
"ErrorMessage" : "Item"
}
I tried like this :
if(!Gain::verifyIfUserExistByIdm($aOutput['UserId'])){
header("HTTP/1.0 500 Internal Server Error");
return json_encode(array('ErrorCode'=>407,'ErrorMessage'=>'Error'));
die();
}
But not work, can you help me please? Thx in advance