Update records [PUT]
Request:
PUT
https://<your-app-id>.app.jexia.com/rest/<your-dataset>
Send your Jexia token along in the Authorization header:
"Authorization" : "<your-jexia-token>"
Body
[ { "id": "PUT_HERE_POST_ID", "title": "Updated with JSON", "post": "updated content here ..." } ]
Advanced users:
Curl
curl -i -H "Accept: application/json" -H "Authorization:<jexia-auth-token>" -X PUT -d '{"id":"<id>","title":"new title through curl"}' https://<project-id>.app.jexia.com/rest/<dataset>