EDP Gateway Status Code

Hi Team,

I would like to get list of http status code such as 400, 401, and etc... details during access to EDP Gateway. Is there any document or link to refer?



Best Answer

  • Gurpreet
    Answer ✓

    Hi @Thangavel.Loganathan, Its a usual practice for a RESTful service to return standard HTTP error codes to convey the status. You can read the details about each status code here: https://developer.mozilla.org/en-US/docs/Web/HTTP/Status

    500 series of status code signify a server side issue - i.e. there is not much a user can do, besides trying again after a while.

    502 Bad Gateway - for example means that gateway server - the one which checks your authentication token for valid scope, did not get a valid response from the internal server which is supposed to service your request.

Answers