Get an Example Request Body for Creating Template Resources

get

/sites/management/api/v1/templates/create-form

CREATE FORM

Get a template request body suitable for creating a new template.The create-form resource provides an example request body that clients can use as a template when creating a new Template. The example request body property values can be edited, removed or added to and then used as the request body when creating a Template. Use of the create form is optional, it is only provided as a guide to the request body format.

Successful Response Examples

This operation responds with the following success (2xx) responses. For a full list of response HTTP status codes and example bodies, consult the Response section of this operation.

200OK

Request

GET https://api.example.com/sites/management/api/v1/templates/create-form

Response Body

{
  "file": "F40B9BE3E69F6DC440559A1F033BB2482DB740ECB2D8",
  "template": {
    "resolution": "create",
    "name": "CafeSupremo"
  },
  "theme": {
    "resolution": "create",
    "name": "CafeSupremoTheme"
  },
  "components": {
    "resolution": "conflict",
    "forceCreate": [
        "ContentNavMenu"
    ]
  },
  "defaultResolution": "overwrite",
  "shareWith": "1234"
}

Client Error Response Examples

This operation responds with following client error (4xx) responses with exception details in the response body. For a full list of response HTTP status codes and example bodies, consult the Response section of this operation.

400Bad Request - Deleted Filter Required

When listing resources such as components, themes, sites and templates you can either list resources in the trash or not in the trash; you cannot list resources that are both in and not in the trash. This error indicates that the combination of includeDeleted and the q query parameter are trying to list resources in the trash and not in the trash.

Error Code

OCE-DOCS-001007

Resolution - Listing Resources in Trash

Specify both includeDeleted=true and deleted eq "true" to list resources in the trash.

Resolution - Listing Resources Not in Trash

Do not specify includeDeleted=true or use the expression deleted eq "true" in the filter to list resources not in the trash.

Example Response Body
{
  "type": "http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.1",
  "title": "Deleted Filter Required",
  "status": "400",
  "detail": "You cannot list resources in the trash and not in the trash at the same time.",
  "o:errorCode": "OCE-DOCS-001007"
}

Introduced in release 19.4.3.

Request

Query Parameters
  • Comma-delimited string of field names that should not be included in the response.

  • Comma-separated list of link relation names to exclude from the response.

  • Comma-delimited string of field names to include in the response. Nested fields can be identified using a dot to separate the field names. Field names are case-sensitive. Field names are ignored if the field does not exist.

  • Comma-separated list of link relation names to include in the response. By default, all links are returned.

    The following links are provided by this resource:

    Link RelationshipDescription
    parentDescribes where the parent resource can be read. Equivalent to an up link, this link provides the link to the parent resource, such as the collection resource that contains a singular resource.
    selfDescribes the current returned representation of the resource. Used for links that represent the resource itself. For example, if a resource is returned as part of a collection, the self link will provide the URL path for the individual resource.
    canonicalDescribes the preferred representation of the requested resource. Used for links that represent the canonical form of the resource. For example, if a resource is returned as part of a collection, the canonical link will provide the URL path for the canonical form of the individual resource.
    createDescribes where the resource can be created. Used on collection resources to indicate where a post can be performed to create a new resource in the collection.
    describedByDescribes the schema resource providing metadata information about the resource. Used on collection, singular and relation resources to indicate where the schema resource is that describes the resource.
Back to Top

Response

Supported Media Types

200 Response

OK
Headers
Body ()
Root Schema : schema
Type: object
Show Source
  • components

    Details of how component conflict resolution is performed.

    Introduced in release 19.4.1.
  • Default conflict resolution for templates, themes and components.

    Valid values are:

    • overwrite - Overwrite the conflicting resources with the one being imported if a resource exists with the same identity
    • skip - Do not import the resource if there is a conflict

    Introduced in release 22.5.2.
  • Template package file.

    Introduced in release 19.4.1.
  • links
  • Optional group name or identifier that the imported artifacts, such as template, theme and components, will be shared with. The group will be given the manager role.

    Introduced in release 22.5.2.
  • template

    Details of how template conflict resolution is performed.

    Introduced in release 19.4.1.
  • theme

    Details of how theme conflict resolution is performed.

    Introduced in release 19.4.1.
Nested Schema : components
Type: object

Details of how component conflict resolution is performed.

