Skip to main content
GET
/
team
/
{teamId}
/
projects
Get all projects of a team with pagination
curl --request GET \
  --url https://us.cybedefend.com/team/{teamId}/projects \
  --header 'Authorization: Bearer <token>'
{
  "projects": [
    {
      "projectId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "teamId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "teamName": "<string>",
      "name": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "applicationType": "web_application",
      "analysisFrequency": "weekly",
      "emailAlertEnabled": true,
      "monthlyReportEnabled": true,
      "weeklyReportEnabled": true,
      "sastEnabled": true,
      "dastEnabled": true,
      "scaEnabled": true,
      "containerEnabled": true,
      "apiEnabled": true,
      "iacEnabled": true,
      "sastFastScanEnabled": true,
      "sastSeverities": [
        "critical"
      ],
      "scaSeverities": [
        "critical"
      ],
      "iacSeverities": [
        "critical"
      ],
      "incidentCreationOption": "<string>",
      "aiMergeRequestEnabled": true,
      "improvingResultsEnabled": true,
      "sortsVulnerabilitiesEnabled": true,
      "scaTransitiveDependenciesEnabled": true,
      "scaDevelopmentDependenciesEnabled": true,
      "agentCategoriesSast": [
        "<string>"
      ],
      "agentCategoriesIac": [
        "<string>"
      ]
    }
  ],
  "totalProjects": 123,
  "totalPages": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

teamId
string<uuid>
required

Team ID

Query Parameters

page
number

Page number

Required range: x >= 1
Example:

1

pageSize
number

Page size

Required range: 1 <= x <= 20
Example:

10

Search query

Example:

"my-project"

Response

Projects found successfully

projects
object[]
required

List of projects

totalProjects
number
required

Total number of projects

totalPages
number
required

Total number of pages