ContributionsMost RecentMost LikesSolutionsRe: PATCH issues in V5.5 - worked well in V5.4 The way I could get this to work is to provide fully loaded syntax. Wondering if this is because of changes in V5.5 as compared to V5.4. { "data": { "type": "seismic", "id": "5001230507", "attributes": { "remark": "Now revised" } } } PATCH issues in V5.5 - worked well in V5.4 I recently installed V5.5. PATCH commands that worked earlier give me issues. I am trying to update value of field "remark". This is a valid field as you can see from GET result. Method = vnd.api+json Any ideas? Thanks in advance. Re: PATCH issues in V5.5 - worked well in V5.4 Sorry for typo in text earlier. Should read "I recently installed V5.5". Support of Content-Type: application/vnd.api+json ? Please see enclosed. Not sure why I get this error. I tried upgrading from 5.3 to 5.4. Please check and advise. Thank you As there has not been any response yet to this forum entry, I want to attach a case of successful update from another colleague for the same service, and by using same version of SOAPui. So, the question is - why it works in one case and why it fails in another case? OK, there is some update from our Developers - The Media/Content type got changed for all the services from "application/json" to "application/vnd.api+json". Can you please advise if the above is supported by SOAPui open source version? When I click on “HTML” Tab in SoapUI Tool, Got” unsupported content-type [application/vnd.api+json]” message. When I use unix "curl" command, I can get POST and PATCH to work curl -i -X POST -H 'Content-Type: application/vnd.api+json' -d '{"name": "DC1NEW"}' http://cal-app2-dev:8100/kws-rest/v4/surveys curl -i -X PATCH -H 'Content-Type: application/vnd.api+json' -d '{"name": "DC1NEW-revised"}' http://cal-app2-dev:8100/kws-rest/v4/surveys/5000979921 Re: I could use SOAPUI (not PRO) successfully for REST, GET method. But POST poses issues Thanks JHunt for prompt response. Indeed, things are working as expected when I use your suggested solution. Re: I could use SOAPUI (not PRO) successfully for REST, GET method. But POST poses issues Hi [gecko2 ~]$ curl -i -X POST -H 'Content-Type: application/json' -d '{"name": "DC1"}' http://cal-app2-dev:8100/kws-rest/v4/surveys HTTP/1.1 200 OK ... It works fine and creates record in database as expected. But when I try something similar in SOAPui, then I get error as shown in the attachment. Can you please check and advise? Thank you I could use SOAPUI (not PRO) successfully for REST, GET method. But POST poses issues Not sure if SOAPui documentation gives clear help on POST, PATCH methods. For parameters, what are the style, level values? I can get "GET method" to work properly in SOAPui. Surfing around, I have noticed that some other users also faced some issues. Can you point me to relevant documentation? Thank you. Solved