Each rest entity is exposed as it's own javascript module. It contains all api calls and types exposed by the entity service. They can be imported from @qlik/api
as a sub module of the package like /spaces
in the example below. These modules both has named exports and a default export. Types are always named exports.
import spaces, { type Spaces } from "@qlik/api/spaces";
await { data: mySpaces } = await spaces.getSpaces();
// mySpaces now has the type Spaces
Each module can also be imported directly from @qlik/api
.
import { spaces, users } from "@qlik/api";
These modules are the default exports from each respective sub module. The types from the sub modules are not exposed here since they would introduce name conflicts. The types need to be imported from the respective sub modules.
Info about these entities and their api's can be found here.
The http calls uses the native fetch api. Each http call with a response status in the 200 range will resolve to an object with structure { status, headers, data }
. If status is in the >=300 range an error will be thrown.
import { getSpaces } from "@qlik/api/spaces";
try {
const { status, headers, data: spaces } = await getSpaces();
// status < 300
if (spaces.data) {
// the spaces list is returned as "data"
// There are spaces
}
} catch (e) {
// status >= 300
// something went wrong
}
Every http response that has a status over 300 is considered to be an error and the promise is rejected. To handle this in typescript you can do the following:
import { deleteExtension, type DeleteExtensionHttpError } from "@qlik/qmfe/extensions";
try {
const { status } = await deleteExtension("<extension-id>");
...
} catch (e as DeleteExtensionHttpError) {
if (e.status === 404) {
// DeleteEndpoint404HttpError
e.data // < -- body of error
}
}
Every GET request is cached so that subsequent calls to the same api will resolve immediately from the cache. Read more about caching here.
Interceptors can be added to allow custom functionality to happen before or after an api call. They run globally always on every request. The format is:
// the interceptor format
const interceptor = async (request, proceed) => {
// do things before the request
const result = await proceed(request);
// do things after the request
return result;
};
Warning
Use Interceptors with caution. They affect every request made by the library and can introduce strange side effects that are hard to discover and debug.
import { addInterceptor, removeInterceptor } from "@qlik/api/interceptors";
// add a logging interceptor, which logs all requests, responses and errors
addInterceptor(async (request, proceed) => {
try {
console.log("-->", request.method, request.pathTemplate, request.pathVariables, request.query, request.body);
const result = await proceed(request);
console.log("<--", result.data);
return result;
} catch (err) {
console.log("<-*", err);
throw err;
}
});
// add additional header to a request
const headerInterceptor = addInterceptor(async (request, proceed) => {
// make sure headers object exists
(request.options = request.options || {}).headers = request.options.headers || {};
request.options.headers["x-another-header"] = "foobarvalue";
return proceed(request);
});
// remove an interceptor
removeInterceptor(headerInterceptor);