For information about how REST API works, see rest main page.
You can see and manage articles catalog here.
REST "articles" object allows you to read articles catalog, delete records in it, and add new records. When adding new article with "internal_id" that already present in the catalog, fields of old record will be overriden.
Special column "data_last_modified" stores Unix Timestamp of last record modification.
The URL is:
app.personyze.com/rest/articles
curl --data '{"internal_id": "123", "title": "About all", "description": "New article"}' 'https://api:FD09908F25BECB09D78EBEA1DADFB618651F612D@app.personyze.com/rest/articles'
Now if you insert another record with internal_id "123", data will be merged.
curl --data '{"internal_id": "123", "description": "Was new article"}' 'https://api:FD09908F25BECB09D78EBEA1DADFB618651F612D@app.personyze.com/rest/articles'
Select "123".
curl 'https://api:FD09908F25BECB09D78EBEA1DADFB618651F612D@app.personyze.com/rest/articles/where/internal_id=123'
Delete "123".
curl -X DELETE 'https://api:FD09908F25BECB09D78EBEA1DADFB618651F612D@app.personyze.com/rest/articles/where/internal_id=123'