For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Discord
DocsAPI Reference
DocsAPI Reference
  • Projects
    • GETList projects
    • POSTCreate a project
    • GETGet a project
    • DELDelete a project
    • PATCHUpdate a project
    • POSTTrigger a dynamic pull request run
    • GETList project credentials
    • POSTCreate a project credential
    • GETList project memories
    • POSTCreate a project memory
    • DELDelete a project memory
    • GETList project files
    • GETList project mobile apps
    • POSTUpload a project mobile app
    • DELDelete a project mobile app
    • POSTInitiate a project mobile app upload
    • POSTConfirm a project mobile app upload
  • Tests
    • GETList tests
    • POSTCreate a test
    • GETGet a test
    • DELDelete a test
    • PATCHUpdate a test
    • POSTTrigger a test run
  • Groups
    • GETList test groups
    • POSTCreate a test group
    • GETGet a test group
    • DELDelete a test group
    • PATCHUpdate a test group
    • POSTAdd a test to a group
    • DELRemove a test from a group
    • POSTTrigger a test group run
  • Webhooks
    • POSTTrigger a project webhook
    • POSTTrigger a group webhook
  • Test Runs
    • GETList test runs
    • GETGet test run status
    • POSTCancel a queued or running run
LogoLogo
Discord
Tests

List tests

||View as Markdown|
GET
https://tester.army/api/v1/tests
GET
/api/v1/tests
$curl -G https://tester.army/api/v1/tests \
> -H "Authorization: Bearer <token>" \
> -d projectId=projectId
1{
2 "projectUrl": "string",
3 "projectName": "string",
4 "tests": [
5 {
6 "id": "string",
7 "title": "string",
8 "steps": [
9 {
10 "title": "string",
11 "type": "act"
12 }
13 ],
14 "description": "string",
15 "enabled": true,
16 "platform": "web",
17 "projectId": "string",
18 "projectUrl": "string",
19 "projectName": "string",
20 "createdAt": "2024-01-15T09:30:00Z",
21 "updatedAt": "2024-01-15T09:30:00Z"
22 }
23 ],
24 "nextCursor": "string"
25}

List tests for a project, optionally scoped to a test group. Use cursor for pagination; the response includes nextCursor when more pages exist.

Was this page helpful?
Previous

Confirm a project mobile app upload

Next

Create a test

Built with

Authentication

AuthorizationBearer
API key authentication using Bearer token format

Query parameters

projectIdstringRequired
Project ID
groupIdstringOptionalformat: "uuid"
Optional test group ID
limitstringOptional

Max results per page (default 50, max 100)

cursorstringOptional
Cursor for pagination

Response

List of tests
projectUrlstring or nullformat: "uri"
projectNamestring
testslist of objects
nextCursorstring or null

Errors

400
Bad Request Error
401
Unauthorized Error
429
Too Many Requests Error
500
Internal Server Error
504
Gateway Timeout Error