Skip to content

Commit c8ea446

Browse files
author
github-actions
committed
Update REST API documentation Thu Apr 24 07:38:20 UTC 2025
1 parent c15b226 commit c8ea446

File tree

1 file changed

+52
-0
lines changed

1 file changed

+52
-0
lines changed

restapi.json

+52
Original file line numberDiff line numberDiff line change
@@ -1362,6 +1362,58 @@
13621362
}
13631363
}
13641364
}
1365+
},
1366+
"/templates/{templateId}": {
1367+
"get": {
1368+
"tags": [
1369+
"templates"
1370+
],
1371+
"summary": "Gets a templateI by id.",
1372+
"description": "Returns template by id.",
1373+
"operationId": "f3b8e0890ad48fbb3ef2d95416161aec",
1374+
"parameters": [
1375+
{
1376+
"name": "session",
1377+
"in": "header",
1378+
"description": "Session ID obtained from authentication",
1379+
"required": true,
1380+
"schema": {
1381+
"type": "string"
1382+
}
1383+
},
1384+
{
1385+
"name": "templateId",
1386+
"in": "path",
1387+
"description": "template ID",
1388+
"required": true,
1389+
"schema": {
1390+
"type": "string"
1391+
}
1392+
}
1393+
],
1394+
"responses": {
1395+
"200": {
1396+
"description": "Success",
1397+
"content": {
1398+
"application/json": {
1399+
"schema": {
1400+
"$ref": "#/components/schemas/Template"
1401+
}
1402+
}
1403+
}
1404+
},
1405+
"403": {
1406+
"description": "Failure",
1407+
"content": {
1408+
"application/json": {
1409+
"schema": {
1410+
"$ref": "#/components/schemas/UnauthorizedResponse"
1411+
}
1412+
}
1413+
}
1414+
}
1415+
}
1416+
}
13651417
}
13661418
},
13671419
"components": {

0 commit comments

Comments
 (0)