# execute
abstract suspend fun execute(apiRequest: ApiRequest): MIRACLResult<String, HttpRequestExecutorException>
Executes HTTP requests.
# Return
MIRACLResult<String, HttpRequestExecutorException> which can be either:
- MIRACLSuccess with value of type String (the response of the executed request)
- MIRACLError with value of type HttpRequestExecutorException.
# Parameters
apiRequest | provides the required information for processing the HTTP request. |