Groups
Managing test groups
Returns many groups.
Token-based authentication with required prefix "Token"
A page number within the paginated result set.
Number of results to return per page.
Search in names with the following query
123http://api.example.org/accounts/?page=4http://api.example.org/accounts/?page=2Authentication credentials were missing or invalid.
GET /api/v2/groups/ HTTP/1.1
Authorization: YOUR_API_KEY
Accept: */*
{
"count": 123,
"next": "http://api.example.org/accounts/?page=4",
"previous": "http://api.example.org/accounts/?page=2",
"results": [
{
"id": "text",
"originGroupId": "123e4567-e89b-12d3-a456-426614174000",
"name": null,
"isComponent": true,
"folderId": null,
"steps": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"type": "text",
"name": null,
"blockId": null,
"groupId": null,
"originGroupId": "text",
"notes": null,
"isActive": true,
"runTimeout": null,
"sleep": null,
"waitingConditions": [
{
"type": "documentComplete",
"expected": null,
"isActive": true,
"timeout": null
}
],
"value": "text"
}
]
}
]
}Create a new group.
Token-based authentication with required prefix "Token"
Request body failed validation.
Authentication credentials were missing or invalid.
POST /api/v2/groups/ HTTP/1.1
Authorization: YOUR_API_KEY
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 92
"name=null&isActive=true&isComponent=true&folderId=null&testId='text'&atIndex=1"{
"id": "text",
"originGroupId": "123e4567-e89b-12d3-a456-426614174000",
"name": null,
"isComponent": true,
"folderId": null,
"steps": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"type": "text",
"name": null,
"blockId": null,
"groupId": null,
"originGroupId": "text",
"notes": null,
"isActive": true,
"runTimeout": null,
"sleep": null,
"waitingConditions": [
{
"type": "documentComplete",
"expected": null,
"isActive": true,
"timeout": null
}
],
"value": "text"
}
]
}Returns a single group.
Token-based authentication with required prefix "Token"
A UUID string identifying this group.
Authentication credentials were missing or invalid.
Resource not found.
GET /api/v2/groups/{id}/ HTTP/1.1
Authorization: YOUR_API_KEY
Accept: */*
{
"id": "text",
"originGroupId": "123e4567-e89b-12d3-a456-426614174000",
"name": null,
"isComponent": true,
"folderId": null,
"steps": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"type": "text",
"name": null,
"blockId": null,
"groupId": null,
"originGroupId": "text",
"notes": null,
"isActive": true,
"runTimeout": null,
"sleep": null,
"waitingConditions": [
{
"type": "documentComplete",
"expected": null,
"isActive": true,
"timeout": null
}
],
"value": "text"
}
]
}Update a group.
Token-based authentication with required prefix "Token"
A UUID string identifying this group.
Request body failed validation.
Authentication credentials were missing or invalid.
Resource not found.
PUT /api/v2/groups/{id}/ HTTP/1.1
Authorization: YOUR_API_KEY
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 64
"name=null&isActive=true&isComponent=true&folderId=null"{
"id": "text",
"originGroupId": "123e4567-e89b-12d3-a456-426614174000",
"name": null,
"isComponent": true,
"folderId": null,
"steps": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"type": "text",
"name": null,
"blockId": null,
"groupId": null,
"originGroupId": "text",
"notes": null,
"isActive": true,
"runTimeout": null,
"sleep": null,
"waitingConditions": [
{
"type": "documentComplete",
"expected": null,
"isActive": true,
"timeout": null
}
],
"value": "text"
}
]
}Remove a group.
Token-based authentication with required prefix "Token"
A UUID string identifying this group.
No response body
No content
Authentication credentials were missing or invalid.
Resource not found.
DELETE /api/v2/groups/{id}/ HTTP/1.1
Authorization: YOUR_API_KEY
Accept: */*
No content
Partially update a group.
Token-based authentication with required prefix "Token"
A UUID string identifying this group.
Request body failed validation.
Authentication credentials were missing or invalid.
Resource not found.
PATCH /api/v2/groups/{id}/ HTTP/1.1
Authorization: YOUR_API_KEY
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 64
"name=null&isActive=true&isComponent=true&folderId=null"{
"id": "text",
"originGroupId": "123e4567-e89b-12d3-a456-426614174000",
"name": null,
"isComponent": true,
"folderId": null,
"steps": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"type": "text",
"name": null,
"blockId": null,
"groupId": null,
"originGroupId": "text",
"notes": null,
"isActive": true,
"runTimeout": null,
"sleep": null,
"waitingConditions": [
{
"type": "documentComplete",
"expected": null,
"isActive": true,
"timeout": null
}
],
"value": "text"
}
]
}Last updated
Was this helpful?
