# Fetching License details

### The method use to Fetch License details

```
accuraService.InitSDK(new AccuraScanResultCallBack());
```

### ***Response:***&#x20;

***Success***: JSON Response\
\&#xNAN;***Error***: String

#### Example Function:

```
public partial class MainPage : ContentPage
{
    public MainPage()
    {
        accuraService.InitSDK(new AccuraScanResultCallBack());
    }
}
public class AccuraScanResultCallBack : AccuraServiceCallBack {
    public void InvokeResult(string error, string result) {
        if (error != null) {
            // Error block.
        }
        else {
            //Result from the SDK
        }
    }
}
```
