POST api/case/{caseId}/template/{templateId}/answer_and_open/url
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| caseId | string |
Required |
|
| templateId | integer |
Required |
Body Parameters
AnswerAndOpenModel| Name | Description | Type | Additional information |
|---|---|---|---|
| tags | Collection of TemplateTagModel |
None. |
Request Formats
application/json, text/json
Sample:
{
"tags": [
{
"tag_name": "sample string 1",
"tag_value": "sample string 2"
},
{
"tag_name": "sample string 1",
"tag_value": "sample string 2"
}
]
}
text/html
Sample:
{"tags":[{"tag_name":"sample string 1","tag_value":"sample string 2"},{"tag_name":"sample string 1","tag_value":"sample string 2"}]}
application/xml, text/xml
Sample:
<AnswerAndOpenModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LSAtlas_WebAPI.Models">
<tags>
<TemplateTagModel>
<tag_name>sample string 1</tag_name>
<tag_value>sample string 2</tag_value>
</TemplateTagModel>
<TemplateTagModel>
<tag_name>sample string 1</tag_name>
<tag_value>sample string 2</tag_value>
</TemplateTagModel>
</tags>
</AnswerAndOpenModel>
multipart/form-data
Sample:
<AnswerAndOpenModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LSAtlas_WebAPI.Models"><tags><TemplateTagModel><tag_name>sample string 1</tag_name><tag_value>sample string 2</tag_value></TemplateTagModel><TemplateTagModel><tag_name>sample string 1</tag_name><tag_value>sample string 2</tag_value></TemplateTagModel></tags></AnswerAndOpenModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
stringResponse Formats
application/json, text/json, text/html
Sample:
"sample string 1"
application/xml, text/xml, multipart/form-data
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>