PUT api/templates/search

Request Information

URI Parameters

None.

Body Parameters

TemplateListFilterDto
NameDescriptionTypeAdditional information
Name

string

None.

AppId

globally unique identifier

None.

CustomerGroupId

globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "Name": "sample string 1",
  "AppId": "de1a0cd3-dbf0-4aee-b995-e0cdb7c32a54",
  "CustomerGroupId": "b20b4bc4-f6c5-4b89-a3d4-b33903038c53"
}

Response Information

Resource Description

Collection of TemplateInfoDto
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

TemplateId

integer

None.

Name

string

None.

SourceUrl

string

None.

CustomerGroup

NamedItem

None.

App

NamedItem

None.

PreviewType

TemplatePreviewTypeEnum

None.

InheritanceRestriction

TemplateInheritanceRestrictionEnum

None.

ChildTemplates

Collection of globally unique identifier

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": "c421868c-0cb1-41c8-8942-b6cf2a3a8bc8",
    "TemplateId": 2,
    "Name": "sample string 3",
    "SourceUrl": "sample string 4",
    "CustomerGroup": {
      "Id": "c2a63430-b1f7-4f74-a3d4-c219a80e0c97",
      "Name": "sample string 2"
    },
    "App": {
      "Id": "c2a63430-b1f7-4f74-a3d4-c219a80e0c97",
      "Name": "sample string 2"
    },
    "PreviewType": "Pinch",
    "InheritanceRestriction": "RootAndChild",
    "ChildTemplates": [
      "b7ddfcb6-2342-4510-ad11-d2fbe7087287",
      "e42d5abd-c0d9-45a2-8c7a-57f662e8264a"
    ]
  },
  {
    "Id": "c421868c-0cb1-41c8-8942-b6cf2a3a8bc8",
    "TemplateId": 2,
    "Name": "sample string 3",
    "SourceUrl": "sample string 4",
    "CustomerGroup": {
      "Id": "c2a63430-b1f7-4f74-a3d4-c219a80e0c97",
      "Name": "sample string 2"
    },
    "App": {
      "Id": "c2a63430-b1f7-4f74-a3d4-c219a80e0c97",
      "Name": "sample string 2"
    },
    "PreviewType": "Pinch",
    "InheritanceRestriction": "RootAndChild",
    "ChildTemplates": [
      "b7ddfcb6-2342-4510-ad11-d2fbe7087287",
      "e42d5abd-c0d9-45a2-8c7a-57f662e8264a"
    ]
  }
]