Skip to main content
GET
/
api
/
org
/
projects
Get Projects
curl --request GET \
  --url https://{host}/api/org/projects \
  --header 'X-API-Token: <api-key>'
{
  "projects": [
    {
      "name": "Example Project",
      "shortcode": "dvpt-abc-example",
      "url": "https://app.dvuln.com/project/dvpt-abc-example/overview",
      "level": "1",
      "commsCount": 1,
      "startDate": {
        "date": "2024-01-01 09:00:00.000000",
        "timezone_type": 3,
        "timezone": "Australia/Sydney"
      },
      "startDateRaw": "01-01-2024",
      "endDate": {
        "date": "2024-01-10 17:00:00.000000",
        "timezone_type": 3,
        "timezone": "Australia/Sydney"
      },
      "endDateRaw": "10-01-2024",
      "reportDeliveryDate": {
        "date": "2024-01-11 17:00:00.000000",
        "timezone_type": 3,
        "timezone": "Australia/Sydney"
      },
      "reportDeliveryDateRaw": "11-01-2024",
      "completionPercentage": 75,
      "status": {
        "ID": "3",
        "name": "Live",
        "description": "Testing is currently in progress."
      },
      "type": {
        "ID": "1",
        "code": "dvpt",
        "name": "Penetration Test",
        "sorting": 123
      },
      "scopeMarkdown": "| Asset | Environment, Version |\r\n| --- | --- |\r\n| [https://example.com](https://example.com/) | Production v1.0.0 |",
      "scopeEditDate": "1st Jan 2024 10:00 AM",
      "scopeEditUser": {
        "displayName": "john-doe",
        "firstName": "John",
        "lastName": "Doe",
        "fullName": "John Doe",
        "profileImgUuid": "a1b2c3d4e5f6g7h8i9j0"
      }
    }
  ],
  "count": 1
}

Authorizations

X-API-Token
string
header
required

API key for authentication

Response

Successful response with list of projects

projects
object[]
count
integer

Total number of projects

Example:

1