> For the complete documentation index, see [llms.txt](https://tech.x2bee.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://tech.x2bee.com/api/api-en/back-office-api-reference/cs-bo-api/consultation-template-management.md).

# Consultation Template Management

## Modify Template in Consultation Template Management

> \## Function Description\
> \* Modifies a template in the Consultation Template Management detail screen.\
> \---\
> \## Detailed Description\
> \* This function is called when the save button is clicked on the template detail screen under \[BO/CC] Customer Service > Consultation Task Management > Consultation Template Management.\
> \---\
> \## Code Reference\
> \* \`\`\`Tab Type Code\`\`\`: common: Common, alone: Individual<br>

````json
{"openapi":"3.1.0","info":{"title":"X2BEE BO API","version":"v1"},"servers":[{"url":"https://api-bo.x2bee.com/api/bo/","description":"prd"}],"security":[{"accessToken":[]}],"components":{"securitySchemes":{"accessToken":{"type":"http","name":"accessToken","scheme":"bearer","bearerFormat":"JWT"}},"schemas":{"CsCnslTmplInfo":{"type":"object","description":"Consultation Template Register/Modify Request DTO","properties":{"typeCode":{"type":"string","description":"Tab Type (Common: common, Individual: alone)"},"cnslAempId":{"type":"string","description":"User ID"},"cnslTmplNo":{"type":"string","description":"Consultation Template No."},"cnslGbCd":{"type":"string","description":"Consultation Classification Code"},"cnslTypCd":{"type":"string","description":"Consultation Type Code"},"tmplNm":{"type":"string","description":"Template Name"},"tmplCont":{"type":"string","description":"Template Content"},"useYn":{"type":"string","description":"Usage Status"}}},"ResponseString":{"type":"object","properties":{"timestamp":{"type":"string","format":"date-time","description":"result time"},"code":{"type":"string","description":"result code"},"message":{"type":"string","description":"result message"},"isProcess":{"type":"boolean","description":"process check"},"payload":{"type":"string","description":"payload"},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"ValidationError":{"type":"object","properties":{"field":{"type":"string","description":"field"},"message":{"type":"string","description":"field message"}}},"Response":{"type":"object","properties":{"timestamp":{"type":"string","format":"date-time","description":"result time"},"code":{"type":"string","description":"result code"},"message":{"type":"string","description":"result message"},"isProcess":{"type":"boolean","description":"process check"},"payload":{"description":"payload"},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}}}},"paths":{"/v2/customerservice/counselingTemplateMgmt/updateCsCounselTemplateInfo":{"post":{"tags":["Consultation Template Management"],"summary":"Modify Template in Consultation Template Management","description":"## Function Description\n* Modifies a template in the Consultation Template Management detail screen.\n---\n## Detailed Description\n* This function is called when the save button is clicked on the template detail screen under [BO/CC] Customer Service > Consultation Task Management > Consultation Template Management.\n---\n## Code Reference\n* ```Tab Type Code```: common: Common, alone: Individual\n","operationId":"updateCsCounselTemplateInfo","parameters":[{"name":"typeCode","in":"query","description":"Tab Type (Common: common, Individual: alone)","schema":{"type":"String"}},{"name":"cnslTmplNo","in":"query","description":"Consultation Template No.","schema":{"type":"String"}},{"name":"cnslAempId","in":"query","description":"User ID","schema":{"type":"String"}},{"name":"tmplNm","in":"query","description":"Template Name","schema":{"type":"String"}},{"name":"tmplCont","in":"query","description":"Template Content","schema":{"type":"String"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CsCnslTmplInfo"}}},"required":true},"responses":{"200":{"description":"Success","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseString"}}}},"900":{"description":"Business processing error details","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}}}}
````

## Register Template in Consultation Template Management

> \## Function Description\
> \* Registers a new template in Consultation Template Management.\
> \---\
> \## Detailed Description\
> \* This function is called when the save button is clicked on the Add Template page under \[BO/CC] Customer Service > Consultation Task Management > Consultation Template Management.\
> \* Registration proceeds only if the template is not a duplicate of an existing consultation template.\
> \## Notes\
> \* A new template is considered a duplicate of an existing template in the following cases:\
> &#x20; \* A template with the same consultation type/category and template name already exists among the Common templates\
> &#x20; \* A template with the same consultation type/category and template name being registered as Individual already exists among the Common templates\
> &#x20; \* A template with the same consultation type/category and template name being registered as Individual already exists among the Individual templates\
> \---\
> \## Code Reference\
> \* \`\`\`Tab Type Code\`\`\`: common: Common, alone: Individual<br>

````json
{"openapi":"3.1.0","info":{"title":"X2BEE BO API","version":"v1"},"servers":[{"url":"https://api-bo.x2bee.com/api/bo/","description":"prd"}],"security":[{"accessToken":[]}],"components":{"securitySchemes":{"accessToken":{"type":"http","name":"accessToken","scheme":"bearer","bearerFormat":"JWT"}},"schemas":{"CsCnslTmplInfo":{"type":"object","description":"Consultation Template Register/Modify Request DTO","properties":{"typeCode":{"type":"string","description":"Tab Type (Common: common, Individual: alone)"},"cnslAempId":{"type":"string","description":"User ID"},"cnslTmplNo":{"type":"string","description":"Consultation Template No."},"cnslGbCd":{"type":"string","description":"Consultation Classification Code"},"cnslTypCd":{"type":"string","description":"Consultation Type Code"},"tmplNm":{"type":"string","description":"Template Name"},"tmplCont":{"type":"string","description":"Template Content"},"useYn":{"type":"string","description":"Usage Status"}}},"ResponseString":{"type":"object","properties":{"timestamp":{"type":"string","format":"date-time","description":"result time"},"code":{"type":"string","description":"result code"},"message":{"type":"string","description":"result message"},"isProcess":{"type":"boolean","description":"process check"},"payload":{"type":"string","description":"payload"},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"ValidationError":{"type":"object","properties":{"field":{"type":"string","description":"field"},"message":{"type":"string","description":"field message"}}},"Response":{"type":"object","properties":{"timestamp":{"type":"string","format":"date-time","description":"result time"},"code":{"type":"string","description":"result code"},"message":{"type":"string","description":"result message"},"isProcess":{"type":"boolean","description":"process check"},"payload":{"description":"payload"},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}}}},"paths":{"/v2/customerservice/counselingTemplateMgmt/registCsCounselTemplateInfo":{"post":{"tags":["Consultation Template Management"],"summary":"Register Template in Consultation Template Management","description":"## Function Description\n* Registers a new template in Consultation Template Management.\n---\n## Detailed Description\n* This function is called when the save button is clicked on the Add Template page under [BO/CC] Customer Service > Consultation Task Management > Consultation Template Management.\n* Registration proceeds only if the template is not a duplicate of an existing consultation template.\n## Notes\n* A new template is considered a duplicate of an existing template in the following cases:\n  * A template with the same consultation type/category and template name already exists among the Common templates\n  * A template with the same consultation type/category and template name being registered as Individual already exists among the Common templates\n  * A template with the same consultation type/category and template name being registered as Individual already exists among the Individual templates\n---\n## Code Reference\n* ```Tab Type Code```: common: Common, alone: Individual\n","operationId":"registCsCounselTemplateInfo","parameters":[{"name":"typeCode","in":"query","description":"Tab Type (Common: common, Individual: alone)","schema":{"type":"String"}},{"name":"cnslGbCd","in":"query","description":"Consultation Classification Code","schema":{"type":"String"}},{"name":"cnslTypCd","in":"query","description":"Consultation Type Code","schema":{"type":"String"}},{"name":"tmplNm","in":"query","description":"Template Name","schema":{"type":"String"}},{"name":"tmplCont","in":"query","description":"Template Content","schema":{"type":"String"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CsCnslTmplInfo"}}},"required":true},"responses":{"200":{"description":"Success","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseString"}}}},"900":{"description":"Business processing error details","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}}}}
````

## Delete Consultation Template

> \## Function Description\
> \* Deletes the selected consultation template.\
> \---\
> \## Detailed Description\
> \* This function is called when deleting the selected consultation template from the Consultation Template Management page under \[BO/CC] Customer Service > Consultation Task Management.<br>

```json
{"openapi":"3.1.0","info":{"title":"X2BEE BO API","version":"v1"},"servers":[{"url":"https://api-bo.x2bee.com/api/bo/","description":"prd"}],"security":[{"accessToken":[]}],"components":{"securitySchemes":{"accessToken":{"type":"http","name":"accessToken","scheme":"bearer","bearerFormat":"JWT"}},"schemas":{"RealGridCUDRequestCsCnslTmplInfo":{"type":"object","properties":{"all":{"type":"array","items":{"$ref":"#/components/schemas/CsCnslTmplInfo"}},"create":{"type":"array","items":{"$ref":"#/components/schemas/CsCnslTmplInfo"}},"update":{"type":"array","items":{"$ref":"#/components/schemas/CsCnslTmplInfo"}},"delete":{"type":"array","items":{"$ref":"#/components/schemas/CsCnslTmplInfo"}}}},"CsCnslTmplInfo":{"type":"object","description":"Consultation Template Register/Modify Request DTO","properties":{"typeCode":{"type":"string","description":"Tab Type (Common: common, Individual: alone)"},"cnslAempId":{"type":"string","description":"User ID"},"cnslTmplNo":{"type":"string","description":"Consultation Template No."},"cnslGbCd":{"type":"string","description":"Consultation Classification Code"},"cnslTypCd":{"type":"string","description":"Consultation Type Code"},"tmplNm":{"type":"string","description":"Template Name"},"tmplCont":{"type":"string","description":"Template Content"},"useYn":{"type":"string","description":"Usage Status"}}},"ResponseString":{"type":"object","properties":{"timestamp":{"type":"string","format":"date-time","description":"result time"},"code":{"type":"string","description":"result code"},"message":{"type":"string","description":"result message"},"isProcess":{"type":"boolean","description":"process check"},"payload":{"type":"string","description":"payload"},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"ValidationError":{"type":"object","properties":{"field":{"type":"string","description":"field"},"message":{"type":"string","description":"field message"}}},"Response":{"type":"object","properties":{"timestamp":{"type":"string","format":"date-time","description":"result time"},"code":{"type":"string","description":"result code"},"message":{"type":"string","description":"result message"},"isProcess":{"type":"boolean","description":"process check"},"payload":{"description":"payload"},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}}}},"paths":{"/v2/customerservice/counselingTemplateMgmt/deleteCsCounselTemplateInfoList":{"post":{"tags":["Consultation Template Management"],"summary":"Delete Consultation Template","description":"## Function Description\n* Deletes the selected consultation template.\n---\n## Detailed Description\n* This function is called when deleting the selected consultation template from the Consultation Template Management page under [BO/CC] Customer Service > Consultation Task Management.\n","operationId":"deleteCsCounselTemplateInfoList","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RealGridCUDRequestCsCnslTmplInfo"}}},"required":true},"responses":{"200":{"description":"Success","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseString"}}}},"900":{"description":"Business processing error details","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}}}}
```

## Retrieve Consultation Template Management List

> \## Function Description\
> \* Retrieves the template list registered in Consultation Template Management.\
> \---\
> \## Detailed Description\
> \* This function is called when the search button is clicked on the Consultation Template Management page under \[BO/CC] Customer Service > Consultation Task Management.\
> \---\
> \## Code Reference (Option)\
> \* \`\`\`Tab Type Code\`\`\`: common: Common, alone: Individual<br>

````json
{"openapi":"3.1.0","info":{"title":"X2BEE BO API","version":"v1"},"servers":[{"url":"https://api-bo.x2bee.com/api/bo/","description":"prd"}],"security":[{"accessToken":[]}],"components":{"securitySchemes":{"accessToken":{"type":"http","name":"accessToken","scheme":"bearer","bearerFormat":"JWT"}},"schemas":{"CsCounselTemplateInfoResponse":{"type":"object","properties":{"argInsertUpdate":{"type":"string","description":"Register/Modify Type Code"},"typeCode":{"type":"string","description":"Tab Type (Common: common, Individual: alone)"},"cnslAempId":{"type":"string","description":"User ID"},"cnslAempNm":{"type":"string","description":"User Name"},"cnslTmplNo":{"type":"string","description":"Consultation Template No."},"cnslGbCd":{"type":"string","description":"Consultation Type Code (CS015)"},"cnslTypCd":{"type":"string","description":"Consultation Type Code (CS016)"},"tmplNm":{"type":"string","description":"Template Name"},"tmplCont":{"type":"string","description":"Template Content"},"userId":{"type":"string","description":"Member ID"},"callGub":{"type":"string","description":"Call Type"},"useYn":{"type":"string","description":"Usage Status"}}},"Response":{"type":"object","properties":{"timestamp":{"type":"string","format":"date-time","description":"result time"},"code":{"type":"string","description":"result code"},"message":{"type":"string","description":"result message"},"isProcess":{"type":"boolean","description":"process check"},"payload":{"description":"payload"},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"ValidationError":{"type":"object","properties":{"field":{"type":"string","description":"field"},"message":{"type":"string","description":"field message"}}}}},"paths":{"/v2/customerservice/counselingTemplateMgmt/getCsCounselTemplateInfoList":{"get":{"tags":["Consultation Template Management"],"summary":"Retrieve Consultation Template Management List","description":"## Function Description\n* Retrieves the template list registered in Consultation Template Management.\n---\n## Detailed Description\n* This function is called when the search button is clicked on the Consultation Template Management page under [BO/CC] Customer Service > Consultation Task Management.\n---\n## Code Reference (Option)\n* ```Tab Type Code```: common: Common, alone: Individual\n","operationId":"getCsCounselTemplateInfoList_1","parameters":[{"name":"typeCode","in":"query","description":"Tab Type (Common: common, Individual: alone)","required":false,"schema":{"type":"string","description":"Tab Type (Common: common, Individual: alone)"}},{"name":"cnslGbCd","in":"query","description":"Consultation Type Code (CS015)","required":false,"schema":{"type":"string","description":"Consultation Type Code (CS015)"}},{"name":"cnslTypCd","in":"query","description":"Consultation Type Code (CS016)","required":false,"schema":{"type":"string","description":"Consultation Type Code (CS016)"}},{"name":"tmplNm","in":"query","description":"Template Name","required":false,"schema":{"type":"string","description":"Template Name"}},{"name":"userId","in":"query","description":"Member ID","required":false,"schema":{"type":"string","description":"Member ID"}},{"name":"handlerGb","in":"query","description":"Handler Type","required":false,"schema":{"type":"string","description":"Handler Type"}},{"name":"useYn","in":"query","description":"Usage Status","required":false,"schema":{"type":"string","description":"Usage Status"}}],"responses":{"200":{"description":"Success","content":{"*/*":{"schema":{"$ref":"#/components/schemas/CsCounselTemplateInfoResponse"}}}},"900":{"description":"Business processing error details","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}}}}
````

## Retrieve Consultation Template Management Detail Information

> \## Function Description\
> \* Retrieves the detail information of a template registered in Consultation Template Management.\
> \---\
> \## Detailed Description\
> \* This function is called when a consultation template is selected from the list on the Consultation Template Management page under \[BO/CC] Customer Service > Consultation Task Management.\
> \---\
> \## Code Reference\
> \* \`\`\`Tab Type Code\`\`\`: common: Common, alone: Individual<br>

````json
{"openapi":"3.1.0","info":{"title":"X2BEE BO API","version":"v1"},"servers":[{"url":"https://api-bo.x2bee.com/api/bo/","description":"prd"}],"security":[{"accessToken":[]}],"components":{"securitySchemes":{"accessToken":{"type":"http","name":"accessToken","scheme":"bearer","bearerFormat":"JWT"}},"schemas":{"ResponseCsCounselTemplateInfoResponse":{"type":"object","properties":{"timestamp":{"type":"string","format":"date-time","description":"result time"},"code":{"type":"string","description":"result code"},"message":{"type":"string","description":"result message"},"isProcess":{"type":"boolean","description":"process check"},"payload":{"$ref":"#/components/schemas/CsCounselTemplateInfoResponse","description":"payload"},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"CsCounselTemplateInfoResponse":{"type":"object","properties":{"argInsertUpdate":{"type":"string","description":"Register/Modify Type Code"},"typeCode":{"type":"string","description":"Tab Type (Common: common, Individual: alone)"},"cnslAempId":{"type":"string","description":"User ID"},"cnslAempNm":{"type":"string","description":"User Name"},"cnslTmplNo":{"type":"string","description":"Consultation Template No."},"cnslGbCd":{"type":"string","description":"Consultation Type Code (CS015)"},"cnslTypCd":{"type":"string","description":"Consultation Type Code (CS016)"},"tmplNm":{"type":"string","description":"Template Name"},"tmplCont":{"type":"string","description":"Template Content"},"userId":{"type":"string","description":"Member ID"},"callGub":{"type":"string","description":"Call Type"},"useYn":{"type":"string","description":"Usage Status"}}},"ValidationError":{"type":"object","properties":{"field":{"type":"string","description":"field"},"message":{"type":"string","description":"field message"}}},"Response":{"type":"object","properties":{"timestamp":{"type":"string","format":"date-time","description":"result time"},"code":{"type":"string","description":"result code"},"message":{"type":"string","description":"result message"},"isProcess":{"type":"boolean","description":"process check"},"payload":{"description":"payload"},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}}}},"paths":{"/v2/customerservice/counselingTemplateMgmt/getCsCounselTemplateInfoDetail":{"get":{"tags":["Consultation Template Management"],"summary":"Retrieve Consultation Template Management Detail Information","description":"## Function Description\n* Retrieves the detail information of a template registered in Consultation Template Management.\n---\n## Detailed Description\n* This function is called when a consultation template is selected from the list on the Consultation Template Management page under [BO/CC] Customer Service > Consultation Task Management.\n---\n## Code Reference\n* ```Tab Type Code```: common: Common, alone: Individual\n","operationId":"getCsCounselTemplateInfoDetail","parameters":[{"name":"argInsertUpdate","in":"query","description":"Save/Modify Type Value","required":false,"schema":{"type":"string","description":"Save/Modify Type Value"}},{"name":"typeCode","in":"query","description":"Tab Type (Common: common, Individual: alone)","required":false,"schema":{"type":"string","description":"Tab Type (Common: common, Individual: alone)"}},{"name":"cnslAempId","in":"query","description":"User ID","required":false,"schema":{"type":"string","description":"User ID"}},{"name":"cnslTmplNo","in":"query","description":"Consultation Template No.","required":false,"schema":{"type":"string","description":"Consultation Template No."}},{"name":"callGub","in":"query","description":"Call Type","required":false,"schema":{"type":"string","description":"Call Type"}}],"responses":{"200":{"description":"Success","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseCsCounselTemplateInfoResponse"}}}},"900":{"description":"Business processing error details","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}}}}
````

## Check Template Duplication in Consultation Template Management

> \## Function Description\
> \* This function checks whether a new template being registered in Consultation Template Management duplicates an existing template\
> \---\
> \## Detailed Description\
> \* This function is called when the save button is clicked on the Add Template page under \[BO/CC] Customer Service > Consultation Task Management > Consultation Template Management\
> \---\
> \## Notes\
> \* A new template is considered a duplicate of an existing template in the following cases:\
> &#x20; \* A template with the same consultation type/category and template name already exists among the Common templates\
> &#x20; \* A template with the same consultation type/category and template name being registered as Individual already exists among the Common templates\
> &#x20; \* A template with the same consultation type/category and template name being registered as Individual already exists among the Individual templates\
> \---\
> \## Code Reference\
> \* \`\`\`Tab Type Code\`\`\`: common: Common, alone: Individual<br>

````json
{"openapi":"3.1.0","info":{"title":"X2BEE BO API","version":"v1"},"servers":[{"url":"https://api-bo.x2bee.com/api/bo/","description":"prd"}],"security":[{"accessToken":[]}],"components":{"securitySchemes":{"accessToken":{"type":"http","name":"accessToken","scheme":"bearer","bearerFormat":"JWT"}},"schemas":{"ResponseInteger":{"type":"object","properties":{"timestamp":{"type":"string","format":"date-time","description":"result time"},"code":{"type":"string","description":"result code"},"message":{"type":"string","description":"result message"},"isProcess":{"type":"boolean","description":"process check"},"payload":{"type":"integer","format":"int32","description":"payload"},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"ValidationError":{"type":"object","properties":{"field":{"type":"string","description":"field"},"message":{"type":"string","description":"field message"}}},"Response":{"type":"object","properties":{"timestamp":{"type":"string","format":"date-time","description":"result time"},"code":{"type":"string","description":"result code"},"message":{"type":"string","description":"result message"},"isProcess":{"type":"boolean","description":"process check"},"payload":{"description":"payload"},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}}}},"paths":{"/v2/customerservice/counselingTemplateMgmt/checkDuplicateCsCounselTemplateInfo":{"get":{"tags":["Consultation Template Management"],"summary":"Check Template Duplication in Consultation Template Management","description":"## Function Description\n* This function checks whether a new template being registered in Consultation Template Management duplicates an existing template\n---\n## Detailed Description\n* This function is called when the save button is clicked on the Add Template page under [BO/CC] Customer Service > Consultation Task Management > Consultation Template Management\n---\n## Notes\n* A new template is considered a duplicate of an existing template in the following cases:\n  * A template with the same consultation type/category and template name already exists among the Common templates\n  * A template with the same consultation type/category and template name being registered as Individual already exists among the Common templates\n  * A template with the same consultation type/category and template name being registered as Individual already exists among the Individual templates\n---\n## Code Reference\n* ```Tab Type Code```: common: Common, alone: Individual\n","operationId":"checkDuplicateCsCounselTemplateInfo","parameters":[{"name":"typeCode","in":"query","description":"Tab Type (Common: common, Individual: alone)","required":false,"schema":{"type":"string","description":"Tab Type (Common: common, Individual: alone)"}},{"name":"cnslGbCd","in":"query","description":"Consultation Classification Code","required":false,"schema":{"type":"string","description":"Consultation Classification Code"}},{"name":"cnslTypCd","in":"query","description":"Consultation Type Code","required":false,"schema":{"type":"string","description":"Consultation Type Code"}},{"name":"tmplNm","in":"query","description":"Template Name","required":false,"schema":{"type":"string","description":"Template Name"}},{"name":"tmplCont","in":"query","description":"Template Content","required":false,"schema":{"type":"string","description":"Template Content"}},{"name":"callGub","in":"query","description":"Call Type","required":false,"schema":{"type":"string","description":"Call Type"}}],"responses":{"200":{"description":"Success","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseInteger"}}}},"900":{"description":"Business processing error details","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}}}}
````
