> For the complete documentation index, see [llms.txt](https://docs.accurascan.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.accurascan.com/language/cordova/functions/fetching-details-from-license.md).

# Fetching Details From License

### The method use to fetch the details from the license is

```
accura.getMetadata(function (results), function (error))
```

### ***Response:***

**Success:** JSON Response = {countries: Array\[\<CountryModels>],barcodes: Array\[],\
isValid: boolean, isOCREnable: boolean ,isBarcode: boolean, isBankCard: boolean, isMRZ: boolean}

**Error:** String

#### Example Function:-

```
function getMetadata() {
     accura.getMetadata(function (results) {
         if (results.isValid) {
            //Here you will get json string from SDK with all 
                available functions activated on your license.
         } else {
             alert('Licence is not Loaded');
         }
     }, function (error) {
         alert(error);
     })
}
```
