Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| razorTemplateId |
The razor template identifier. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
The razor template, if it exists.
Pico.RazorTemplate| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Gets or sets the razor template identifier. |
integer |
None. |
| code |
Gets or sets the razor template code. |
string |
None. |
| model |
Gets or sets the model. |
string |
None. |
| template |
Gets or sets the template. |
string |
None. |
| bodyCommunicationTemplate |
Gets or sets the dependent communication template body template identifiers. |
Collection of integer |
None. |
| signatureCommunicationTemplate |
Gets or sets the dependent communication template signature template identifiers. |
Collection of integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"id": "1",
"code": "sample String 2",
"model": "sample String 3",
"template": "sample String 4",
"bodyCommunicationTemplate": [
"1",
"2"
],
"signatureCommunicationTemplate": [
"1",
"2"
]
}
text/html
Sample:
{"id":"1","code":"sample String 2","model":"sample String 3","template":"sample String 4","bodyCommunicationTemplate":["1","2"],"signatureCommunicationTemplate":["1","2"]}