Get List of Available Parser Templates
Starting October 11, 2024 (Zephyr Enterprise 8.2), the Zephyr Enterprise documentation moved from its current location on Atlassian to a dedicated, standalone Zephyr Enterprise documentation page. Please see: https://support.smartbear.com/zephyr-enterprise/docs/en/zephyr-enterprise/zephyr-user-guide/zephyr-test-automation/parser-templates/create,-edit-and-delete-templates/get-list-of-available-parser-templates.html
Request
To get a list of available parser templates, send the following API request to your Zephyr server:Â
GETÂ http(s)://{your-zephyr}/flex/services/rest/latest/parsertemplateÂ
where your-zephyr is the host name or IP address of your Zephyr server.
You can use this request, for example, if you forget the ID of a template you created.Â
Response
Zephyr will reply with an array that has information about templates existing in your Zephyr instance. This array includes both pre-configured and custom templates:Â
[
{
"id": 1,
"name": "Selenium",
"jsonTemplate": "[{
...
}]",
"isDeleted": false,
"isDefault": false,
"isSbAutomationTool": false,
"createdBy": 1,
},
{
"id": 2,
"name": "UFT",
"jsonTemplate": "[{
...
}]",
"isDeleted": false,
"isDefault": false,
"isSbAutomationTool": false,
"createdBy": 1,
},
... ,
{
"id": 101,
"name": "My custom parser",
"jsonTemplate": "[{
...
}]",
"isDeleted": false,
"isDefault": false,
"isSbAutomationTool": false,
"createdBy": 1,
},
...
]
Here --
id
 – An identifier that Zephyr assigned to the template.
Note: Identifiers of pre-configured templates are less than100
. Identifiers of user-defined templates start from101
.ÂjsonTemplate
 – The template contents (see Parser Template Syntax).ÂisDeleted
 – Indicates whether the template has been deleted or not.ÂisDefault
 –Âtrue
 if a template is a pre-configured request, orÂfalse
 if it is a user-defined request. ÂisSbAutomationTool
 – Reserved for internal use.ÂcreatedBy
 – The ID of the user who created the template.Â
See Also
Create, Edit and Delete Parser Templates
Â
Starting Release 8.2, Zephyr Enterprise documentation is moving from its current location on Atlassian to a dedicated, standalone Zephyr Enterprise Documentation page. https://support.smartbear.com/zephyr-enterprise/docs/en/welcome-to-zephyr-enterprise.html