Get automation types
GET
/test_cases/automation_types
Base URL
https://test-management.testsigma.com/api/v1
Retrieves the list of automation types available in the test case management system.
Authenticate with your API key as a
Bearer token in the
Authorization header. Generate a key →RESPONSE ATTRIBUTES
message | Status message for the request; may be empty. |
data.automation_types[].id | Unique identifier for the automation type. |
data.automation_types[].name | Name of the automation type. |
data.automation_types[].order | Numerical value indicating the display order of the automation type. |
data.automation_types[].alias | Alternative name or identifier for the automation type. |
data.automation_types[].icon_url | URL pointing to an icon representing the automation type. |
page_info.page_size | Number of items returned per page. |
page_info.total_count | Total number of automation types available. |
page_info.next | URL for the next page of results, if applicable. |
page_info.prev | URL for the previous page of results, if applicable. |
REQUEST
curl -X GET \
'https://test-management.testsigma.com/api/v1/test_cases/automation_types' \
-H 'Authorization: Bearer <API_KEY>' \
-H 'Content-Type: application/json'const response = await fetch('https://test-management.testsigma.com/api/v1/test_cases/automation_types', {
method: 'GET',
headers: {
'Authorization': 'Bearer <API_KEY>',
'Content-Type': 'application/json'
}
});
const data = await response.json();import requests
response = requests.get(
'https://test-management.testsigma.com/api/v1/test_cases/automation_types',
headers={
'Authorization': 'Bearer <API_KEY>',
'Content-Type': 'application/json'
}
)
data = response.json()RESPONSE200OK
{
"message": "",
"data": {
"automation_types": [
{
"id": "a1f3c9d2-6b54-4e87-9a21-0d4e7c2f8b10",
"name": "Web Application",
"order": 1,
"alias": "web",
"icon_url": "https://assets.testsigma.com/icons/automation/web.svg"
},
{
"id": "b8e2d471-3c09-4f16-8d75-2a6b9e1c4f33",
"name": "Mobile Web",
"order": 2,
"alias": "mobile_web",
"icon_url": "https://assets.testsigma.com/icons/automation/mobile-web.svg"
}
]
},
"page_info": {
"page_size": 25,
"total_count": 2,
"next": "",
"prev": ""
}
}