Community Tip - New to the community? Learn how to post a question and get help from PTC and industry experts! X
Hi,
I'm using ThingWorx 6.5.0-b66. I guess with this version, we no more required to mention POST in query parameter.
But mentioning the POST method in header doesn't work;
> curl -X POST -u username:password "http://localhost/Thingworx/Things/TestDataTable/Services/TestService?Accept=application/json"
However, it only works when I mention in query parameter as shown below:
> curl -X GET -u username:password "http://localhost/Thingworx/Things/TestDataTable/Services/TestService?method=post&Accept=application/json"
Regards
Arunkumar D
Solved! Go to Solution.
I got it working.
I'm posting this just in case if it helps someone.
> curl -X POST -H "appKey:my-app-key" -H "Accept:application/json" -H "Content-Type:application/json" "http://localhost/Thingworx/Things/TestDataTable/Services/TestService"
I got it working.
I'm posting this just in case if it helps someone.
> curl -X POST -H "appKey:my-app-key" -H "Accept:application/json" -H "Content-Type:application/json" "http://localhost/Thingworx/Things/TestDataTable/Services/TestService"