List All Templates

get

/paas/api/v1.1/instancemgmt/{identityDomainId}/templates/cst/instances

View a list of available templates

Request

Path Parameters
Query Parameters
Back to Top

Response

Supported Media Types

200 Response

OK
Body ()
Root Schema : viewall-response
Type: object
The response body contains information about one or more templates.
Show Source
Nested Schema : items
Type: array
A list of templates.
Show Source
Nested Schema : viewtemplate-response
Type: object
The response body contains information about the template.
Show Source
Back to Top

Examples

The following example shows how to view a list of templates in Oracle Cloud Stack by submitting a GET request to the templates endpoint.

cURL Command

curl -i -X GET \
-u yourUsername:yourPassword \
-H "X-ID-TENANT-NAME:MyIdentityDomain" \
https://psm.us.oraclecloud.com/paas/api/v1.1/instancemgmt/MyIdentityDomain/templates/cst/instances

Note: This example uses the URL prefix for the United States. For information about the URL prefixes for other regions of the world, see Send Requests.

Example of Response Header

The following shows an example of the response header.

HTTP/1.1 200 OK
Date: Thu, 25 Aug 2016 18:50:14 GMT
Transfer-Encoding: chunked
Content-Type: application/json

Example of Response Body

The following shows an example of the response body in JSON format.

{
  "items": [
    {
      "templateName":"MyTemplate",
      "latestVersion":"1.0.0",
      "description":"My first template",
      "createdOn":"2016-08-25T18:16:50.233+0000",
      "createdBy":"yourUsername",
      "state":"PUBLISHED",
      "type":"USER_TEMPLATE",
      "links":[
        {
          "rel":"canonical","href":"https://psm.us.oraclecloud.com/paas/api/v1.1/instancemgmt/MyIdentityDomain/templates/cst/instances/MyTemplate"
        },
        {
          "rel":"self","href":"https://psm.us.oraclecloud.com/paas/api/v1.1/instancemgmt/MyIdentityDomain/templates/cst/instances"
        }
      ]
    },
    {
      "templateName":"MyTemplate2",
      "latestVersion":"1.0.0",
      "description":"My second template",
      "createdOn":"2016-08-25T18:20:50.233+0000",
      "createdBy":"joe@example.comyourUsername",
      "state":"PUBLISHED",
      "type":"USER_TEMPLATE",
      "links":[
        {
          "rel":"canonical","href":"https://psm.us.oraclecloud.com/paas/api/v1.1/instancemgmt/MyIdentityDomain/templates/cst/instances/MyTemplate2"
        },
        {
          "rel":"self","href":"https://psm.us.oraclecloud.com/paas/api/v1.1/instancemgmt/MyIdentityDomain/templates/cst/instances"
        }
      ]
    },
  ]
}
Back to Top