# Get all licenses Endpoint: GET /license Version: 5.1.47 Security: api_key ## Query parameters: - `jdbc_driver_id` (integer) The JDBC driver Id to get the license - `page_number` (integer) The page number for which to get licences. This will default to the first page if excluded - `page_size` (integer) The maximum number of objects to return. This will default to the DefaultApiPageSize setting property if not provided ## Response 200 fields (application/json): - `_pageInfo` (object) - `_pageInfo.numberOnPage` (integer) The number of items on this page. This should always match the page size unless it is the last page. - `_pageInfo.total` (integer) The total number of items - `responseList` (array) Example: [{"licenseId":"3","licenseFileName":"license.bin","licenseType":"JDBC_DRIVER","jdbcDriverId":"1","createdTime":"2023-03-15T12:16:35.964Z"}] - `responseList.licenseId` (integer) The ID number of the license. This field is auto-generated by the Masking Engine. Example: "3" - `responseList.licenseFileName` (string) The name of the license, as inferred from the uploaded file. Example: "license.bin" - `responseList.licenseType` (string) The type of file that this license describes. Enum: "JDBC_DRIVER" - `responseList.jdbcDriverId` (integer) The ID number of the JDBC driver. Example: "1" - `responseList.createdTime` (string) The time when the license was added. This field is auto-generated by the Masking Engine. Example: "2023-03-15T12:16:35.964Z" ## Response 403 fields