investfly.api.RestApiClient

class RestApiClient:

Internal class to make REST API requests. Users of the SDK do not use this class directly. Please use investfly.api.InvestflyApiClient` instead

RestApiClient(baseUrl: str)
headers: Dict[str, str]
baseUrl
log
def login( self, username: str, password: str) -> investfly.models.CommonModels.Session:
def logout(self):
def doGet(self, url: str) -> Any:
def doPost(self, url: str, obj: Dict[str, Any]) -> Any:
def doPostCode(self, url: str, code: str) -> Any:
@staticmethod
def getException(res: requests.models.Response):