Vendors

Get all vendors

Returns all vendors for the authenticated organization. Supports both API key authentication (X-API-Key header) and session authentication (Bearer token or cookies).

get/v1/vendors

Response

Vendors retrieved successfully

countnumber

Total number of vendors

authType'api-key' | 'session'

How the request was authenticated

Example response

{
  "data": [
    {
      "id": "vnd_abc123def456",
      "name": "CloudTech Solutions Inc.",
      "description": "Cloud infrastructure provider offering AWS-like services",
      "category": "cloud",
      "status": "not_assessed",
      "inherentProbability": "possible",
      "inherentImpact": "moderate",
      "residualProbability": "unlikely",
      "residualImpact": "minor",
      "website": "https://www.cloudtechsolutions.com",
      "assigneeId": "mem_abc123def456"
    }
  ],
  "count": 12,
  "authenticatedUser": {
    "id": "usr_def456ghi789",
    "email": "user@example.com"
  }
}

Changes