Test via POSTMAN REST services for POST

I am trying to test via POSTMAN the REST call from D2SV-Client2Server-Logging (D2-Smartview/clientlog using the POST method) but I get the error below

{    "status": 415,    "code": "E_UNSUPPORTED_MEDIA_TYPE",    "message": "The specified media type application/json;charset=UTF-8 is not supported. Supported media types: [application/vnd.documentum.d2.v1+json, application/vnd.emc.documentum+json, application/json, application/home+json, application/hal+json, application/vnd.documentum.d2.v1+xml, application/vnd.emc.documentum+xml, application/atom+xml, application/xml, application/home+xml].",    "details": "",    "id": "b68bba83-15a4-406e-8976-e5a238e24c9f"}

The same error (when testing the POST verb) I get when testing the D2 REST created from the Assistant. I have tried adding application/json;charset=UTF-8 in the "consumes" and "produces" (in the controller) but also in the "Content-Type" and "accept" in Postman. FYI, I am using the /clientlog as a sample, I actually want my own call (created via the Assistant) to work correctly.

Answers