Skip to main content
All CollectionsAPI
Get task template groups
Get task template groups
e
Written by eLogii
Updated over a week ago

To view all task templates created on eLogii use the request and endpoint GET/task-templates-groups. This will return all task templates created as well as details such as the creation date, template name, UID and ID

Request:

Sample response:

[
{
"_id": "65f0e14a5b61d1812d24a742",
"organization": "6470000000000000000",
"path": "6470000000000000000",
"name": "Temp1",
"flags": {
"keepAssignment": true,
"reoptimizeOnAssign": true
},
"schedule": [],
"state": 1,
"items": [
"65f0e14a5b61d1812d24a746"
],
"uid": "TTG-74KVPLQO",
"createdAt": "2024-03-12T23:12:10.632Z",
"updatedAt": "2024-03-12T23:12:10.662Z",
"__v": 0
},
{
"_id": "65fc964304590e2dc5d5f882",
"organization": "6470000000000000000",
"path": "6470000000000000000",
"name": "TemplateA",
"flags": {
"keepAssignment": false,
"reoptimizeOnAssign": true
},
"schedule": [],
"state": 1,
"items": [
"65fc964304590e2dc5d5f887"
],
"uid": "TTG-KUYTC7VZ",
"createdAt": "2024-03-21T20:19:15.131Z",
"updatedAt": "2024-03-21T20:19:15.183Z",
"__v": 0
}
]

You can also find more information on task template groups in our API documentation here.

Did this answer your question?