in src/common/backend/FWoABackend.ts [26:37]
async read(resourceType: string, id: string): Promise<ApiResponse> {
try {
const response = await this.client.get(`/${resourceType}/${id}`);
return {
statusCode: response.status,
headers: response.headers,
body: response.data,
};
} catch (e: any) {
return this.handleError(e);
}
}