I am always getting JSON response for my HTTP request to access one ORDS-Oracle Rest Data Services API: http://localhost:8080/ords/hr/employees/
However my requirement is to get XML response. I tried to choose XML from drop down list available at POSTMAN, however content is not changing to XML.
I need a way to specify parameter as part of HTTP URL so that response is XML than JSON and I tried to change URL like below: Way1: http://localhost:8080/ords/hr/employees?format=xml Way2: http://abcdef.us.oracle.com:8001/claims-ws/api/generic/lineofbusinesses/421?Content-Type:application/xml Way3: http://abcdfef.us.oracle.com:8001/claims-ws/api/generic/lineofbusinesses/421?Accept:application/xml
However nothing is working and response is always JSON. Any suggestion?