def getAccount()

in src/main/scala/ZuoraService.scala [196:202]


  def getAccount(accountId: String): String \/ Account = {
    logger.info(s"Getting account info from Zuora for Account Id: $accountId")
    val request = buildRequest(config, s"object/account/$accountId").get().build()
    val call = restClient.newCall(request)
    val response = call.execute
    convertResponseToCaseClass[Account](accountId, response)
  }