Stores a specialized to a single kind of templates. E.g. Blog & CMS.
Return a list of store resources currently available.
GET /rest/stores
[
{
"id": "blog-cms",
"title": "Blog / CMS",
"_links": [
{
"href": "https://d9tready.com/rest/stores/blog-cms",
"rel": "self"
},
{
"href": "https://d9tready.com/rest/stores/blog-cms/templates",
"rel": "templates"
}
]
},
...
]
| Status Code | Description |
|---|---|
| 200 OK | No error, operation successful |
| 403 FORBIDDEN | Authentication failure |
Retrieve a single store resource.
GET /rest/stores/blog-cms
{
"id": "blog-cms",
"title": "Blog / CMS",
"_links": [
{
"href": "https://d9tready.com/rest/stores/blog-cms",
"rel": "self"
},
{
"href": "https://d9tready.com/rest/stores/blog-cms/templates",
"rel": "templates"
}
]
}
| Status Code | Description |
|---|---|
| 200 OK | No error, operation successful |
| 403 FORBIDDEN | Authentication failure |
| 404 NOT FOUND | Resource not found |