-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
105 lines (105 loc) · 6.65 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<!-- for GA tracking-->
<meta name="ippcat" content="GitHub" />
<meta name="description" content="">
<meta name="author" content="">
<title>Intuit Developer @ Github</title>
<link href="../css/bootstrap.min.css" rel="stylesheet">
<link rel="shortcut icon" href="../assets/img/favicon.ico" />
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<link href="../assets/css/ie10-viewport-bug-workaround.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="../css/justified-nav.css" rel="stylesheet">
<!-- Just for debugging purposes. Don't actually copy these 2 lines! -->
<!--[if lt IE 9]><script src="../../assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
<script src="../assets/js/ie-emulation-modes-warning.js"></script>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<div class="container">
<!-- The justified navigation menu is meant for single line per list item.
Multiple lines will require custom code not provided by Bootstrap. -->
<div class="masthead">
<h3 id="titlehead" >Intuit Developer<a id="githublink" href="http://github.com/intuitdeveloper">Intuit Developer Github</a></br>
</h3>
</div>
<hr>
<!-- Jumbotron -->
<div class="jumbotron">
<h3>Welcome to the StartupSD HackNight!</h3>
<p class="lead">Here you will find useful information and sample code to build an integration with QuickBooks Online.</p>
</div>
<hr>
<h4>The Challenge</h4>
<p class="lead">Create a solution that enables a small business to gain insight into their best-selling products by syncing Invoice data from QuickBooks Online onto your platform</p>
<hr>
<div class="card pin col-sm-5 col-md-4 col-lg-4" id="div-get-started" style="height: 244px;">
<a href="https://developer.intuit.com/app/developer/qbo/docs/get-started" target="_blank">
<h5>Getting Started</h5>
</a>
<p>Use the steps below to get started with QuickBooks API</p>
<ul class="list">
<li>Create a <a href="https://developer.intuit.com" target="_blank">developer account</a></li>
<li>Create an <a href="https://developer.intuit.com/app/developer/qbo/docs/get-started" target="_blank">app</a></li>
<li>Generate OAuth tokens using <a href="https://developer.intuit.com/app/developer/playground" target="_blank">playground</a></li>
<li>Set up authorization <a href="https://developer.intuit.com/app/developer/qbo/docs/develop/authentication-and-authorization" target="_blank">using oAuth2.0</a></li>
</ul>
</br>
</div>
<div class="card pin col-sm-5 col-md-4 col-lg-4" id="div-tools" style="height: 244px;" >
<a href="https://developer.intuit.com/app/developer/qbo/docs/develop" target="_blank">
<h5>Tools</h5>
</a>
<p>Use the tools below to get started with QuickBooks API</p>
<ul class="list">
<li>Explore API using <a href="https://developer.intuit.com/app/developer/qbo/docs/api/accounting/most-commonly-used/account" target="_blank">API explorer</a></li>
<li>Use <a href="https://developer.intuit.com/app/developer/qbo/docs/develop/sandboxes/manage-your-sandboxes" target="_blank">sandbox</a> for development</li>
<li>Download <a href="https://github.com/intuitdeveloper" target="_blank">samples</a></li>
<li>Use <a href="hhttps://developer.intuit.com/app/developer/qbo/docs/develop/sdks-and-samples" target="_blank">SDKs</a> to code faster</li>
<li>Download <a href="https://developer.intuit.com/app/developer/qbo/docs/develop/sandboxes/postman" target="_default">postman collection</a></li>
</ul>
</br>
</div>
<div class="card pin col-sm-5 col-md-4 col-lg-4" id="div-invoicing" style="height: 244px;">
<a href="https://developer.intuit.com/app/developer/qbo/docs/workflows/create-an-invoice" target="_blank">
<h5>Invoicing</h5>
</a>
<p>Use the steps below to understand the "Invoicing" concept and build an app around it</p>
<ul class="list">
<li>Understand <a href="https://developer.intuit.com/app/developer/qbo/docs/learn/learn-basic-bookkeeping/invoicing" target="_blank">the concept of Invoicing in Quickbooks Online</a></li>
<li>Learn <a href="https://developer.intuit.com/app/developer/qbo/docs/workflows/create-an-invoice" target="_blank">how to implement invoicing via API</a></li>
<li>Check out the <a href="https://developer.intuit.com/docs/api/accounting/invoice" target="_blank">Invoice API Reference</a></li>
<li>Use the invoice sample <a href="https://github.com/IntuitDeveloper/QBOConceptsTutorial-DotNet/blob/master/MvcCodeFlowClientManual/Controllers/InvoicingController.cs" target="_blank">DotNet</a> - <a href="https://github.com/IntuitDeveloper/QBOConceptsTutorial-Java/blob/master/src/main/java/com/intuit/developer/tutorials/controller/InvoiceController.java" target="_blank">Java</a> - <a href="https://github.com/IntuitDeveloper/QBOConceptsTutorial-PHP/blob/master/InvoiceAndBilling.php" target="_blank">PHP</a> to build an app</li>
</ul>
</br></br></br></br></br>
</div>
</div>
<!-- /container -->
<!-- Site footer -->
<footer class="footer">
<nav class="footer-navigation">
<p class="copyright">© 2025 Intuit, Inc. All rights reserved. Intuit and QuickBooks are registered trademarks of Intuit Inc. </p>
</nav>
</footer>
<script>
function myFunction() {
var x = document.getElementById("myDIV");
if (x.style.display === "none") {
x.style.display = "block";
} else {
x.style.display = "none";
}
}
</body>
</html>