Skip to main content
GET
/
{projectId}
/
manual-tests
/
suites
List manual suites
curl --request GET \
  --url https://api.testdino.com/api/public/v1/{projectId}/manual-tests/suites \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": [
    {
      "_id": "tcm_suite_6641a1b2c3d4e5f6a7b8c9d0",
      "name": "Login Tests",
      "description": "<string>",
      "metadata": {
        "project": "<string>",
        "createdBy": {
          "_id": "<string>",
          "firstName": "<string>",
          "lastName": "<string>",
          "email": "<string>"
        },
        "lastModifiedBy": {
          "_id": "<string>",
          "firstName": "<string>",
          "lastName": "<string>",
          "email": "<string>"
        }
      },
      "hierarchy": {
        "parentSuite": {
          "_id": "<string>",
          "name": "<string>"
        },
        "order": 123,
        "depth": 123
      },
      "childSuitesCount": 123,
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "pagination": {
    "page": 123,
    "limit": 123,
    "total": 123,
    "hasNext": true,
    "hasPrev": true
  }
}

Authorizations

Authorization
string
header
required

Project PAT (tdp_) token with public-api scope

Path Parameters

projectId
string
required

The project identifier (e.g. project_abc123). Must match the project associated with your PAT.

Query Parameters

page
integer
default:1

Page number for paginated results. Starts at 1.

Required range: x >= 1
limit
integer
default:20

Number of items per page (1–100, default 20).

Required range: 1 <= x <= 100
parentSuiteId
string

Filter to children of this suite. Omit for top-level suites.

view
enum<string>
default:flat

View mode: flat (default, paginated list), tree (full nested hierarchy), all (flat list of every suite, no pagination).

Available options:
flat,
tree,
all

Response

Paginated suite list

success
boolean
data
object[]
pagination
object