Links

About Resource

Get information about the LRS.

getAbout

Gets information about the LRS.

Example

xapi.getAbout().then((result: AxiosResponse<About>) => {
const about: About = result.data;
console.log(about); // {versions: ["1.0.3"]}
});

Parameters

Parameter
Type
Required
Description
useCacheBuster
boolean
false
Enables cache busting.

Returns

This method returns an AxiosPromise with the success data containing an About object.