Skip to main content
GET
/
organization
/
{organizationId}
/
licenses
/
classifications
Get License Classifications
curl --request GET \
  --url https://api.example.com/organization/{organizationId}/licenses/classifications
{
  "success": true,
  "data": {
    "licenses": [
      {
        "spdxId": "MIT",
        "name": "MIT License",
        "defaultCategory": "PERMISSIVE",
        "currentCategory": "PERMISSIVE",
        "isOverridden": false
      },
      {
        "spdxId": "BUSL-1.1",
        "name": "Business Source License 1.1",
        "defaultCategory": "WEAK_COPYLEFT",
        "currentCategory": "STRONG_COPYLEFT",
        "isOverridden": true
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.cybedefend.com/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

organizationId
string
required
The UUID of the organization

Authorization

Requires read permission on the organization.

Response

success
boolean
Whether the request succeeded
data
object
{
  "success": true,
  "data": {
    "licenses": [
      {
        "spdxId": "MIT",
        "name": "MIT License",
        "defaultCategory": "PERMISSIVE",
        "currentCategory": "PERMISSIVE",
        "isOverridden": false
      },
      {
        "spdxId": "BUSL-1.1",
        "name": "Business Source License 1.1",
        "defaultCategory": "WEAK_COPYLEFT",
        "currentCategory": "STRONG_COPYLEFT",
        "isOverridden": true
      }
    ]
  }
}