OXID REST API
https://github.com/OXIDprojects/oxid-rest-api
Search…
Overview
Getting started
Working with the API
Authentication
Routes
Articles
Filters
Changelog
Contribute
License
Powered By
GitBook
Articles
Add
/rest/v1/
object
/articles
into your request to get oxid objects and using oxid functions like
save()
,
update()
and
delete()
. For more infos see
Installation
.
get
https://YOUT_SHOP_URL
/rest/v1/articles
get all articles
For more information about filters see
Filters
.
get
https://YOUR_SHOP_URL
/rest/v1/articles/{id}
get one article
post
https://YOUR_SHOP_URL
/rest/v1/articles
create new article
put
https://YOUR_SHOP_URL
/rest/v1/articles/{id}
update article
delete
https://YOUR_SHOP_URL
/rest/v1/articles/{id}
delete article
Filters
Previous
Routes
Next
Filters
Last modified
3yr ago
Copy link
Contents
get
get all articles
get
get one article
post
create new article
put
update article
delete
delete article