The base URL for the API requests. This endpoint serves as the root URL for constructing all subsequent API calls.
Makes an HTTP GET request to the specified path with optional query parameters.
The endpoint path for the GET request.
Optional
params: HttpParamsOptional query parameters to include in the request.
A promise that resolves to the response of the GET request.
Sends an HTTP request using the specified method, path, and optional parameters.
The HTTP method to be used for the request (e.g., 'GET', 'POST').
The endpoint path for the HTTP request.
Optional
params: HttpParamsOptional parameters to include in the HTTP request.
A promise that resolves with the response of the HTTP request.
Sends a POST request to the specified path with the given parameters.
The endpoint to which the POST request is sent.
Optional
params: HttpParamsOptional parameters to be included in the POST request body.
Interface representing an HTTP client.
The HttpClient interface provides methods for making HTTP requests