# Get all JDBC drivers Endpoint: GET /jdbc-drivers Version: 5.1.43 Security: api_key ## Query parameters: - `is_built_in` (boolean) Get only drivers that are built in to the engine when this is true and only user uploaded drivers when this is false - `page_number` (integer) The page number for which to get JDBC drivers. 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 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: [{"driverName":"HANA driver","driverClassName":"com.sap.db.jdbc.Driver","fileReferenceId":"delphix-file://upload/f_08bb469a2ddc407bb97a31e96ed0a76a/foo.bar"}] - `responseList.jdbcDriverId` (integer) The ID number of the driver. This field is auto-generated by the Masking Engine. - `responseList.driverName` (string, required) The name of the driver. Example: "HANA driver" - `responseList.driverClassName` (string, required) The name of the class to use. Example: "com.sap.db.jdbc.Driver" - `responseList.description` (string) A description of the driver. - `responseList.version` (string) The version of the driver. - `responseList.uploadedBy` (string) The name of the user that uploaded the driver - `responseList.uploadDate` (string) The date the driver was updated. - `responseList.checksum` (string) The md5 checksum of the uploaded driver. - `responseList.builtIn` (boolean) Whether this is a JDBC driver that is supported natively by the engine. - `responseList.loggerInstalled` (boolean) Whether a logger is successfully installed. - `responseList.fileReferenceId` (string) The file references ID of the uploaded zip file Example: "delphix-file://upload/f_08bb469a2ddc407bb97a31e96ed0a76a/foo.bar" - `responseList.driverSupportId` (integer) The ID of the Driver Support plugin to use for this JDBC Driver. ## Response 403 fields