# Get Libraries Count Per License

Returns the total number of libraries for a given organization, along with a breakdown of the number of libraries per license.

Endpoint: GET /api/v2.0/orgs/{orgToken}/summary/libraryCountPerLicense
Version: 2.0
Security: bearer-key

## Query parameters:

  - `pageSize` (string)
    Enter the number of items to return in each page of the result.

  - `page` (string)
    Enter the page number to display in the result. Page numbers start at 0

## Path parameters:

  - `orgToken` (string, required)
    org UUID (by running Entities - Organization > Get User Organizations) or API Key (from the Mend SCA App: Integrate tab > API Key).

## Response 200 fields (application/json):

  - `supportToken` (string)
    Example: "1171c60d"

  - `retVal` (object)

  - `retVal.totalLibraryCount` (integer)

  - `retVal.licenses` (array)

  - `retVal.licenses.licenseUuid` (string)
    Example: "123e4567-e89b-12d3-a456-426655440000"

  - `retVal.licenses.name` (string)
    Example: "MIT"

  - `retVal.licenses.spdxName` (string)
    Example: "MIT"

  - `retVal.licenses.numberOfLibraries` (integer)
    Example: 100

## Response 400 fields (*/*):

  - `supportToken` (string)
    Example: "1171c60d"

## Response 403 fields (*/*):

  - `supportToken` (string)
    Example: "1171c60d"


