Http Verb | POST |
Resource URL | https://ts-stg-appgw.calacademy.org/TessituraService/Templates/{templateId}/Login/{loginId}/Credentials |
URI Parameters
|
A list of name/value pairs to be used in the template Request BodyRequest object type : Collection of NameValue
|
[
{
"Name": "sample string 1",
"Value": "sample string 2"
},
{
"Name": "sample string 1",
"Value": "sample string 2"
}
]
<NameValues xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<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>
Response object type : TemplateBody
Response object type TemplateBody has the following properties. |
Property Name | Data Type | Length | Required | Readonly | Notes |
---|---|---|---|---|---|
Body | string | Y | Text to be processed and rendered. | ||
IsHtmlBody | boolean | If true, Body text is interpreted and rendered as HTML. |
{
"Body": "sample string 1",
"IsHtmlBody": true
}
<TemplateBody xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Body>sample string 1</Body>
<IsHtmlBody>true</IsHtmlBody>
</TemplateBody>
Change | Version | Description | Contract | Old | New |
---|---|---|---|---|---|
Operation Changed | 15.0.0 | Route verb has changed from Get to Post | Get | Post | |
Parameter Added | 15.0.0 | New parameter added request | request |