Introduced in release 19.4.1.
Show Source
  • forceCreate

    List of component names that should always be created as new components if they already exist. If the component name is already is use, the new component name will be automatically generated using the existing name and a suffix so it is unique. Components not in this list will be overwritten or cause a conflict response depending on the value of the resolution field.

    Introduced in release 19.4.1.
  • How to handle component conflicts for components not listed in the forceCreate field.

    Valid values are:

    • conflict - Do not import the component if there is a conflict, and respond with an error
    • overwrite - Overwrite the component with the component in the component package

    Introduced in release 19.4.1.
Nested Schema : template
Type: object

Details of how template conflict resolution is performed.

Introduced in release 19.4.1.
Show Source
  • Maximum Length: 242

    If a resolution of rename is chosen, a template name must be provided. If a resolution of create is chosen, a template name may optionally be provided.

    Introduced in release 19.4.1.
  • How to handle template conflicts.

    Valid values are:

    • create - Import the template with a new identity if a template exists with the same identity. Optionally, a new template name can
    be specified to avoid any name conflict.
    • rename - Import the template with a new name but keeping its identity. If rename conflict resolution is chosen,
    then a new template name will also have to be specified.
    • overwrite - Overwrite the conflicting template with the one being imported if a template exists with the same identity
    • skip - Do not import the template if there is a conflict

    Introduced in release 19.4.1.
Nested Schema : theme
Type: object

Details of how theme conflict resolution is performed.

Introduced in release 19.4.1.
Show Source
  • Maximum Length: 255

    If a resolution of rename is chosen, a theme name must be provided. If a resolution of create is chosen, a theme name may optionally be provided.

    Introduced in release 19.4.1.
  • How to handle theme conflicts.

    Valid values are:

    • create - Import the theme with a new identity if a theme exists with the same identity. Optionally, a new theme name can
    be specified to avoid any name conflict.
    • rename - Import the theme with a new name but keeping its identity. If rename conflict resolution is chosen,
    then a new theme name will also have to be specified.
    • overwrite - Overwrite the conflicting theme with the one being imported if a theme exists with the same identity
    • skip - Do not import the theme if there is a conflict

    Introduced in release 19.4.1.
Nested Schema : forceCreate
Type: array

List of component names that should always be created as new components if they already exist. If the component name is already is use, the new component name will be automatically generated using the existing name and a suffix so it is unique. Components not in this list will be overwritten or cause a conflict response depending on the value of the resolution field.

Introduced in release 19.4.1.
Show Source
Example Response ()
{
    "file":"F40B9BE3E69F6DC440559A1F033BB2482DB740ECB2D8",
    "template":{
        "resolution":"create",
        "name":"CafeSupremo"
    },
    "theme":{
        "resolution":"create",
        "name":"CafeSupremoTheme"
    },
    "components":{
        "resolution":"conflict",
        "forceCreate":[
            "ContentNavMenu"
        ]
    },
    "defaultResolution":"overwrite",
    "shareWith":"1234"
}

400 Response

Bad Request
Body ()
Root Schema : schema
Match All
Show Source
Nested Schema : DeletedRequiredExceptionDetail
Introduced in release 19.4.3.
Match All
Show Source
  • ExceptionDetail

    In addition to HTTP error code and error messages, it is often desirable to provide additional information to the client when a request fails. In such cases, the additional information will be included in the response body.

Nested Schema : ExceptionDetail
Type: object

In addition to HTTP error code and error messages, it is often desirable to provide additional information to the client when a request fails. In such cases, the additional information will be included in the response body.

Show Source
Nested Schema : o:errorDetails
Type: array

Multiple errors can be organized in a hierarchical structure.

Show Source
Nested Schema : items
Match All
Show Source
  • ExceptionDetail

    In addition to HTTP error code and error messages, it is often desirable to provide additional information to the client when a request fails. In such cases, the additional information will be included in the response body.

Example Response (Deleted Filter Required)
{
    "type":"http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.1",
    "title":"Deleted Filter Required",
    "status":"400",
    "detail":"You cannot list resources in the trash and not in the trash at the same time.",
    "o:errorCode":"OCE-DOCS-001007"
}

401 Response

Unauthorized

406 Response

Not Acceptable

416 Response

Range Not Satisfiable

429 Response

Too Many Requests

500 Response

Internal Server Error

501 Response

Not Implemented

502 Response

Bad Gateway

503 Response

Service Unavailable

504 Response

Gateway Timeout
Back to Top