Http Verb | POST |
Resource URL | https://ts-stg-appgw.calacademy.org/TessituraService/Templates/Render/Order/{orderId}/Confirmation |
URI Parameters
|
Template body used to render the template Request BodyRequest object type : RenderRequest
|
{
"Body": "sample string 1",
"NameValues": [
{
"Name": "sample string 1",
"Value": "sample string 2"
},
{
"Name": "sample string 1",
"Value": "sample string 2"
}
]
}
<RenderRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Body>sample string 1</Body>
<NameValues>
<NameValue>
<Name>sample string 1</Name>
<Value>sample string 2</Value>
</NameValue>
<NameValue>
<Name>sample string 1</Name>
<Value>sample string 2</Value>
</NameValue>
</NameValues>
</RenderRequest>
Response object type : RenderResponse
Response object type RenderResponse has the following properties. |
Property Name | Data Type | Length | Required | Readonly | Notes |
---|---|---|---|---|---|
Body | string | Y | Rendered html text. |
{
"Body": "sample string 1"
}
<RenderedResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Body>sample string 1</Body>
</RenderedResponse>
Change | Version | Description | Contract | Old | New |
---|---|---|---|---|---|
Response Type Changed | 15.0.0 | Response type has changed from TemplateBody to RenderResponse | TemplateBody | RenderResponse | |
Parameter Added | 15.0.0 | request has changed from TemplateBody to RenderRequest | TemplateBody | RenderRequest |