Templates are our preconfigured virtual machines. Based on these templates you can create your own applications.
Return a list of template resources currently available.
GET /rest/stores/blog-cms/templates
[
{
"id": "anchor-cms",
"title": "Anchor CMS",
"_links":
[
{
"href": "https://d9tready.com/rest/stores/blog-cms/templates/anchor-cms",
"rel": "self"
},
{
"href": "https://d9tready.com/rest/stores/blog-cms/templates/anchor-cms/versions",
"rel": "versions"
}
]
},
...
]
| Status Code | Description |
|---|---|
| 200 OK | No error, operation successful |
| 403 FORBIDDEN | Authentication failure |
Retrieve a single template resource.
GET /rest/stores/blog-cms/templates/anchor-cms
[
{
"id": "acnhor-cms",
"title": "Anchor CMS",
"_links":
[
{
"href": "https://d9tready.com/rest/stores/blog-cms/templates/anchor-cms",
"rel": "self"
},
{
"href": "https://d9tready.com/rest/stores/blog-cms/templates/anchor-cms/versions",
"rel": "versions"
}
]
},
...
]
| Status Code | Description |
|---|---|
| 200 OK | No error, operation successful |
| 403 FORBIDDEN | Authentication failure |
| 404 NOT FOUND | Resource not found |