GET Templates/Get/{ID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
ID

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

TemplateDTO
NameDescriptionTypeAdditional information
Name

Gets or Sets the Name

string

None.

Description

Gets or Sets the template description

string

None.

CreatedByID

The ID of the user that created the template

globally unique identifier

None.

CreatedBy

Username of the person that created the template

string

None.

CreatedOn

The date the template was created on

date

None.

Data

Gets or sets the Data

string

None.

Type

Gets or set the type of template: Request = 1, Criteria Group = 2

TemplateTypes

None.

Notes

Gets or sets notes for the template.

string

None.

QueryType

Gets or sets the query subtype.

QueryComposerQueryTypes

None.

ComposerInterface

Gets or sets the query composer interface capability

QueryComposerInterface

None.

Order

Gets or sets the position of the template within the request types template collection.

integer

None.

RequestTypeID

Gets or sets the request type the template belongs to.

globally unique identifier

None.

RequestType

Gets or sets the name of the request type the template belongs to.

string

None.

ID

globally unique identifier

None.

Timestamp

Collection of byte

None.

Response Formats

application/json, text/json

Sample:
{
  "results": [
    {
      "Name": "sample string 1",
      "Description": "sample string 2",
      "CreatedByID": "f363d16f-d553-41fd-88fa-3e66788d3a3a",
      "CreatedBy": "sample string 3",
      "CreatedOn": "2024-05-14T18:28:31Z",
      "Data": "sample string 5",
      "Type": 1,
      "Notes": "sample string 6",
      "QueryType": 1,
      "ComposerInterface": 0,
      "Order": 7,
      "RequestTypeID": "490c3248-1160-4194-974c-f89965e02360",
      "RequestType": "sample string 8",
      "ID": "5084c1b8-87e7-45fb-9b50-b00d960d8d80",
      "Timestamp": "QEA="
    }
  ]
}

text/javascript

Sample:
{"results":[{"Name":"sample string 1","Description":"sample string 2","CreatedByID":"f363d16f-d553-41fd-88fa-3e66788d3a3a","CreatedBy":"sample string 3","CreatedOn":"2024-05-14T18:28:31Z","Data":"sample string 5","Type":1,"Notes":"sample string 6","QueryType":1,"ComposerInterface":0,"Order":7,"RequestTypeID":"490c3248-1160-4194-974c-f89965e02360","RequestType":"sample string 8","ID":"5084c1b8-87e7-45fb-9b50-b00d960d8d80","Timestamp":"QEA="}]}

application/bson

Sample:
Binary JSON content. See http://bsonspec.org for details.

application/xml, text/xml

Sample:
<TemplateDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Lpp.Dns.DTO">
  <ID xmlns="http://schemas.datacontract.org/2004/07/Lpp.Objects">5084c1b8-87e7-45fb-9b50-b00d960d8d80</ID>
  <Timestamp xmlns="http://schemas.datacontract.org/2004/07/Lpp.Objects">QEA=</Timestamp>
  <ComposerInterface>FlexibleMenuDrivenQuery</ComposerInterface>
  <CreatedBy>sample string 3</CreatedBy>
  <CreatedByID>f363d16f-d553-41fd-88fa-3e66788d3a3a</CreatedByID>
  <CreatedOn xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:DateTime>2024-05-14T22:28:31.5683002Z</d2p1:DateTime>
    <d2p1:OffsetMinutes>-240</d2p1:OffsetMinutes>
  </CreatedOn>
  <Data>sample string 5</Data>
  <Description>sample string 2</Description>
  <Name>sample string 1</Name>
  <Notes>sample string 6</Notes>
  <Order>7</Order>
  <QueryType>CenusProjections</QueryType>
  <RequestType>sample string 8</RequestType>
  <RequestTypeID>490c3248-1160-4194-974c-f89965e02360</RequestTypeID>
  <Type>Request</Type>
</TemplateDTO>