wave-api 0.1.0

Typed Rust client for the Wave Accounting GraphQL API
Documentation
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
# API Reference

**Note:**
Not every object is directly accessible via the root Query type. In particular, objects whose content vary
per each Business are usually accessed by nesting inside a Query on Business. For example,
[List Customers](360032908311) is available through the Business object's customers field.

# Schema Types

**Table of Contents**

* [Query]#query
* [Mutation]#mutation
* [Objects]#objects
  + [Account]#account
  + [AccountArchiveOutput]#accountarchiveoutput
  + [AccountConnection]#accountconnection
  + [AccountCreateOutput]#accountcreateoutput
  + [AccountEdge]#accountedge
  + [AccountPatchOutput]#accountpatchoutput
  + [AccountSubtype]#accountsubtype
  + [AccountType]#accounttype
  + [Address]#address
  + [Business]#business
  + [BusinessConnection]#businessconnection
  + [BusinessEdge]#businessedge
  + [BusinessSubtype]#businesssubtype
  + [BusinessType]#businesstype
  + [Country]#country
  + [Currency]#currency
  + [Customer]#customer
  + [CustomerConnection]#customerconnection
  + [CustomerCreateOutput]#customercreateoutput
  + [CustomerDeleteOutput]#customerdeleteoutput
  + [CustomerEdge]#customeredge
  + [CustomerPatchOutput]#customerpatchoutput
  + [CustomerShippingDetails]#customershippingdetails
  + [Estimate]#estimate
  + [FixedInvoiceDiscount]#fixedinvoicediscount
  + [GeneralSettings]#generalsettings
  + [InputError]#inputerror
  + [Invoice]#invoice
  + [InvoiceApproveOutput]#invoiceapproveoutput
  + [InvoiceCloneOutput]#invoicecloneoutput
  + [InvoiceConnection]#invoiceconnection
  + [InvoiceCreateOutput]#invoicecreateoutput
  + [InvoiceDeleteOutput]#invoicedeleteoutput
  + [InvoiceEdge]#invoiceedge
  + [InvoiceEstimateSettings]#invoiceestimatesettings
  + [InvoiceItem]#invoiceitem
  + [InvoiceItemTax]#invoiceitemtax
  + [InvoiceMarkSentOutput]#invoicemarksentoutput
  + [InvoicePatchOutput]#invoicepatchoutput
  + [InvoiceSendOutput]#invoicesendoutput
  + [Money]#money
  + [MoneyDepositTransactionCreateOutput]#moneydeposittransactioncreateoutput
  + [MoneyTransactionCreateOutput]#moneytransactioncreateoutput
  + [MoneyTransactionsCreateOutput]#moneytransactionscreateoutput
  + [NewEstimate]#newestimate
  + [OAuthApplication]#oauthapplication
  + [OffsetPageInfo]#offsetpageinfo
  + [PercentageInvoiceDiscount]#percentageinvoicediscount
  + [Product]#product
  + [ProductArchiveOutput]#productarchiveoutput
  + [ProductConnection]#productconnection
  + [ProductCreateOutput]#productcreateoutput
  + [ProductEdge]#productedge
  + [ProductPatchOutput]#productpatchoutput
  + [Province]#province
  + [RecurringInvoice]#recurringinvoice
  + [SalesTax]#salestax
  + [SalesTaxArchiveOutput]#salestaxarchiveoutput
  + [SalesTaxConnection]#salestaxconnection
  + [SalesTaxCreateOutput]#salestaxcreateoutput
  + [SalesTaxEdge]#salestaxedge
  + [SalesTaxPatchOutput]#salestaxpatchoutput
  + [SalesTaxRate]#salestaxrate
  + [Transaction]#transaction
  + [User]#user
  + [Vendor]#vendor
  + [VendorConnection]#vendorconnection
  + [VendorEdge]#vendoredge
  + [VendorShippingDetails]#vendorshippingdetails
* [Inputs]#inputs
  + [AccountArchiveInput]#accountarchiveinput
  + [AccountCreateInput]#accountcreateinput
  + [AccountCreateRestrictions]#accountcreaterestrictions
  + [AccountPatchInput]#accountpatchinput
  + [AddressInput]#addressinput
  + [CustomerCreateInput]#customercreateinput
  + [CustomerDeleteInput]#customerdeleteinput
  + [CustomerPatchInput]#customerpatchinput
  + [CustomerPatchShippingDetailsInput]#customerpatchshippingdetailsinput
  + [CustomerShippingDetailsInput]#customershippingdetailsinput
  + [InvoiceApproveInput]#invoiceapproveinput
  + [InvoiceCloneInput]#invoicecloneinput
  + [InvoiceCreateInput]#invoicecreateinput
  + [InvoiceCreateItemInput]#invoicecreateiteminput
  + [InvoiceCreateItemTaxInput]#invoicecreateitemtaxinput
  + [InvoiceDeleteInput]#invoicedeleteinput
  + [InvoiceDiscountInput]#invoicediscountinput
  + [InvoiceMarkSentInput]#invoicemarksentinput
  + [InvoicePatchInput]#invoicepatchinput
  + [InvoiceSendInput]#invoicesendinput
  + [MoneyDepositTransactionCreateDepositInput]#moneydeposittransactioncreatedepositinput
  + [MoneyDepositTransactionCreateFeeInput]#moneydeposittransactioncreatefeeinput
  + [MoneyDepositTransactionCreateInput]#moneydeposittransactioncreateinput
  + [MoneyDepositTransactionCreateLineItemInput]#moneydeposittransactioncreatelineiteminput
  + [MoneyTransactionCreateAnchorInput]#moneytransactioncreateanchorinput
  + [MoneyTransactionCreateInput]#moneytransactioncreateinput
  + [MoneyTransactionCreateLineItemInput]#moneytransactioncreatelineiteminput
  + [MoneyTransactionCreateSalesTaxInput]#moneytransactioncreatesalestaxinput
  + [MoneyTransactionDetails]#moneytransactiondetails
  + [MoneyTransactionsCreateInput]#moneytransactionscreateinput
  + [ProductArchiveInput]#productarchiveinput
  + [ProductCreateInput]#productcreateinput
  + [ProductPatchInput]#productpatchinput
  + [SalesTaxArchiveInput]#salestaxarchiveinput
  + [SalesTaxCreateInput]#salestaxcreateinput
  + [SalesTaxPatchInput]#salestaxpatchinput
  + [SalesTaxRateInput]#salestaxrateinput
  + [TransactionCreateSalesTaxInput]#transactioncreatesalestaxinput
* [Enums]#enums
  + [AccountNormalBalanceType]#accountnormalbalancetype
  + [AccountSubtypeValue]#accountsubtypevalue
  + [AccountTypeValue]#accounttypevalue
  + [BalanceType]#balancetype
  + [BusinessSubtypeValue]#businesssubtypevalue
  + [BusinessTypeValue]#businesstypevalue
  + [CountryCode]#countrycode
  + [CurrencyCode]#currencycode
  + [CustomerSort]#customersort
  + [InvoiceCreateStatus]#invoicecreatestatus
  + [InvoiceDiscountType]#invoicediscounttype
  + [InvoiceSendMethod]#invoicesendmethod
  + [InvoiceSort]#invoicesort
  + [InvoiceStatus]#invoicestatus
  + [OrganizationalType]#organizationaltype
  + [ProductSort]#productsort
  + [Schema]#schema
  + [TransactionDirection]#transactiondirection
  + [TransactionOrigin]#transactionorigin
* [Scalars]#scalars
  + [Boolean]#boolean
  + [Date]#date
  + [DateTime]#datetime
  + [Decimal]#decimal
  + [Float]#float
  + [HexColorCode]#hexcolorcode
  + [ID]#id
  + [Int]#int
  + [JSON]#json
  + [String]#string
  + [URL]#url
* [Interfaces]#interfaces
  + [BusinessNode]#businessnode
  + [InvoiceDiscount]#invoicediscount
  + [Node]#node
* [Unions]#unions
  + [InvoiceSource]#invoicesource

## Query

The schema’s entry point for queries.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **\_** | | [Boolean]#boolean | No-op placeholder for code generation. |
| **oAuthApplication** | | [OAuthApplication]#oauthapplication | Get the current OAuth application. |
| **currencies** | | [[Currency]#currency!]! | List currencies. |
| **currency** | | [Currency]#currency | Get a currency. |
| code | | [CurrencyCode]#currencycode! | Code of currency. |
| **countries** | | [[Country]#country!]! | List countries. |
| **country** | | [Country]#country | Get a country. |
| code | | [CountryCode]#countrycode! | Code of country. |
| **province** | | [Province]#province | Get a province. |
| code | | [String]#string! | Code of province. |
| **businesses** | | [BusinessConnection]#businessconnection | List businesses. |
| page | | [Int]#int | 1-based page number to retrieve. |
| pageSize | | [Int]#int | Limit on how many items each page should return. |
| isArchived | | [Boolean]#boolean | Filter by archived status. If not provided, excludes archived businesses by default. |
| **business** | | [Business]#business | Get a business. |
| id | | [ID]#id | ID of business. - If defined, it will fetch that business. - If not defined and the access token is restricted to a single business, it will fetch that business. - If not defined and the access token can access multiple businesses, it will fetch the user's default business. To set a default business see https://support.waveapps.com/hc/en-us/articles/208621226. |
| **user** | | [User]#user | The currently authenticated user. |
| **accountTypes** | | [[AccountType]#accounttype!]! | List types of accounts. |
| **accountSubtypes** | | [[AccountSubtype]#accountsubtype!]! | List subtypes of accounts. |

## Mutation

The schema’s entry point for mutations.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **\_** | | [Boolean]#boolean | No-op placeholder for code generation. |
| **customerCreate** | | [CustomerCreateOutput]#customercreateoutput | Create a customer. |
| input | | [CustomerCreateInput]#customercreateinput! |  |
| **customerPatch** | | [CustomerPatchOutput]#customerpatchoutput | Patch a customer. |
| input | | [CustomerPatchInput]#customerpatchinput! |  |
| **customerDelete** | | [CustomerDeleteOutput]#customerdeleteoutput | Delete customer. |
| input | | [CustomerDeleteInput]#customerdeleteinput! |  |
| **accountCreate** | | [AccountCreateOutput]#accountcreateoutput | Create an account. |
| input | | [AccountCreateInput]#accountcreateinput! |  |
| **accountArchive** | | [AccountArchiveOutput]#accountarchiveoutput | Archive an account. |
| input | | [AccountArchiveInput]#accountarchiveinput! |  |
| **accountPatch** | | [AccountPatchOutput]#accountpatchoutput | Patch an account. |
| input | | [AccountPatchInput]#accountpatchinput! |  |
| **salesTaxCreate** | | [SalesTaxCreateOutput]#salestaxcreateoutput! | Create a sales tax. |
| input | | [SalesTaxCreateInput]#salestaxcreateinput! |  |
| **salesTaxPatch** | | [SalesTaxPatchOutput]#salestaxpatchoutput! | Update a sales tax. |
| input | | [SalesTaxPatchInput]#salestaxpatchinput! |  |
| **salesTaxArchive** | | [SalesTaxArchiveOutput]#salestaxarchiveoutput! | Archive a sales tax. |
| input | | [SalesTaxArchiveInput]#salestaxarchiveinput! |  |
| **invoiceCreate** | | [InvoiceCreateOutput]#invoicecreateoutput | Create an invoice. |
| input | | [InvoiceCreateInput]#invoicecreateinput! |  |
| **invoicePatch** | | [InvoicePatchOutput]#invoicepatchoutput | Patch an invoice. |
| input | | [InvoicePatchInput]#invoicepatchinput! |  |
| **invoiceClone** | | [InvoiceCloneOutput]#invoicecloneoutput | Clones an invoice. |
| input | | [InvoiceCloneInput]#invoicecloneinput! |  |
| **invoiceDelete** | | [InvoiceDeleteOutput]#invoicedeleteoutput | Delete an invoice. |
| input | | [InvoiceDeleteInput]#invoicedeleteinput! |  |
| **invoiceSend** | | [InvoiceSendOutput]#invoicesendoutput | Send an invoice. Requires `Business.emailSendEnabled` to be true. |
| input | | [InvoiceSendInput]#invoicesendinput! |  |
| **invoiceApprove** | | [InvoiceApproveOutput]#invoiceapproveoutput | Approve an invoice. |
| input | | [InvoiceApproveInput]#invoiceapproveinput! |  |
| **invoiceMarkSent** | | [InvoiceMarkSentOutput]#invoicemarksentoutput | Mark the invoice as sent. |
| input | | [InvoiceMarkSentInput]#invoicemarksentinput! |  |
| **productCreate** | | [ProductCreateOutput]#productcreateoutput | Create a product. |
| input | | [ProductCreateInput]#productcreateinput! |  |
| **productPatch** | | [ProductPatchOutput]#productpatchoutput | Patch a product. |
| input | | [ProductPatchInput]#productpatchinput! |  |
| **productArchive** | | [ProductArchiveOutput]#productarchiveoutput | Archive a product. |
| input | | [ProductArchiveInput]#productarchiveinput! |  |
| **moneyTransactionCreate** | | [MoneyTransactionCreateOutput]#moneytransactioncreateoutput | \*\*BETA\*\*: Create money transaction. Requires `isClassicAccounting` to be `false`. |
| input | | [MoneyTransactionCreateInput]#moneytransactioncreateinput! |  |
| **moneyTransactionsCreate** | | [MoneyTransactionsCreateOutput]#moneytransactionscreateoutput | \*\*BETA\*\*: Bulk create money transactions. Requires `isClassicAccounting` to be `false`. |
| input | | [MoneyTransactionsCreateInput]#moneytransactionscreateinput! |  |
| **moneyDepositTransactionCreate** ⚠️ | | [MoneyDepositTransactionCreateOutput]#moneydeposittransactioncreateoutput | Create a money transaction. ⚠️ **DEPRECATED**  Not available for public use at this time. |
| input | | [MoneyDepositTransactionCreateInput]#moneydeposittransactioncreateinput! |  |

## Objects

### Account

A unique record for each type of asset, liability, equity, income and expense. Used as part of a Chart of Accounts.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **business** | | [Business]#business! | Business that the account belongs to. |
| **id** | | [ID]#id! | Unique identifier for the account. |
| **classicId** | | [String]#string | The classic primary key used internally at Wave. |
| **name** | | [String]#string! | Name of the account. |
| **description** | | [String]#string | User defined description for the account. |
| **displayId** | | [String]#string | User defined id for the account. |
| **currency** | | [Currency]#currency! | Currency of the account. |
| **type** | | [AccountType]#accounttype! | Account type. |
| **subtype** | | [AccountSubtype]#accountsubtype! | The account subtype classification based on type. |
| **normalBalanceType** | | [AccountNormalBalanceType]#accountnormalbalancetype! | Credit or Debit. |
| **isArchived** | | [Boolean]#boolean! | Indicates whether the account is hidden from view by default. |
| **sequence** | | [Int]#int! | Numerically increasing version, each representing a revision of account data. As soon as something modifies an account, its sequence is incremented. |
| **balance** | | [Decimal]#decimal | The balance of the account as of the current date. |
| **balanceInBusinessCurrency** | | [Decimal]#decimal | The balance of the account as of the current date in the business currency. |

### AccountArchiveOutput

Output of the accountArchive mutation.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **didSucceed** | | [Boolean]#boolean! | Indicates whether the account was successfully archived. |
| **inputErrors** | | [[InputError]#inputerror!] | Mutation validation errors. |

### AccountConnection

Account connection.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **edges** | | [[AccountEdge]#accountedge!]! | List of accounts from the Chart of Accounts. |
| **pageInfo** | | [OffsetPageInfo]#offsetpageinfo! | Information about pagination. |

### AccountCreateOutput

Output of the `accountCreate` mutation.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **account** | | [Account]#account | Account that was created. |
| **didSucceed** | | [Boolean]#boolean! | Indicates whether the account was successfully created. |
| **inputErrors** | | [[InputError]#inputerror!] | Mutation validation errors. |

### AccountEdge

Account edge.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **node** | | [Account]#account | An account from the Chart of Accounts. |

### AccountPatchOutput

Output of the accountPatch mutation.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **account** | | [Account]#account | Account that was patched. |
| **didSucceed** | | [Boolean]#boolean! | Indicates whether the account was successfully patched. |
| **inputErrors** | | [[InputError]#inputerror!] | Mutation validation errors. |

### AccountSubtype

Account subtype.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **name** | | [String]#string! | Account subtype name. |
| **value** | | [AccountSubtypeValue]#accountsubtypevalue! | Account subtype value. |
| **type** | | [AccountType]#accounttype! | Account type for the subtype. |
| **archivable** | | [Boolean]#boolean! | Indicates if accounts of this subtype can be archived. |
| **systemCreated** | | [Boolean]#boolean! | Indicates if accounts of this subtype is system created accounts. |
| **description** | | [String]#string | Account subtype description. |

### AccountType

Account type.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **name** | | [String]#string! | Account type name. |
| **normalBalanceType** | | [AccountNormalBalanceType]#accountnormalbalancetype! | Normal balance type of the account type |
| **value** | | [AccountTypeValue]#accounttypevalue! | Account type value. |

### Address

An address.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **addressLine1** | | [String]#string | Address line 1 (Street address/PO Box/Company name). |
| **addressLine2** | | [String]#string | Address line 2 (Apartment/Suite/Unit/Building). |
| **city** | | [String]#string | City/District/Suburb/Town/Village. |
| **province** | | [Province]#province | State/County/Province/Region. |
| **country** | | [Country]#country | Country. |
| **postalCode** | | [String]#string | Zip/Postal Code. |

### Business

An organization and legal entity made up of an association of people.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **id** | | [ID]#id! | The unique identifier for the business. |
| **name** | | [String]#string! | The name of the business. |
| **isPersonal** | | [Boolean]#boolean! | Is the business a personal one with limited functionality compared to regular businesses. |
| **organizationalType** | | [OrganizationalType]#organizationaltype | The organization type of the business. |
| **type** | | [BusinessType]#businesstype | The type of the business. |
| **subtype** | | [BusinessSubtype]#businesssubtype | The subtype of the business. |
| **currency** | | [Currency]#currency! | The currency of the business. |
| **timezone** | | [String]#string | The timezone of the business. |
| **address** | | [Address]#address | The address of the business. |
| **phone** | | [String]#string | The phone number of the business. |
| **fax** | | [String]#string | The fax number of the business. |
| **mobile** | | [String]#string | The mobile/cell number of the business. |
| **tollFree** | | [String]#string | The toll free number of the business. |
| **website** | | [String]#string | The website of the business. |
| **isClassicAccounting** ⚠️ | | [Boolean]#boolean! | Does business use classic accounting system. ⚠️ **DEPRECATED**  Classic Accounting is deprecated |
| **isClassicInvoicing** ⚠️ | | [Boolean]#boolean! | Does business use classic invoicing system. ⚠️ **DEPRECATED**  Classic Invoicing is deprecated |
| **isArchived** | | [Boolean]#boolean! | Is the business hidden from view by default. |
| **createdAt** | | [DateTime]#datetime! | When the business was created. |
| **modifiedAt** | | [DateTime]#datetime! | When the business was last modified. |
| **customer** | | [Customer]#customer | Get a customer of the business. |
| id | | [ID]#id! | ID of customer. |
| **customers** | | [CustomerConnection]#customerconnection | List of customers for the business. |
| page | | [Int]#int | 1-based page number to retrieve. |
| pageSize | | [Int]#int | Limit on how many items each page should return. |
| sort | | [[CustomerSort]#customersort!]! | Order result by specified options. |
| email | | [String]#string | Find customers matching an email address. |
| modifiedAtAfter | | [DateTime]#datetime | Find customers that were modified after this date. |
| modifiedAtBefore | | [DateTime]#datetime | Find customers that were modified before this date. |
| **account** | | [Account]#account | Get an account of the business. |
| id | | [ID]#id! | ID of account. |
| **accounts** | | [AccountConnection]#accountconnection | Chart of Accounts for the business. |
| page | | [Int]#int | 1-based page number to retrieve. |
| pageSize | | [Int]#int | Limit on how many items each page should return. |
| subtypes | | [[AccountSubtypeValue]#accountsubtypevalue!] | Find accounts matching one of these subtypes. |
| excludedSubtypes | | [[AccountSubtypeValue]#accountsubtypevalue!] | Excludes accounts matching one of these subtypes. |
| types | | [[AccountTypeValue]#accounttypevalue!] | Find accounts matching one of these types. |
| isArchived | | [Boolean]#boolean | Find accounts matching isArchived. Use null to not filter. |
| **salesTax** | | [SalesTax]#salestax | Get a sales tax of the business. |
| id | | [ID]#id! | ID of sales tax. |
| **salesTaxes** | | [SalesTaxConnection]#salestaxconnection | List of sales taxes for the business. |
| isArchived | | [Boolean]#boolean | Find sales taxes matching isArchived. Use null to not filter. |
| modifiedAtAfter | | [DateTime]#datetime | Find sales taxes that were modified after this date. |
| modifiedAtBefore | | [DateTime]#datetime | Find sales taxes that were modified before this date. |
| page | | [Int]#int | 1-based page number to retrieve. |
| pageSize | | [Int]#int | Limit on how many items each page should return. |
| **invoice** | | [Invoice]#invoice | Get an invoice of the business. |
| id | | [ID]#id! | ID of invoice. |
| **invoices** | | [InvoiceConnection]#invoiceconnection | List of invoices for the business. |
| page | | [Int]#int | 1-based page number to retrieve. |
| pageSize | | [Int]#int | Limit on how many items each page should return. |
| sort | | [[InvoiceSort]#invoicesort!]! | Order result by specified options. |
| status | | [InvoiceStatus]#invoicestatus | Find invoices by status. |
| customerId | | [ID]#id | Find invoices for a customer. |
| currency | | [CurrencyCode]#currencycode | Find invoices in a currency. |
| sourceId | | [ID]#id | Find invoices that were created from a particular source. |
| invoiceDateStart | | [Date]#date | Find invoices dated on or after this date. |
| invoiceDateEnd | | [Date]#date | Find invoices dated before or on this date. |
| modifiedAtAfter | | [DateTime]#datetime | Find invoices that were modified after this date. |
| modifiedAtBefore | | [DateTime]#datetime | Find invoices that were modified before this date. |
| invoiceNumber | | [String]#string | Find invoices with invoice number containing this string. Note that a query for `12` would find invoices with numbers `12`, `112`, `120`, `121`, `122`, etc. |
| amountDue | | [Decimal]#decimal | Find invoices that have this exact amount due. |
| **emailSendEnabled** | | [Boolean]#boolean! | Indicates whether Wave email sending features, such as sending invoices, are enabled for this business |
| **vendors** | | [VendorConnection]#vendorconnection | List of vendors for the business. |
| page | | [Int]#int | 1-based page number to retrieve. |
| pageSize | | [Int]#int | Limit on how many items each page should return. |
| email | | [String]#string | Find vendors matching an email address. |
| modifiedAtAfter | | [DateTime]#datetime | Find vendors that were modified after this date. |
| modifiedAtBefore | | [DateTime]#datetime | Find vendors that were modified before this date. |
| **vendor** | | [Vendor]#vendor | Get a vendor of the business. |
| id | | [ID]#id! | Id of vendor |
| **invoiceEstimateSettings** | | [InvoiceEstimateSettings]#invoiceestimatesettings! | Invoice and estimate settings for the business. |
| **product** | | [Product]#product | Get a product (or service) of the business. |
| id | | [ID]#id! | ID of product. |
| **products** | | [ProductConnection]#productconnection | List of products (and services) for the business. |
| page | | [Int]#int | 1-based page number to retrieve. |
| pageSize | | [Int]#int | Limit on how many items each page should return. |
| sort | | [[ProductSort]#productsort!]! | Order result by specified options. |
| isSold | | [Boolean]#boolean | Find products sold by the business. |
| isBought | | [Boolean]#boolean | Find products bought by the business. |
| isArchived | | [Boolean]#boolean | Find products matching isArchived. Use null to not filter. |
| modifiedAtAfter | | [DateTime]#datetime | Find products that were modified after this date. |
| modifiedAtBefore | | [DateTime]#datetime | Find products that were modified before this date. |

### BusinessConnection

Business connection.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **edges** | | [[BusinessEdge]#businessedge!]! | List of businesses. |
| **pageInfo** | | [OffsetPageInfo]#offsetpageinfo! | Information about pagination. |

### BusinessEdge

Business edge.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **node** | | [Business]#business | A business. |

### BusinessSubtype

Granular area of focus of a business.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **name** | | [String]#string! | The description of the business subtype in human-friendly form. |
| **value** | | [BusinessSubtypeValue]#businesssubtypevalue! | The enum value of the business subtype. |

### BusinessType

Area of focus of a business.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **name** | | [String]#string! | The description of the business type in human-friendly form. |
| **value** | | [BusinessTypeValue]#businesstypevalue! | The enum value of the business type. |

### Country

A country.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **code** | | [CountryCode]#countrycode! | Country code. |
| **name** | | [String]#string! | Plain-language representation. |
| **currency** | | [Currency]#currency! | Default currency of the country. |
| **nameWithArticle** | | [String]#string! | Name of the country with the appropriate article. |
| **provinces** | | [[Province]#province!]! | List of principal subdivisions. |

### Currency

A medium of exchange in common use.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **code** | | [CurrencyCode]#currencycode! | Currency code. |
| **symbol** | | [String]#string! | Symbol used to denote that a number is a monetary value. |
| **name** | | [String]#string! | Plain-language representation. |
| **plural** | | [String]#string! | Plural version of currency name. |
| **exponent** | | [Int]#int! | Expresses the relationship between a major currency unit and its minor currency unit. The number of digits found to the right of the decimal place to represent the fractional part of this currency (assumes a base of 10). |

### Customer

A customer of the business.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **business** | | [Business]#business! | Business that the customer belongs to. |
| **id** | | [ID]#id! | Unique identifier for the customer. |
| **internalId** ⚠️ | | [String]#string | The primary key used internally at Wave. ⚠️ **DEPRECATED**  Exposed internal IDs will eventually be removed in favor of global ID. Use Node.id instead. |
| **name** | | [String]#string! | Name or business name of the customer. |
| **address** | | [Address]#address | Address of the customer. |
| **firstName** | | [String]#string | First name of the principal contact. |
| **lastName** | | [String]#string | Last name of the principal contact. |
| **displayId** | | [String]#string | User defined id for the customer. Commonly referred to as Account Number. |
| **email** | | [String]#string | Email of the principal contact. |
| **mobile** | | [String]#string | Mobile telephone number of the principal contact. |
| **phone** | | [String]#string | Telephone number of the customer. |
| **fax** | | [String]#string | Fax number of the customer. |
| **tollFree** | | [String]#string | Toll-free number of the customer. |
| **website** | | [String]#string | Website address of the customer. |
| **internalNotes** | | [String]#string | Internal notes about the customer. |
| **currency** | | [Currency]#currency | Default currency used by the customer. |
| **shippingDetails** | | [CustomerShippingDetails]#customershippingdetails | Details for shipping to the customer. |
| **createdAt** | | [DateTime]#datetime! | When the customer was created. |
| **modifiedAt** | | [DateTime]#datetime! | When the customer was last modified. |
| **isArchived** | | [Boolean]#boolean | Whether or not the customer is archived. |
| **outstandingAmount** | | [Money]#money! | Amount due on customer's invoices. |
| **overdueAmount** | | [Money]#money! | Amount due on customer's invoices with due date that have passed. |

### CustomerConnection

Customer connection.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **edges** | | [[CustomerEdge]#customeredge!]! | List of customers. |
| **pageInfo** | | [OffsetPageInfo]#offsetpageinfo! | Information about pagination. |

### CustomerCreateOutput

Output of the `customerCreate` mutation.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **customer** | | [Customer]#customer | Customer that was created. |
| **didSucceed** | | [Boolean]#boolean! | Indicates whether the customer was successfully created. |
| **inputErrors** | | [[InputError]#inputerror!] | Mutation validation errors. |

### CustomerDeleteOutput

Output of the `customerDelete` mutation.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **didSucceed** | | [Boolean]#boolean! | Indicates whether the customer was successfully deleted. |
| **inputErrors** | | [[InputError]#inputerror!] | Mutation validation errors. |

### CustomerEdge

Customer edge.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **node** | | [Customer]#customer | A customer. |

### CustomerPatchOutput

Output of the `customerPatch` mutation.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **customer** | | [Customer]#customer | Customer that was patched. |
| **didSucceed** | | [Boolean]#boolean! | Indicates whether the customer was successfully patched. |
| **inputErrors** | | [[InputError]#inputerror!] | Mutation validation errors. |

### CustomerShippingDetails

Shipping details related to a customer.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **name** | | [String]#string | Name or business name of the customer. |
| **address** | | [Address]#address | Address of the customer. |
| **phone** | | [String]#string | Telephone number of the customer. |
| **instructions** | | [String]#string | Delivery instructions for handling. |

### Estimate

An approximate bill given to a buyer indicating the products or services, quantities, and expected prices (not a request for payment).

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **business** | | [Business]#business! | Business that the Estimate belongs to |
| **id** | | [ID]#id! | Unique identifier for the estimate. |
| **internalId** ⚠️ | | [String]#string | The primary key used internally at Wave. ⚠️ **DEPRECATED**  Exposed internal IDs will eventually be removed in favor of global ID. Use Node.id instead. |

### FixedInvoiceDiscount

A fixed discount applied to an Invoice.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **createdAt** | | [DateTime]#datetime! | When the invoice discount was created. |
| **modifiedAt** | | [DateTime]#datetime! | When the invoice discount was last modified. |
| **name** | | [String]#string | A description of the discount. |
| **amount** | | [Decimal]#decimal | The amount of the discount. |

### GeneralSettings

General settings on an invoice and estimate.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **accentColor** | | [HexColorCode]#hexcolorcode | Color to represent the brand of the business. |
| **logoUrl** | | [URL]#url | Logo of the business. |

### InputError

Mutation validation error.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **path** | | [[String]#string!] | Path to the input value. |
| **message** | | [String]#string | Error message. |
| **code** | | [String]#string | Error code. |

### Invoice

Document issued to a buyer for payment indicating the products or services, quantities, and agreed prices.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **business** | | [Business]#business! | Business that the invoice belongs to. |
| **customer** | | [Customer]#customer! | Customer the invoice is for. |
| **id** | | [ID]#id! | Unique identifier for the invoice. |
| **internalId** ⚠️ | | [String]#string | The primary key used internally at Wave. ⚠️ **DEPRECATED**  Exposed internal IDs will eventually be removed in favor of global ID. Use Node.id instead. |
| **createdAt** | | [DateTime]#datetime! | When the invoice was created. |
| **modifiedAt** | | [DateTime]#datetime! | When the invoice was last modified. |
| **source** | | [InvoiceSource]#invoicesource | Entity that was the precursor to the invoice. |
| **pdfUrl** | | [String]#string! | URL to access PDF representation of the invoice. |
| **viewUrl** | | [String]#string! | URL to view the invoice online as seen by a customer. |
| **status** | | [InvoiceStatus]#invoicestatus! | Status of the Invoice. |
| **title** | | [String]#string! | Invoice title at the top of the document. |
| **subhead** | | [String]#string | Invoice subheading text. |
| **invoiceNumber** | | [String]#string! | Unique number assigned to the invoice. |
| **poNumber** | | [String]#string | Purchase order or sales order number for the invoice. |
| **invoiceDate** | | [Date]#date! | Date when invoice is issued. |
| **dueDate** | | [Date]#date! | Date when payment is due. |
| **amountDue** | | [Money]#money! | Invoice total less amount already paid. |
| **amountPaid** | | [Money]#money! | Total of all payments so far made against this invoice. |
| **taxTotal** | | [Money]#money! | Total of all sales taxes on all line items within the invoice. |
| **total** | | [Money]#money! | Total value of the invoice including sales taxes. |
| **discountTotal** | | [Money]#money! | Total value of all discounts. |
| **discounts** | | [[InvoiceDiscount]#invoicediscount!] | Invoice discounts. |
| **currency** | | [Currency]#currency! | Currency of the invoice. |
| **exchangeRate** | | [Decimal]#decimal! | Exchange rate to business's currency from the invoice's currency. Used to value the invoice income within Wave's accounting transactions. |
| **items** | | [[InvoiceItem]#invoiceitem!] | The line items (product, unit and price) that make up the invoiced sale. |
| **memo** | | [String]#string | Invoice memo (notes) text. |
| **footer** | | [String]#string | Invoice footer text. |
| **disableCreditCardPayments** | | [Boolean]#boolean! | Within a business that is enabled to accept credit card payments, indicates if this individual invoice has been marked to not be payable by card. |
| **disableBankPayments** | | [Boolean]#boolean! | Within a business that is enabled to accept bank payments, indicates if this individual invoice has been marked to not be payable by bank payment. |
| **disableAmexPayments** | | [Boolean]#boolean! | Within a business that is enabled to accept credit card payments, indicates if this individual invoice has been marked to not be payable by American Express. |
| **itemTitle** | | [String]#string! | The label for the 'Item' column in the line items listing. |
| **unitTitle** | | [String]#string! | The label for the 'Unit' column in the listing of line items on the invoice. |
| **priceTitle** | | [String]#string! | The label for the 'Price' column in the listing of line items on the invoice. |
| **amountTitle** | | [String]#string! | The label for the 'Amount' (= unit x price) column in the listing of line items on the invoice. |
| **hideName** | | [Boolean]#boolean! | Indicates whether item's product name in item column is hidden in the line items listing. |
| **hideDescription** | | [Boolean]#boolean! | Indicates whether item's description in item column is hidden in the line items listing. |
| **hideUnit** | | [Boolean]#boolean! | Indicates whether item's unit is hidden in the line items listing. |
| **hidePrice** | | [Boolean]#boolean! | Indicates whether item's price is hidden in the line items listing. |
| **hideAmount** | | [Boolean]#boolean! | Indicates whether item's amount is hidden in the line items listing. |
| **lastSentAt** | | [DateTime]#datetime | When the invoice was last sent. |
| **lastSentVia** | | [InvoiceSendMethod]#invoicesendmethod | How the invoice was last sent. |
| **lastViewedAt** | | [DateTime]#datetime | When the invoice was last viewed by the customer. |
| **requireTermsOfServiceAgreement** | | [Boolean]#boolean! | Indicates whether the customer is required to accept the terms of service. |
| **subtotal** | | [Money]#money! | Pretax total. |

### InvoiceApproveOutput

Output of the `invoiceApprove` mutation.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **invoice** | | [Invoice]#invoice | Invoice that was approved. |
| **didSucceed** | | [Boolean]#boolean! | Indicates whether the invoice was successfully approved. |
| **inputErrors** | | [[InputError]#inputerror!] | Mutation validation errors. |

### InvoiceCloneOutput

Output of the `invoiceClone` mutation.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **invoice** | | [Invoice]#invoice | Invoice that was cloned. |
| **didSucceed** | | [Boolean]#boolean! | Indicates whether the invoice was successfully cloned. |
| **inputErrors** | | [[InputError]#inputerror!] | Mutation validation errors. |

### InvoiceConnection

Invoice connection.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **edges** | | [[InvoiceEdge]#invoiceedge!]! | List of invoices. |
| **pageInfo** | | [OffsetPageInfo]#offsetpageinfo! | Information about pagination. |

### InvoiceCreateOutput

Output of the `invoiceCreate` mutation.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **invoice** | | [Invoice]#invoice | Invoice that was created. |
| **didSucceed** | | [Boolean]#boolean! | Indicates whether the invoice was successfully created. |
| **inputErrors** | | [[InputError]#inputerror!] | Mutation validation errors. |

### InvoiceDeleteOutput

Output of the `invoiceDelete` mutation.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **didSucceed** | | [Boolean]#boolean! | Indicates whether the invoice was successfully deleted. |
| **inputErrors** | | [[InputError]#inputerror!] | Mutation validation errors. |

### InvoiceEdge

Invoice edge.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **node** | | [Invoice]#invoice! | An invoice. |

### InvoiceEstimateSettings

Business invoice and estimates settings information.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **generalSettings** | | [GeneralSettings]#generalsettings! | Settings applied to both invoices and estimates. |

### InvoiceItem

Invoice line item.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **account** | | [Account]#account! | Income account. |
| **description** | | [String]#string | Detailed description. |
| **quantity** | | [Decimal]#decimal! | Number of units. |
| **price** ⚠️ | | [Decimal]#decimal! | Price per unit. ⚠️ **DEPRECATED**  Use unitPrice to avoid ambiguity in how the value relates to quantity and the subtotal. |
| **unitPrice** | | [Decimal]#decimal! | Price per unit in the major currency unit. |
| **subtotal** | | [Money]#money! | Pretax total. |
| **total** | | [Money]#money! | Total including sales taxes. |
| **taxes** | | [[InvoiceItemTax]#invoiceitemtax!]! | Taxes. |
| **product** | | [Product]#product! | Associated product. |

### InvoiceItemTax

Invoice line item's sales tax.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **salesTax** | | [SalesTax]#salestax! | Sales tax. |
| **amount** | | [Money]#money | Sales tax amount. |
| **rate** ⚠️ | | [Decimal]#decimal | Sales tax rate. ⚠️ **DEPRECATED**  Use `salesTax.rate`. `rate` will be removed on Oct 20th 2022. |

### InvoiceMarkSentOutput

Output of the `invoiceMarkSent` mutation.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **invoice** | | [Invoice]#invoice | Invoice that was marked as sent. |
| **didSucceed** | | [Boolean]#boolean! | Indicates whether the invoice was successfully marked as sent. |
| **inputErrors** | | [[InputError]#inputerror!] | Mutation validation errors. |

### InvoicePatchOutput

Output of the `invoicePatch` mutation.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **invoice** | | [Invoice]#invoice | Invoice that was created. |
| **didSucceed** | | [Boolean]#boolean! | Indicates whether the invoice was successfully created. |
| **inputErrors** | | [[InputError]#inputerror!] | Mutation validation errors. |

### InvoiceSendOutput

Output of the `invoiceSend` mutation.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **invoice** | | [Invoice]#invoice | Invoice that was sent. |
| **didSucceed** | | [Boolean]#boolean! | Indicates whether the invoice was successfully queued for sending. |
| **inputErrors** | | [[InputError]#inputerror!] | Mutation validation errors. |

### Money

A medium of exchange in common use.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **raw** ⚠️ | | [Int]#int! | Value represented in only the minor currency unit. ⚠️ **DEPRECATED**  Use `minorUnitValue` instead, as `raw` can overflow for large numbers. |
| **minorUnitValue** | | [Decimal]#decimal! | Value represented in only the minor currency unit. |
| **value** | | [String]#string! | Amount represented as a combination of the major and minor currency unit (uses a decimal separator). |
| **currency** | | [Currency]#currency! | Currency |

### MoneyDepositTransactionCreateOutput

Output of the moneyDepositTransactionCreate Mutation

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **didSucceed** | | [Boolean]#boolean! | Whether or not the transaction was successfully created. |
| **inputErrors** | | [[InputError]#inputerror!] | Mutation validation errors. |

### MoneyTransactionCreateOutput

Output of the `moneyTransactionCreate` Mutation

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **transaction** | | [Transaction]#transaction | Created transaction. |
| **didSucceed** | | [Boolean]#boolean! | Whether or not the transaction was successfully created. |
| **inputErrors** | | [[InputError]#inputerror!] | Mutation validation errors. |

### MoneyTransactionsCreateOutput

Output of the `moneyTransactionsCreate` Mutation

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **transactions** | | [[Transaction]#transaction] | Created transactions. |
| **didSucceed** | | [Boolean]#boolean! | Whether or not all transactions were successfully created. |
| **inputErrors** | | [[InputError]#inputerror!] | Mutation validation errors. |

### NewEstimate

An estimate created in our new platform.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **business** | | [Business]#business! | Business that the Estimate belongs to |
| **id** | | [ID]#id! | Unique identifier for the estimate. |

### OAuthApplication

An OAuth application.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **id** | | [ID]#id! | The unique identifier for the application. |
| **name** | | [String]#string! | The name of the application. |
| **description** | | [String]#string | A description of the application. |
| **clientId** | | [String]#string! | The client identifier issued to the client during the registration process. |
| **logoUrl** | | [URL]#url | The URL to the application logo. |
| **extraData** | | [JSON]#json | Additional data for the application. - If the requested `clientId` does not match that of the current OAuth application, `extraData` will not be returned. |
| **createdAt** | | [DateTime]#datetime! | When the application was created. |
| **modifiedAt** | | [DateTime]#datetime! | When the application was last modified. |

### OffsetPageInfo

Information about pagination in a connection.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **currentPage** | | [Int]#int! | Current page number. |
| **totalPages** | | [Int]#int | Total number of pages in the connection. |
| **totalCount** | | [Int]#int | Total number of nodes in the connection. |

### PercentageInvoiceDiscount

A percentage discount applied to an Invoice.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **createdAt** | | [DateTime]#datetime! | When the invoice discount was created. |
| **modifiedAt** | | [DateTime]#datetime! | When the invoice discount was last modified. |
| **name** | | [String]#string | A description of the discount. |
| **percentage** | | [Decimal]#decimal | The percentage of the discount. |

### Product

Product (or service) that a business sells to a customer or purchases from a vendor.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **business** | | [Business]#business! | Business that the product belongs to. |
| **incomeAccount** | | [Account]#account | The income account to associate with this product, set when isSold. |
| **expenseAccount** | | [Account]#account | The expense account to associate with this product, set when isBought. |
| **defaultSalesTaxes** | | [[SalesTax]#salestax!]! | Default sales taxes to apply on product. |
| **id** | | [ID]#id! | Unique identifier for the product. |
| **internalId** ⚠️ | | [String]#string | The primary key used internally at Wave. ⚠️ **DEPRECATED**  Exposed internal IDs will eventually be removed in favor of global ID. Use Node.id instead. |
| **name** | | [String]#string! | Name of the product. |
| **description** | | [String]#string | Description of the product. |
| **unitPrice** | | [Decimal]#decimal! | Price per unit in the major currency unit. |
| **isSold** | | [Boolean]#boolean! | Is product sold by the business. Allow this product or service to be added to Invoices. |
| **isBought** | | [Boolean]#boolean! | Is product bought by the business. Allow this product or service to be added to Bills. |
| **isArchived** | | [Boolean]#boolean! | Is the product hidden from view by default. |
| **createdAt** | | [DateTime]#datetime! | When the product was created. |
| **modifiedAt** | | [DateTime]#datetime! | When the product was last modified. |

### ProductArchiveOutput

Output of the `productArchive` mutation.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **product** | | [Product]#product | Product that was archived. |
| **didSucceed** | | [Boolean]#boolean! | Indicates whether the product was successfully deleted. |
| **inputErrors** | | [[InputError]#inputerror!] | Mutation validation errors. |

### ProductConnection

Product connection.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **edges** | | [[ProductEdge]#productedge!]! | List of products. |
| **pageInfo** | | [OffsetPageInfo]#offsetpageinfo! | Information about pagination. |

### ProductCreateOutput

Output of the `productCreate` mutation.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **product** | | [Product]#product | Product that was created. |
| **didSucceed** | | [Boolean]#boolean! | Indicates whether the product was successfully created. |
| **inputErrors** | | [[InputError]#inputerror!] | Mutation validation errors. |

### ProductEdge

Product edge.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **node** | | [Product]#product! | A product. |

### ProductPatchOutput

Output of the `productPatch` mutation.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **product** | | [Product]#product | Product that was updated. |
| **didSucceed** | | [Boolean]#boolean! | Indicates whether the product was successfully patched. |
| **inputErrors** | | [[InputError]#inputerror!] | Mutation validation errors. |

### Province

A state/county/province/region.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **slug** ⚠️ | | [String]#string | Informal name for identification. ⚠️ **DEPRECATED**  Nonstandard values. Use code instead. |
| **code** | | [String]#string! | [ISO 3166-2]https://en.wikipedia.org/wiki/ISO\_3166-2 identifier. |
| **name** | | [String]#string! | Plain-lanuage representaton. |

### RecurringInvoice

A template that can be used to generate and possibly pay an invoice at regular intervals.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **business** | | [Business]#business! | Business that the RecurringInvoice belongs to |
| **id** | | [ID]#id! | Unique identifier for the recurring invoice. |
| **internalId** ⚠️ | | [String]#string | The primary key used internally at Wave. ⚠️ **DEPRECATED**  Exposed internal IDs will eventually be removed in favor of global ID. Use Node.id instead. |

### SalesTax

A tax paid to a taxing authority for the sales of certain goods and services.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **business** | | [Business]#business! | Business that the sales tax belongs to. |
| **id** | | [ID]#id! | The unique identifier for the sales tax. |
| **internalId** ⚠️ | | [String]#string | The primary key used internally at Wave. ⚠️ **DEPRECATED**  Exposed internal IDs will eventually be removed in favor of global ID. Use Node.id instead. |
| **name** | | [String]#string! | Name of the tax. |
| **abbreviation** | | [String]#string! | A short form or code representing the sales tax. |
| **description** | | [String]#string | User defined description for the sales tax. |
| **taxNumber** | | [String]#string | The tax's issued identification number from a taxing authority. |
| **showTaxNumberOnInvoices** | | [Boolean]#boolean! | Display tax number beside the tax name on an invoice. |
| **rate** | | [Decimal]#decimal! | Tax rate effective on 'for' date, or current date if no parameter, as a decimal (e.g. 0.15 represents 15%). |
| for | | [Date]#date |  |
| **rates** | | [[SalesTaxRate]#salestaxrate!]! | Tax rates with their effective dates of application |
| **isCompound** | | [Boolean]#boolean! | Is a compound tax, or stacked tax. This tax is calculated on top of the subtotal and other tax amounts. |
| **isRecoverable** | | [Boolean]#boolean! | Is a recoverable tax. It is recoverable if you can deduct the tax that you as a business paid from the tax that you have collected. |
| **isArchived** | | [Boolean]#boolean! | Is the sales tax hidden from view by default. |
| **createdAt** | | [DateTime]#datetime! | When the sales tax was created. |
| **modifiedAt** | | [DateTime]#datetime! | When the sales tax was last modified. |

### SalesTaxArchiveOutput

Output of the `salesTaxArchive` mutation.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **salesTax** | | [SalesTax]#salestax | Sales tax that was archived. |
| **didSucceed** | | [Boolean]#boolean! | Indicates whether the sales tax was successfully deleted. |
| **inputErrors** | | [[InputError]#inputerror!] | Mutation validation errors. |

### SalesTaxConnection

Sales tax connection.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **edges** | | [[SalesTaxEdge]#salestaxedge!]! | List of sales taxes. |
| **pageInfo** | | [OffsetPageInfo]#offsetpageinfo! | Information about pagination. |

### SalesTaxCreateOutput

Output of the `salesTaxCreate` mutation.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **salesTax** | | [SalesTax]#salestax | Sales tax that was created. |
| **didSucceed** | | [Boolean]#boolean! | Indicates whether the sales tax was successfully created. |
| **inputErrors** | | [[InputError]#inputerror!] | Mutation validation errors. |

### SalesTaxEdge

Sales tax edge.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **node** | | [SalesTax]#salestax | A sales tax. |

### SalesTaxPatchOutput

Output of the `salesTaxPatch` mutation.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **salesTax** | | [SalesTax]#salestax | Sales tax that was patched. |
| **didSucceed** | | [Boolean]#boolean! | Indicates whether the sales tax was successfully patched. |
| **inputErrors** | | [[InputError]#inputerror!] | Mutation validation errors. |

### SalesTaxRate

A Sales Tax rate with effective date. New entry for each change of rate.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **effective** | | [Date]#date! | Date from which the sales tax rate applies. |
| **rate** | | [Decimal]#decimal! | Tax rate applying from the effective date as a decimal (e.g. 0.15 represents 15%). |

### Transaction

An created transaction.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **id** | | [ID]#id! | Unique identifier for the transaction. |

### User

A user is an individual's account.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **id** | | [ID]#id! | The unique identifier for the user. |
| **defaultEmail** | | [String]#string | The user's primary email address. |
| **firstName** | | [String]#string | The user's first name. |
| **lastName** | | [String]#string | The user's last name. |
| **createdAt** | | [DateTime]#datetime! | When the user was created. |
| **modifiedAt** | | [DateTime]#datetime! | When the user was last modified. |

### Vendor

A vendor of the business.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **id** | | [ID]#id! | Unique identifier for the customer. |
| **business** | | [Business]#business! | Business that the vendor belongs to. |
| **name** | | [String]#string! | Name or business name of the vendor. |
| **address** | | [Address]#address | The address of the vendor. |
| **firstName** | | [String]#string | The first name of the principal contact. |
| **lastName** | | [String]#string | The last name of the principal contact. |
| **displayId** | | [String]#string | User defined id for the vendor. Commonly referred to as Account Number. |
| **email** | | [String]#string | Email of the principal vendor. |
| **mobile** | | [String]#string | The mobile number of the vendor. |
| **phone** | | [String]#string | The phone number of the vendor. |
| **fax** | | [String]#string | Fax number of the vendor. |
| **tollFree** | | [String]#string | Toll-free number of the vendor. |
| **website** | | [String]#string | Website address of the vendor. |
| **internalNotes** | | [String]#string | Internal notes about the vendor. |
| **currency** | | [Currency]#currency | Default currency used by the vendor. |
| **shippingDetails** | | [VendorShippingDetails]#vendorshippingdetails | Details for shipping to the vendor. |
| **createdAt** | | [DateTime]#datetime! | When the vendor was created. |
| **modifiedAt** | | [DateTime]#datetime! | When the vendor was last modified. |
| **isArchived** | | [Boolean]#boolean | Whether or not the vendor is archived. |

### VendorConnection

Vendor connection.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **edges** | | [[VendorEdge]#vendoredge!]! | List of vendors. |
| **pageInfo** | | [OffsetPageInfo]#offsetpageinfo! | Information about pagination. |

### VendorEdge

Vendor edge.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **node** | | [Vendor]#vendor! | A vendor. |

### VendorShippingDetails

Shipping details related to a vendor.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **name** | | [String]#string | Name or business name of the vendor. |
| **address** | | [Address]#address | Address of the vendor. |
| **phone** | | [String]#string | Telephone number of the vendor. |
| **instructions** | | [String]#string | Delivery instructions for handling. |

## Inputs

### AccountArchiveInput

Input to the `accountArchive` mutation.

| Field | | Type | Description |
| --- | --- | --- | --- |
| **id** | | [ID]#id! | The unique identifier for the account. |

### AccountCreateInput

Input to the `accountCreate` mutation.

| Field | | Type | Description |
| --- | --- | --- | --- |
| **businessId** | | [ID]#id! | The unique identifier for the business. |
| **subtype** | | [AccountSubtypeValue]#accountsubtypevalue! | The account subtype classification. |
| **currency** | | [CurrencyCode]#currencycode | Currency of the account. Will default to business's currency. |
| **name** | | [String]#string! | Name of the account. |
| **description** | | [String]#string | User defined description for the account. |
| **displayId** | | [String]#string | User defined id for the account. |
| **restrictions** | | [AccountCreateRestrictions]#accountcreaterestrictions | Rules around how a user is able to modify this account. This field is only usable for specific applications. |

### AccountCreateRestrictions

Rules around how a user is able to modify this account.

| Field | | Type | Description |
| --- | --- | --- | --- |
| **canArchive** | | [Boolean]#boolean | Whether or not a user can archive this account. |

### AccountPatchInput

Input to the `accountPatch` mutation.

| Field | | Type | Description |
| --- | --- | --- | --- |
| **id** | | [ID]#id! | The unique identifier for the account. |
| **sequence** | | [Int]#int! | The most recent reversion you are aware of. As soon as something modifies an account, its sequence is incremented. |
| **name** | | [String]#string | Name of the account. |
| **description** | | [String]#string | User defined description for the account. Use null to unset the current value. |
| **displayId** | | [String]#string | User defined id for the account. Use null to unset the current value. |

### AddressInput

An address.

| Field | | Type | Description |
| --- | --- | --- | --- |
| **addressLine1** | | [String]#string | Address line 1 (Street address/PO Box/Company name). |
| **addressLine2** | | [String]#string | Address line 2 (Apartment/Suite/Unit/Building). |
| **city** | | [String]#string | City/District/Suburb/Town/Village. |
| **provinceCode** | | [String]#string | State/County/Province/Region Code ([ISO 3166-2]https://en.wikipedia.org/wiki/ISO\_3166-2). |
| **countryCode** | | [CountryCode]#countrycode | Country Code. |
| **postalCode** | | [String]#string | Zip/Postal Code. |

### CustomerCreateInput

Input to the `customerCreate` mutation.

| Field | | Type | Description |
| --- | --- | --- | --- |
| **businessId** | | [ID]#id! | The unique identifier for the business. |
| **name** | | [String]#string! | Name or business name of the customer. |
| **firstName** | | [String]#string | First name of the principal contact. |
| **lastName** | | [String]#string | Last name of the principal contact. |
| **address** | | [AddressInput]#addressinput | Address |
| **displayId** | | [String]#string | User defined id for the customer. |
| **email** | | [String]#string | Email of the principal contact. |
| **mobile** | | [String]#string | Mobile telephone number of the principal contact. |
| **phone** | | [String]#string | Telephone number of the customer. |
| **fax** | | [String]#string | Fax number of the customer. |
| **tollFree** | | [String]#string | Toll-free number of the customer. |
| **website** | | [String]#string | Website address of the customer. |
| **internalNotes** | | [String]#string | Internal notes about the customer. |
| **currency** | | [CurrencyCode]#currencycode | Default currency used by the customer. |
| **shippingDetails** | | [CustomerShippingDetailsInput]#customershippingdetailsinput | Details for shipping to the customer. |

### CustomerDeleteInput

Input to the `customerDelete` mutation.

| Field | | Type | Description |
| --- | --- | --- | --- |
| **id** | | [ID]#id! | The unique identifier for the customer. |

### CustomerPatchInput

Input to the `customerPatch` mutation.

| Field | | Type | Description |
| --- | --- | --- | --- |
| **id** | | [ID]#id! | The unique identifier for the customer. |
| **name** | | [String]#string | Name or business name of the customer. |
| **firstName** | | [String]#string | First name of the principal contact. |
| **lastName** | | [String]#string | Last name of the principal contact. |
| **address** | | [AddressInput]#addressinput | Address |
| **displayId** | | [String]#string | User defined id for the customer. |
| **email** | | [String]#string | Email of the principal contact. |
| **mobile** | | [String]#string | Mobile telephone number of the principal contact. |
| **phone** | | [String]#string | Telephone number of the customer. |
| **fax** | | [String]#string | Fax number of the customer. |
| **tollFree** | | [String]#string | Toll-free number of the customer. |
| **website** | | [String]#string | Website address of the customer. |
| **internalNotes** | | [String]#string | Internal notes about the customer. |
| **currency** | | [CurrencyCode]#currencycode | Default currency used by the customer. |
| **shippingDetails** | | [CustomerPatchShippingDetailsInput]#customerpatchshippingdetailsinput | Details for shipping to the customer. |

### CustomerPatchShippingDetailsInput

Shipping details related to a customer.

| Field | | Type | Description |
| --- | --- | --- | --- |
| **name** | | [String]#string | Name or business name of the customer. |
| **address** | | [AddressInput]#addressinput | Address of the customer. |
| **phone** | | [String]#string | Telephone number of the customer. |
| **instructions** | | [String]#string | Delivery instructions for handling. |

### CustomerShippingDetailsInput

Shipping details related to a customer.

| Field | | Type | Description |
| --- | --- | --- | --- |
| **name** | | [String]#string | Name or business name of the customer. |
| **address** | | [AddressInput]#addressinput | Address of the customer. |
| **phone** | | [String]#string | Telephone number of the customer. |
| **instructions** | | [String]#string | Delivery instructions for handling. |

### InvoiceApproveInput

Input to the `invoiceApprove` mutation.

| Field | | Type | Description |
| --- | --- | --- | --- |
| **invoiceId** | | [ID]#id! | The unique identifier for the invoice. |

### InvoiceCloneInput

Input to the `invoiceClone` mutation.

| Field | | Type | Description |
| --- | --- | --- | --- |
| **invoiceId** | | [ID]#id! | The unique identifier for the invoice. |

### InvoiceCreateInput

Input to the `invoiceCreate` mutation.

| Field | | Type | Description |
| --- | --- | --- | --- |
| **businessId** | | [ID]#id! | The unique identifier for the business. |
| **customerId** | | [ID]#id! | The customer identifier to associate with invoice. |
| **status** | | [InvoiceCreateStatus]#invoicecreatestatus | Status of the Invoice. |
| **currency** | | [CurrencyCode]#currencycode | Currency of the invoice. If not provided, will use the business's default currency. |
| **title** | | [String]#string | Invoice title at the top of the document. If not provided, will use the business's default invoice title. |
| **subhead** | | [String]#string | Invoice subheading text. If not provided, will use the business's default invoice subheading. |
| **invoiceNumber** | | [String]#string | Unique number assigned to the invoice. If not provided, will find the current largest invoice number and add 1. |
| **poNumber** | | [String]#string | Purchase order or sales order number for the invoice. |
| **invoiceDate** | | [Date]#date | Date when invoice is issued. If not provided, will use today's date. |
| **exchangeRate** | | [Decimal]#decimal | Exchange rate to business's currency from the invoice's currency. Used to value the invoice income within Wave's accounting transactions. |
| **dueDate** | | [Date]#date | Date when payment is due. If not provided, will apply the business's default invoice payment terms to `invoiceDate` value. |
| **items** | | [[InvoiceCreateItemInput]#invoicecreateiteminput!] | The line items (product, unit and price) that make up the invoiced sale. |
| **discounts** | | [[InvoiceDiscountInput]#invoicediscountinput!] | The discounts applied to the invoice (currently limited to max 1). |
| **memo** | | [String]#string | Invoice memo (notes) text. If not provided, will use the business's default invoice memo. |
| **footer** | | [String]#string | Invoice footer text. If not provided, will use the business's default invoice footer. |
| **disableAmexPayments** | | [Boolean]#boolean | Within a business that is enabled to accept credit card payments, indicates if this individual invoice has been marked to not be payable by american express payment. If not provided, will use the business's default invoice settings american express payment state. |
| **disableCreditCardPayments** | | [Boolean]#boolean | Within a business that is enabled to accept credit card payments, indicates if this individual invoice has been marked to not be payable by card. If not provided, will use the business's default invoice credit card payment state. |
| **disableBankPayments** | | [Boolean]#boolean | Within a business that is enabled to accept bank payments, indicates if this individual invoice has been marked to not be payable by bank payment. If not provided, will use the business's default invoice bank payment state. |
| **itemTitle** | | [String]#string | The label for the 'Item' column in the listing of line items on the invoice. If not provided, will use the business's default invoice column item title. |
| **unitTitle** | | [String]#string | The label for the 'Unit' column in the listing of line items on the invoice. If not provided, will use the business's default invoice column unit title. |
| **priceTitle** | | [String]#string | The label for the 'Price' column in the listing of line items on the invoice. If not provided, will use the business's default invoice column price title. |
| **amountTitle** | | [String]#string | The label for the 'Amount' (= unit x price) column in the listing of line items on the invoice. If not provided, will use the business's default invoice column amount title. |
| **hideName** | | [Boolean]#boolean | Indicates whether item's product name in item column is hidden in the line items listing. If not provided, will use the business's default invoice item name visibility. |
| **hideDescription** | | [Boolean]#boolean | Indicates whether item's description in item column is hidden in the line items listing. If not provided, will use the business's default invoice item description visibility. |
| **hideUnit** | | [Boolean]#boolean | Indicates whether item's unit is hidden in the line items listing. If not provided, will use the business's default invoice item unit visibility. |
| **hidePrice** | | [Boolean]#boolean | Indicates whether item's price is hidden in the line items listing. If not provided, will use the business's default invoice item price visibility. |
| **hideAmount** | | [Boolean]#boolean | Indicates whether item's amount is hidden in the line items listing. If not provided, will use the business's default invoice item amount visibility. |
| **requireTermsOfServiceAgreement** | | [Boolean]#boolean | Indicates whether the customer is required to accept the terms of service. |

### InvoiceCreateItemInput

Invoice line item.

| Field | | Type | Description |
| --- | --- | --- | --- |
| **productId** | | [ID]#id! | Associated product. |
| **description** | | [String]#string | Override product's description. |
| **quantity** | | [Decimal]#decimal | Number of units (rounded to nearest 8 decimal places with ties going away from zero). |
| **unitPrice** | | [Decimal]#decimal | Override product's unitPrice. Price per unit in the major currency unit (rounded to nearest 8 decimal places with ties going away from zero). |
| **taxes** | | [[InvoiceCreateItemTaxInput]#invoicecreateitemtaxinput!] | Taxes. To have the product's default sales taxes applied, provide `undefined` as the value. |

### InvoiceCreateItemTaxInput

Invoice line item's sales tax.

| Field | | Type | Description |
| --- | --- | --- | --- |
| **salesTaxId** | | [ID]#id! | Sales tax. |
| **amount** | | [Decimal]#decimal | \*DEPRECATED - DO NOT USE\* Sales Tax Amount is calculated by Wave using your Sales Tax settings. |

### InvoiceDeleteInput

Input to the `invoiceDelete` mutation.

| Field | | Type | Description |
| --- | --- | --- | --- |
| **invoiceId** | | [ID]#id! | The unique identifier for the invoice. |

### InvoiceDiscountInput

Invoice Discount.

| Field | | Type | Description |
| --- | --- | --- | --- |
| **amount** | | [Decimal]#decimal | Discount amount (for FIXED-type discounts). |
| **name** | | [String]#string | Discount name. |
| **discountType** | | [InvoiceDiscountType]#invoicediscounttype! | Discount type. |
| **percentage** | | [Decimal]#decimal | Discount percentage (for PERCENTAGE-type discounts). |

### InvoiceMarkSentInput

Input to the `invoiceMarkSent` mutation.

| Field | | Type | Description |
| --- | --- | --- | --- |
| **invoiceId** | | [ID]#id! | The unique identifier for the invoice. |
| **sendMethod** | | [InvoiceSendMethod]#invoicesendmethod! | How the invoice was sent. |
| **sentAt** | | [DateTime]#datetime | When the invoice was sent. |

### InvoicePatchInput

Input to the `invoicePatch` mutation. For each value if it's not provided - do not update it.

| Field | | Type | Description |
| --- | --- | --- | --- |
| **id** | | [ID]#id! | Unique identifier for the invoice. |
| **customerId** | | [ID]#id | The customer identifier to associate with invoice. |
| **status** | | [InvoiceCreateStatus]#invoicecreatestatus | Status of the Invoice. |
| **title** | | [String]#string | Invoice title at the top of the document. |
| **subhead** | | [String]#string | Invoice subheading text. |
| **invoiceDate** | | [Date]#date | Date when invoice is issued. |
| **currency** | | [CurrencyCode]#currencycode | Currency of the invoice. |
| **exchangeRate** | | [Decimal]#decimal | Exchange rate to business's currency from the invoice's currency. Used to value the invoice income within Wave's accounting transactions. |
| **dueDate** | | [Date]#date | Date when payment is due. |
| **items** | | [[InvoiceCreateItemInput]#invoicecreateiteminput!] | The line items (product, unit and price) that make up the invoiced sale. If provided, it would replace all items with given ones. |
| **memo** | | [String]#string | Invoice memo (notes) text. |
| **footer** | | [String]#string | Invoice footer text. |
| **disableAmexPayments** | | [Boolean]#boolean | Within a business that is enabled to accept credit card payments, indicates if this individual invoice has been marked to not be payable by american express payment. |
| **disableCreditCardPayments** | | [Boolean]#boolean | Within a business that is enabled to accept credit card payments, indicates if this individual invoice has been marked to not be payable by card. |
| **disableBankPayments** | | [Boolean]#boolean | Within a business that is enabled to accept bank payments, indicates if this individual invoice has been marked to not be payable by bank payment. |
| **itemTitle** | | [String]#string | The label for the 'Item' column in the listing of line items on the invoice. |
| **unitTitle** | | [String]#string | The label for the 'Unit' column in the listing of line items on the invoice. |
| **priceTitle** | | [String]#string | The label for the 'Price' column in the listing of line items on the invoice. |
| **amountTitle** | | [String]#string | The label for the 'Amount' (= unit x price) column in the listing of line items on the invoice. |
| **hideName** | | [Boolean]#boolean | Indicates whether item's product name in item column is hidden in the line items listing. |
| **hideDescription** | | [Boolean]#boolean | Indicates whether item's description in item column is hidden in the line items listing. |
| **hideUnit** | | [Boolean]#boolean | Indicates whether item's unit is hidden in the line items listing. |
| **hidePrice** | | [Boolean]#boolean | Indicates whether item's price is hidden in the line items listing. |
| **hideAmount** | | [Boolean]#boolean | Indicates whether item's amount is hidden in the line items listing. |
| **poNumber** | | [String]#string | Purchase order or sales order number for the invoice. |
| **invoiceNumber** | | [String]#string | Unique number assigned to the invoice. |
| **discounts** | | [[InvoiceDiscountInput]#invoicediscountinput!] | The discounts applied to the invoice (currently limited to max 1). |
| **requireTermsOfServiceAgreement** | | [Boolean]#boolean | Indicates whether the customer is required to accept the terms of service. |

### InvoiceSendInput

Input to the `invoiceSend` mutation.

| Field | | Type | Description |
| --- | --- | --- | --- |
| **invoiceId** | | [ID]#id! | The unique identifier for the invoice. |
| **to** | | [[String]#string!]! | Email addresses to receive an email. |
| **subject** | | [String]#string | Subject line of the email. |
| **message** | | [String]#string | Message body of the email. |
| **attachPDF** | | [Boolean]#boolean! | Include a PDF of the invoice as an attachment. |
| **fromAddress** | | [String]#string | Email address from |
| **ccMyself** | | [Boolean]#boolean | Carbon copy email. |

### MoneyDepositTransactionCreateDepositInput

Input representing a deposit.

| Field | | Type | Description |
| --- | --- | --- | --- |
| **accountId** | | [ID]#id! | Id of the account. |
| **amount** | | [Float]#float! | Date of the transaction. |

### MoneyDepositTransactionCreateFeeInput

Fee input.

| Field | | Type | Description |
| --- | --- | --- | --- |
| **accountId** | | [ID]#id! | ID of the account associated with the fee. |
| **amount** | | [Float]#float! | Amount. |

### MoneyDepositTransactionCreateInput

Input of the moneyDepositTransactionCreate Mutation

| Field | | Type | Description |
| --- | --- | --- | --- |
| **businessId** | | [ID]#id! | Id of the business. |
| **date** | | [Date]#date! | Date of the transaction. |
| **description** | | [String]#string! | Description for the transaction. |
| **deposit** | | [MoneyDepositTransactionCreateDepositInput]#moneydeposittransactioncreatedepositinput! | Deposit account and amount. |
| **lineItems** | | [[MoneyDepositTransactionCreateLineItemInput]#moneydeposittransactioncreatelineiteminput!]! | Line items. |
| **fees** | | [[MoneyDepositTransactionCreateFeeInput]#moneydeposittransactioncreatefeeinput!] | Fees. |
| **origin** | | [TransactionOrigin]#transactionorigin! | Origin of the transaction. |
| **externalId** | | [String]#string | ID of the transaction in an external system. |
| **createdAt** | | [DateTime]#datetime | Transaction timestamp. |
| **notes** | | [String]#string | Extra notes about the transaction. |

### MoneyDepositTransactionCreateLineItemInput

Line item input.

| Field | | Type | Description |
| --- | --- | --- | --- |
| **accountId** | | [ID]#id! | ID of the account associated with the line item. |
| **amount** | | [Float]#float! | Amount. |
| **customerId** | | [ID]#id | ID of the customer associated with the line item. |
| **taxes** | | [[TransactionCreateSalesTaxInput]#transactioncreatesalestaxinput!]! | Taxes applied to the line item. |

### MoneyTransactionCreateAnchorInput

Anchor input.

| Field | | Type | Description |
| --- | --- | --- | --- |
| **accountId** | | [ID]#id! | ID of the anchor account. |
| **amount** | | [Decimal]#decimal! | Amount of the transaction (unsigned). |
| **direction** | | [TransactionDirection]#transactiondirection! | Direction of a transaction |

### MoneyTransactionCreateInput

Input of the `moneyTransactionCreate` Mutation

| Field | | Type | Description |
| --- | --- | --- | --- |
| **businessId** | | [ID]#id! | The unique identifier for the business. |
| **externalId** | | [String]#string! | ID of the transaction in an external system. If you don't have one, generate a UUID and provide it. |
| **date** | | [Date]#date! | Date of the transaction. |
| **description** | | [String]#string! | Description for the transaction. |
| **notes** | | [String]#string | Extra notes about the transaction. |
| **anchor** | | [MoneyTransactionCreateAnchorInput]#moneytransactioncreateanchorinput! | Anchor item. |
| **lineItems** | | [[MoneyTransactionCreateLineItemInput]#moneytransactioncreatelineiteminput!]! | Line items. |

### MoneyTransactionCreateLineItemInput

Line item input.

| Field | | Type | Description |
| --- | --- | --- | --- |
| **accountId** | | [ID]#id! | ID of the account associated with the line item. |
| **amount** | | [Decimal]#decimal! | Amount of the line item (unsigned). |
| **balance** | | [BalanceType]#balancetype! | How the account should change in relation to the amount. |
| **customerId** | | [ID]#id | ID of the customer associated with the line item. |
| **description** | | [String]#string | Optional description for line item. |
| **taxes** | | [[MoneyTransactionCreateSalesTaxInput]#moneytransactioncreatesalestaxinput!] | Taxes applied to the line item. |

### MoneyTransactionCreateSalesTaxInput

Sales tax input.

| Field | | Type | Description |
| --- | --- | --- | --- |
| **salesTaxId** | | [ID]#id! | ID of the sales tax. |
| **amount** | | [Decimal]#decimal! | Override the amount of the tax (unsigned). |

### MoneyTransactionDetails

Input for creating a money transaction.

| Field | | Type | Description |
| --- | --- | --- | --- |
| **externalId** | | [String]#string! | ID of the transaction in an external system. If you don't have one, generate a UUID and provide it. |
| **date** | | [Date]#date! | Date of the transaction. |
| **description** | | [String]#string! | Description for the transaction. |
| **notes** | | [String]#string | Extra notes about the transaction. |
| **anchor** | | [MoneyTransactionCreateAnchorInput]#moneytransactioncreateanchorinput! | Anchor item. |
| **lineItems** | | [[MoneyTransactionCreateLineItemInput]#moneytransactioncreatelineiteminput!]! | Line items. |

### MoneyTransactionsCreateInput

Input of the `moneyTransactionsCreate` Mutation

| Field | | Type | Description |
| --- | --- | --- | --- |
| **businessId** | | [ID]#id! | The unique identifier for the business. |
| **transactions** | | [[MoneyTransactionDetails]#moneytransactiondetails!]! | Array of transactions to create. |

### ProductArchiveInput

Input to the `productArchive` mutation.

| Field | | Type | Description |
| --- | --- | --- | --- |
| **id** | | [ID]#id! | The unique identifier for the product. |

### ProductCreateInput

Input to the `productCreate` mutation.

| Field | | Type | Description |
| --- | --- | --- | --- |
| **businessId** | | [ID]#id! | The unique identifier for the business. |
| **name** | | [String]#string! | Name of the product. |
| **unitPrice** | | [Decimal]#decimal! | Price per unit in the major currency unit (rounded to nearest 5 decimal places with ties going away from zero). |
| **description** | | [String]#string | Product description. |
| **defaultSalesTaxIds** | | [[ID]#id!] | Default sales taxes to apply on product. |
| **incomeAccountId** | | [ID]#id | Income account to associate with this product. Account must be one of subtypes: `INCOME`, `DISCOUNTS`, `OTHER\_INCOME`. |
| **expenseAccountId** | | [ID]#id | Expense account to associate with this product. Account must be one of subtypes: `EXPENSE`, `COST\_OF\_GOODS\_SOLD`, `PAYMENT\_PROCESSING\_FEES`, `PAYROLL\_EXPENSES`. |

### ProductPatchInput

Input to the `productPatch` mutation.

| Field | | Type | Description |
| --- | --- | --- | --- |
| **id** | | [ID]#id! | The unique identifier for the product. |
| **name** | | [String]#string | Name of the product. |
| **description** | | [String]#string | Description of the product. |
| **unitPrice** | | [Decimal]#decimal | Price per unit in the major currency unit (rounded to nearest 5 decimal places with ties going away from zero). |
| **defaultSalesTaxIds** | | [[ID]#id!] | Default sales taxes to apply on product. |
| **incomeAccountId** | | [ID]#id | Income account to associate with this product. Account must be one of subtypes: `INCOME`, `DISCOUNTS`, `OTHER\_INCOME`. |
| **expenseAccountId** | | [ID]#id | Expense account to associate with this product. Account must be one of subtypes: `EXPENSE`, `COST\_OF\_GOODS\_SOLD`, `PAYMENT\_PROCESSING\_FEES`, `PAYROLL\_EXPENSES`. |

### SalesTaxArchiveInput

Input to the `salesTaxArchive` mutation.

| Field | | Type | Description |
| --- | --- | --- | --- |
| **id** | | [ID]#id! | The unique identifier for the sales tax. |

### SalesTaxCreateInput

Input to the `salesTaxCreate` mutation.

| Field | | Type | Description |
| --- | --- | --- | --- |
| **businessId** | | [ID]#id! | The unique identifier for the business. |
| **name** | | [String]#string! | Name of the tax. |
| **abbreviation** | | [String]#string! | An short form or code representing the sales tax. Max 10 characters, and MUST BE UNIQUE within business. |
| **rate** | | [Decimal]#decimal! | The current rate, as a decimal (e.g. 0.15 represents 15%; rounded to nearest 6 decimal places with ties going away from zero). |
| **description** | | [String]#string | User defined description for the sales tax. |
| **taxNumber** | | [String]#string | The tax's issued identification number from a taxing authority. |
| **showTaxNumberOnInvoices** | | [Boolean]#boolean | Display tax number beside the tax name on an invoice. |
| **isCompound** | | [Boolean]#boolean | Is a compound tax, or stacked tax. This tax is calculated on top of the subtotal and other tax amounts. |
| **isRecoverable** | | [Boolean]#boolean | Is a recoverable tax. It is recoverable if you can deduct the tax that you as a business paid from the tax that you have collected. |

### SalesTaxPatchInput

Input to the `salesTaxPatch` mutation.

| Field | | Type | Description |
| --- | --- | --- | --- |
| **id** | | [ID]#id! | The unique identifier for the sales tax. |
| **name** | | [String]#string | Name of the tax. |
| **abbreviation** | | [String]#string | An short form or code representing the sales tax |
| **description** | | [String]#string | User defined description for the sales tax. |
| **taxNumber** | | [String]#string | The tax's issued identification number from a taxing authority. |
| **showTaxNumberOnInvoices** | | [Boolean]#boolean | Display tax number beside the tax name on an invoice. |
| **rates** | | [[SalesTaxRateInput]#salestaxrateinput!] | Tax rate information. |

### SalesTaxRateInput

Sales tax rate input for the `salesTaxPatch` mutation

| Field | | Type | Description |
| --- | --- | --- | --- |
| **effective** | | [Date]#date! | Date from which the sales tax rate applies. |
| **rate** | | [Decimal]#decimal! | Tax rate applying from the effective date as a decimal (e.g. 0.15 represents 15%). |

### TransactionCreateSalesTaxInput

Sales tax input.

| Field | | Type | Description |
| --- | --- | --- | --- |
| **abbreviation** | | [String]#string! | Tax Abbreviation. |
| **amount** | | [Float]#float! | Tax Amount. |

## Enums

### AccountNormalBalanceType

Account balance type.

Value | Description || **CREDIT** | Credit |
| **DEBIT** | Debit |

### AccountSubtypeValue

Subtypes of accounts, as used in the Chart of Accounts.

Value | Description || **CASH\_AND\_BANK** | Cash & Bank |
| **COST\_OF\_GOODS\_SOLD** | Cost of Goods Sold |
| **CREDIT\_CARD** | Credit Card |
| **CUSTOMER\_PREPAYMENTS\_AND\_CREDITS** | Customer Prepayments and Customer Credits |
| **DEPRECIATION\_AND\_AMORTIZATION** | Depreciation and Amortization |
| **DISCOUNTS** | Discount |
| **DUE\_FOR\_PAYROLL** | Due For Payroll |
| **DUE\_TO\_YOU\_AND\_OTHER\_OWNERS** | Due to You and Other Business Owners |
| **EXPENSE** | Expense |
| **GAIN\_ON\_FOREIGN\_EXCHANGE** | Gain on Foreign Exchange |
| **INCOME** | Income |
| **INVENTORY** | Inventory |
| **LOANS** | Loan and Line of Credit |
| **LOSS\_ON\_FOREIGN\_EXCHANGE** | Loss on Foreign Exchange |
| **MONEY\_IN\_TRANSIT** | Money in Transit |
| **NON\_RETAINED\_EARNINGS** | Business Owner Contribution |
| **OTHER\_CURRENT\_ASSETS** | Other Short-Term Asset |
| **OTHER\_CURRENT\_LIABILITY** | Other Short-Term Liability |
| **OTHER\_INCOME** | Other Income |
| **OTHER\_LONG\_TERM\_ASSETS** | Other Long-Term Asset |
| **OTHER\_LONG\_TERM\_LIABILITY** | Other Long-Term Liability |
| **PAYABLE** | Payable |
| **PAYABLE\_BILLS** | System Payable Bill |
| **PAYABLE\_OTHER** | System Payable Non-Bill |
| **PAYMENT\_PROCESSING\_FEES** | Payment Processing Fee |
| **PAYROLL\_EXPENSES** | Payroll Expense |
| **PROPERTY\_PLANT\_EQUIPMENT** | Property, Plant, Equipment |
| **RECEIVABLE** | Receivable |
| **RECEIVABLE\_INVOICES** | System Receivable Invoice |
| **RECEIVABLE\_OTHER** | System Receivable Non-Invoice |
| **RETAINED\_EARNINGS** | Retained Earnings: Profit and Business Owner Drawing |
| **SALES\_TAX** | Sales Tax on Sales and Purchases |
| **SYSTEM\_CUSTOMER\_CREDITS** | System Customer Credits |
| **TRANSFERS** | Transfers |
| **UNCATEGORIZED\_EXPENSE** | Uncategorized Expense |
| **UNCATEGORIZED\_INCOME** | Uncategorized Income |
| **UNKNOWN\_ACCOUNT** | Unknown Account |
| **VENDOR\_PREPAYMENTS\_AND\_CREDITS** | Vendor Prepayments and Vendor Credits |

### AccountTypeValue

Types of accounts, as used in the Chart of Accounts.

Value | Description || **ASSET** | Represents the different types of economic resources owned or controlled by an entity. |
| **EQUITY** | Represents the residual equity of an entity. |
| **EXPENSE** | Represents the business's expenditures. |
| **INCOME** | Represents the business's earnings. |
| **LIABILITY** | Represents the different types of economic obligations of an entity. |

### BalanceType

Balance type that expresses how to change an account.

Value | Description || **CREDIT** | Credit. |
| **DEBIT** | Debit. |
| **DECREASE** | Decrease using the inverse of the account's normal balance type. For contra accounts whose subtype is `DISCOUNTS` or `DEPRECIATION\_AND\_AMORTIZATION`, apply the amount in the account's normal balance type. |
| **INCREASE** | Increase using the account's normal balance type. For contra accounts whose subtype is `DISCOUNTS` or `DEPRECIATION\_AND\_AMORTIZATION`, apply the amount in the inverse of the account's normal balance type. |

### BusinessSubtypeValue

Granular area of focus of a business.

Value | Description || **ADVERTISING\_PUBLIC\_RELATIONS** | Advertising, Public Relations |
| **AGRICULTURE\_RANCHING\_FARMING** | Agriculture, Ranching and Farming |
| **ARTISTS\_PHOTOGRAPHERS\_CREATIVE\_\_ACTOR** | Actor |
| **ARTISTS\_PHOTOGRAPHERS\_CREATIVE\_\_AUDIO\_VISUAL\_PRODUCTION** | Audio/Visual Production |
| **ARTISTS\_PHOTOGRAPHERS\_CREATIVE\_\_CRAFTSPERSON** | Craftsperson |
| **ARTISTS\_PHOTOGRAPHERS\_CREATIVE\_\_DANCER\_CHOREOG** | Dancer, Choreographer |
| **ARTISTS\_PHOTOGRAPHERS\_CREATIVE\_\_MUSICIAN** | Musician |
| **ARTISTS\_PHOTOGRAPHERS\_CREATIVE\_\_OTHER** | Other Creative |
| **ARTISTS\_PHOTOGRAPHERS\_CREATIVE\_\_PERFORMING\_ARTS\_ACTING\_MUSIC\_DANCE** | Performing Arts (acting, music, dance) |
| **ARTISTS\_PHOTOGRAPHERS\_CREATIVE\_\_PHOTOGRAPHER** | Photographer |
| **ARTISTS\_PHOTOGRAPHERS\_CREATIVE\_\_VISUAL\_ARTIST** | Visual Artist |
| **AUTOMOTIVE\_SALES\_AND\_REPAIR** | Automotive Repair & Sales |
| **CHURCH\_RELIGIOUS\_ORGANIZATION** | Church, Religious Organization |
| **CONSTRUCTION\_HOME\_IMPROVEMENT\_\_CONTRACTOR** | Contractor |
| **CONSTRUCTION\_HOME\_IMPROVEMENT\_\_ENGINEER** | Engineer |
| **CONSTRUCTION\_HOME\_IMPROVEMENT\_\_HOME\_INSPECTOR** | Home Inspector |
| **CONSTRUCTION\_HOME\_IMPROVEMENT\_\_OTHER\_TRADES** | Trade |
| **CONSULTANTS\_PROFESSIONALS\_\_ACCOUNTANTS\_BOOKKEEPERS** | Accountant, Bookkeeper |
| **CONSULTANTS\_PROFESSIONALS\_\_COMMUNICATIONS** | Communications, Marketing, PR |
| **CONSULTANTS\_PROFESSIONALS\_\_EXECUTIVE\_COACH** | Executive Coach |
| **CONSULTANTS\_PROFESSIONALS\_\_HR\_RECRUITMENT\_STAFFING** | HR, Recruitment, Staffing |
| **CONSULTANTS\_PROFESSIONALS\_\_IT\_TECHNICAL** | IT, Technical |
| **CONSULTANTS\_PROFESSIONALS\_\_OTHER** | Other Consultant |
| **CONSULTANTS\_PROFESSIONALS\_\_SALES** | Sales |
| **DESIGN\_ARCHITECTURE\_ENGINEERING** | Design, Architecture, Engineering |
| **FINANCIAL\_SERVICES** | Other Financial Service |
| **HAIR\_SPA\_AESTHETICS\_\_HAIR\_SALON** | Salon, Spa |
| **HAIR\_SPA\_AESTHETICS\_\_MASSAGE** | Massage |
| **HAIR\_SPA\_AESTHETICS\_\_NAIL\_SKIN\_AESTHETICS** | Nails, Skin, Aesthetics |
| **HAIR\_SPA\_AESTHETICS\_\_OTHER** | Other Aesthetics/Spa |
| **INSURANCE\_AGENCY\_BROKER** | Insurance Agency, Broker |
| **LANDLORD\_PROPERTY\_MANAGER\_\_LANDLORD** | Landlord |
| **LANDLORD\_PROPERTY\_MANAGER\_\_PROPERTY\_MANAGER** | Property Manager |
| **LAWN\_CARE\_LANDSCAPING** | Lawn Care, Landscaping |
| **LEGAL\_SERVICES** | Legal Services |
| **LODGING\_HOTEL\_MOTEL** | Lodging, Hotel, Motel |
| **MANUFACTURER\_REPRESENTATIVE\_AGENT** | Manufacturing Representative, Agent |
| **MEDICAL\_DENTAL\_HEALTH\_SERVICE\_\_CHIROPRACTOR** | Chiropractor |
| **MEDICAL\_DENTAL\_HEALTH\_SERVICE\_\_DENTIST** | Dentist |
| **MEDICAL\_DENTAL\_HEALTH\_SERVICE\_\_FITNESS** | Fitness |
| **MEDICAL\_DENTAL\_HEALTH\_SERVICE\_\_MASSAGE\_THERAPIST** | Massage Therapist |
| **MEDICAL\_DENTAL\_HEALTH\_SERVICE\_\_MENTAL\_HEALTH** | Mental Health |
| **MEDICAL\_DENTAL\_HEALTH\_SERVICE\_\_NUTRITION** | Nutrition |
| **MEDICAL\_DENTAL\_HEALTH\_SERVICE\_\_OCCUP\_THERAPIST** | Occupational Therapist |
| **MEDICAL\_DENTAL\_HEALTH\_SERVICE\_\_OTHER** | Other Health |
| **MEDICAL\_DENTAL\_HEALTH\_SERVICE\_\_PHYSICAL\_THERAPIST** | Physical Therapist |
| **NONPROFIT\_ASSOCIATIONS\_GROUPS\_\_ASSOCIATION** | Association |
| **NONPROFIT\_ASSOCIATIONS\_GROUPS\_\_CHARITABLE** | Charity |
| **NONPROFIT\_ASSOCIATIONS\_GROUPS\_\_CLUB** | Club |
| **NONPROFIT\_ASSOCIATIONS\_GROUPS\_\_CONDO** | Condo |
| **NONPROFIT\_ASSOCIATIONS\_GROUPS\_\_OTHER** | Other Non-Profit |
| **NONPROFIT\_ASSOCIATIONS\_GROUPS\_\_PARENT\_BOOSTER** | Parent Booster USA |
| **OTHER\_\_OTHER\_PLEASE\_SPECIFY** | Other (please specify) |
| **PRODUCT\_PROVIDER\_\_MANUFACTURER** | Manufacturer |
| **PRODUCT\_PROVIDER\_\_MANUFACTURER\_AND\_VENDOR** | Manufacturer and Vendor |
| **PRODUCT\_PROVIDER\_\_OTHER** | Other Product-based Business |
| **PRODUCT\_PROVIDER\_\_VENDOR** | Vendor |
| **REAL\_ESTATE\_SALES\_\_AGENT** | Real Estate Agent |
| **REAL\_ESTATE\_SALES\_\_BROKER** | Real Estate Broker |
| **REAL\_ESTATE\_SALES\_\_OTHER** | Other Real Estate |
| **RENTAL** | Real Estate Rental |
| **REPAIR\_AND\_MAINTENANCE** | Repairs/Maintenance |
| **RESTAURANT\_CATERER\_BAR** | Restaurant, Caterer, Bar |
| **RETAILERS\_AND\_RESELLERS\_\_EBAY** | eBay Resellers |
| **RETAILERS\_AND\_RESELLERS\_\_ETSY** | Etsy Vendors |
| **RETAILERS\_AND\_RESELLERS\_\_NON\_STORE\_RETAILER** | Non-Store Retailers |
| **RETAILERS\_AND\_RESELLERS\_\_OTHER** | Other Retailers |
| **RETAILERS\_AND\_RESELLERS\_\_STORE\_RETAILER** | Store Retailers |
| **SALES\_INDEPENDENT\_AGENT** | Sales: Independent Agent |
| **SERVICE\_PROVIDER\_\_CLEANING\_JANITORIAL\_SERVICES** | Cleaning, Janitorial Services |
| **SERVICE\_PROVIDER\_\_CUSTOMER\_SERVICE\_SUPPORT** | Customer Service/Support |
| **SERVICE\_PROVIDER\_\_DOMESTIC\_CAREGIVER\_EMPLOYER** | Household Employer |
| **SERVICE\_PROVIDER\_\_FITNESS** | Fitness |
| **SERVICE\_PROVIDER\_\_OFFICE\_ADMIN\_SUPPORT** | Office Admin/Support |
| **SERVICE\_PROVIDER\_\_OTHER** | Other Service-based Business |
| **SERVICE\_PROVIDER\_\_PERSONAL\_CARE** | Personal Care |
| **SERVICE\_PROVIDER\_\_TELEMARKETING** | Telemarketing |
| **SERVICE\_PROVIDER\_\_TRANSCRIPTION** | Transcription |
| **TRANSPORTATION\_TRUCKING\_DELIVERY** | Transportation, Trucking, Deliver |
| **WEB\_MEDIA\_FREELANCER\_\_DESIGNER** | Designer |
| **WEB\_MEDIA\_FREELANCER\_\_MARKETING\_SOCIAL\_MEDIA** | Marketing, Social Media |
| **WEB\_MEDIA\_FREELANCER\_\_OTHER** | Other Media/Tech |
| **WEB\_MEDIA\_FREELANCER\_\_PROGRAMMER** | Programmer |
| **WEB\_MEDIA\_FREELANCER\_\_SEO** | SEO |
| **WEB\_MEDIA\_FREELANCER\_\_WRITER** | Writer |
| **WHOLESALE\_DISTRIBUTION\_SALES** | Wholesale Distribution and Sales |

### BusinessTypeValue

Area of focus of a business.

Value | Description || **ARTISTS\_PHOTOGRAPHERS\_CREATIVE** | Artists, Photographers & Creative Types |
| **CONSULTANTS\_PROFESSIONALS** | Consultants & Professionals |
| **FINANCE\_INSURANCE** | Financial Services |
| **HAIR\_SPA\_AESTHETICS** | Hair, Spa & Aesthetics |
| **MEDICAL\_DENTAL\_HEALTH\_SERVICE** | Medical, Dental, Health |
| **NONPROFIT\_ASSOCIATIONS\_GROUPS** | Non-profits, Associations & Groups |
| **OTHER** | Other (please specify) |
| **PRODUCT\_PROVIDER** | General: I make or sell a PRODUCT |
| **REALESTATE\_HOME** | Real Estate, Construction & Home Improvement |
| **RETAILERS\_AND\_RESELLERS** | Retailers, Resellers & Sales |
| **SERVICE\_PROVIDER** | General: I provide a SERVICE |
| **WEB\_MEDIA\_FREELANCER** | Web, Tech & Media |

### CountryCode

Country codes ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).

Value | Description || **AD** | Andorra |
| **AE** | United Arab Emirates |
| **AF** | Afghanistan |
| **AG** | Antigua and Barbuda |
| **AI** | Anguilla |
| **AL** | Albania |
| **AM** | Armenia |
| **AO** | Angola |
| **AQ** | Antarctica |
| **AR** | Argentina |
| **AS** | American Samoa |
| **AT** | Austria |
| **AU** | Australia |
| **AW** | Aruba |
| **AX** | Åland Islands |
| **AZ** | Azerbaijan |
| **BA** | Bosnia and Herzegovina |
| **BB** | Barbados |
| **BD** | Bangladesh |
| **BE** | Belgium |
| **BF** | Burkina Faso |
| **BG** | Bulgaria |
| **BH** | Bahrain |
| **BI** | Burundi |
| **BJ** | Benin |
| **BL** | Saint Barthélemy |
| **BM** | Bermuda |
| **BN** | Brunei Darussalam |
| **BO** | Bolivia, Plurinational State of |
| **BQ** | Bonaire, Sint Eustatius and Saba |
| **BR** | Brazil |
| **BS** | Bahamas |
| **BT** | Bhutan |
| **BV** | Bouvet Island |
| **BW** | Botswana |
| **BY** | Belarus |
| **BZ** | Belize |
| **CA** | Canada |
| **CC** | Cocos (Keeling) Islands |
| **CD** | Congo, The Democratic Republic of the |
| **CF** | Central African Republic |
| **CG** | Congo |
| **CH** | Switzerland |
| **CI** | Côte d'Ivoire |
| **CK** | Cook Islands |
| **CL** | Chile |
| **CM** | Cameroon |
| **CN** | China |
| **CO** | Colombia |
| **CR** | Costa Rica |
| **CU** | Cuba |
| **CV** | Cape Verde |
| **CW** | Curaçao |
| **CX** | Christmas Island |
| **CY** | Cyprus |
| **CZ** | Czech Republic |
| **DE** | Germany |
| **DJ** | Djibouti |
| **DK** | Denmark |
| **DM** | Dominica |
| **DO** | Dominican Republic |
| **DZ** | Algeria |
| **EC** | Ecuador |
| **EE** | Estonia |
| **EG** | Egypt |
| **EH** | Western Sahara |
| **ER** | Eritrea |
| **ES** | Spain |
| **ET** | Ethiopia |
| **FI** | Finland |
| **FJ** | Fiji |
| **FK** | Falkland Islands |
| **FM** | Micronesia, Federated States of |
| **FO** | Faroe Islands |
| **FR** | France |
| **GA** | Gabon |
| **GB** | United Kingdom |
| **GD** | Grenada |
| **GE** | Georgia |
| **GF** | French Guiana |
| **GG** | Guernsey |
| **GH** | Ghana |
| **GI** | Gibraltar |
| **GL** | Greenland |
| **GM** | Gambia |
| **GN** | Guinea |
| **GP** | Guadeloupe |
| **GQ** | Equatorial Guinea |
| **GR** | Greece |
| **GS** | South Georgia and the South Sandwich Islands |
| **GT** | Guatemala |
| **GU** | Guam |
| **GW** | Guinea-Bissau |
| **GY** | Guyana |
| **HK** | Hong Kong |
| **HM** | Heard Island and McDonald Islands |
| **HN** | Honduras |
| **HR** | Croatia |
| **HT** | Haiti |
| **HU** | Hungary |
| **ID** | Indonesia |
| **IE** | Ireland |
| **IL** | Israel |
| **IM** | Isle of Man |
| **IN** | India |
| **IO** | British Indian Ocean Territory |
| **IQ** | Iraq |
| **IR** | Iran |
| **IS** | Iceland |
| **IT** | Italy |
| **JE** | Jersey |
| **JM** | Jamaica |
| **JO** | Jordan |
| **JP** | Japan |
| **KE** | Kenya |
| **KG** | Kyrgyzstan |
| **KH** | Cambodia |
| **KI** | Kiribati |
| **KM** | Comoros |
| **KN** | Saint Kitts and Nevis |
| **KP** | Korea, Democratic People's Republic of |
| **KR** | Korea, Republic of |
| **KW** | Kuwait |
| **KY** | Cayman Islands |
| **KZ** | Kazakhstan |
| **LA** | Lao People's Democratic Republic |
| **LB** | Lebanon |
| **LC** | Saint Lucia |
| **LI** | Liechtenstein |
| **LK** | Sri Lanka |
| **LR** | Liberia |
| **LS** | Lesotho |
| **LT** | Lithuania |
| **LU** | Luxembourg |
| **LV** | Latvia |
| **LY** | Libya |
| **MA** | Morocco |
| **MC** | Monaco |
| **MD** | Moldova, Republic of |
| **ME** | Montenegro |
| **MF** | Saint Martin |
| **MG** | Madagascar |
| **MH** | Marshall Islands |
| **MK** | North Macedonia |
| **ML** | Mali |
| **MM** | Myanmar |
| **MN** | Mongolia |
| **MO** | Macao |
| **MP** | Northern Mariana Islands |
| **MQ** | Martinique |
| **MR** | Mauritania |
| **MS** | Montserrat |
| **MT** | Malta |
| **MU** | Mauritius |
| **MV** | Maldives |
| **MW** | Malawi |
| **MX** | Mexico |
| **MY** | Malaysia |
| **MZ** | Mozambique |
| **NA** | Namibia |
| **NC** | New Caledonia |
| **NE** | Niger |
| **NF** | Norfolk Island |
| **NG** | Nigeria |
| **NI** | Nicaragua |
| **NL** | Netherlands |
| **NO** | Norway |
| **NP** | Nepal |
| **NR** | Nauru |
| **NU** | Niue |
| **NZ** | New Zealand |
| **OM** | Oman |
| **PA** | Panama |
| **PE** | Peru |
| **PF** | French Polynesia |
| **PG** | Papua New Guinea |
| **PH** | Philippines |
| **PK** | Pakistan |
| **PL** | Poland |
| **PM** | Saint Pierre and Miquelon |
| **PN** | Pitcairn |
| **PR** | Puerto Rico |
| **PS** | Palestine |
| **PT** | Portugal |
| **PW** | Palau |
| **PY** | Paraguay |
| **QA** | Qatar |
| **RE** | Réunion |
| **RO** | Romania |
| **RS** | Serbia |
| **RU** | Russian Federation |
| **RW** | Rwanda |
| **SA** | Saudi Arabia |
| **SB** | Solomon Islands |
| **SC** | Seychelles |
| **SD** | Sudan |
| **SE** | Sweden |
| **SG** | Singapore |
| **SH** | Saint Helena, Ascension and Tristan da Cunha |
| **SI** | Slovenia |
| **SJ** | Svalbard and Jan Mayen |
| **SK** | Slovakia |
| **SL** | Sierra Leone |
| **SM** | San Marino |
| **SN** | Senegal |
| **SO** | Somalia |
| **SR** | Suriname |
| **SS** | South Sudan |
| **ST** | Sao Tome and Principe |
| **SV** | El Salvador |
| **SX** | Sint Maarten |
| **SY** | Syria |
| **SZ** | Eswatini |
| **TC** | Turks and Caicos Islands |
| **TD** | Chad |
| **TF** | French Southern Territories |
| **TG** | Togo |
| **TH** | Thailand |
| **TJ** | Tajikistan |
| **TK** | Tokelau |
| **TL** | Timor-Leste |
| **TM** | Turkmenistan |
| **TN** | Tunisia |
| **TO** | Tonga |
| **TR** | Turkey |
| **TT** | Trinidad and Tobago |
| **TV** | Tuvalu |
| **TW** | Taiwan |
| **TZ** | Tanzania, United Republic of |
| **UA** | Ukraine |
| **UG** | Uganda |
| **UM** | United States Minor Outlying Islands |
| **US** | United States |
| **UY** | Uruguay |
| **UZ** | Uzbekistan |
| **VA** | Holy See |
| **VC** | Saint Vincent and the Grenadines |
| **VE** | Venezuela, Bolivarian Republic of |
| **VG** | Virgin Islands (British) |
| **VI** | Virgin Islands (U.S) |
| **VN** | Viet Nam |
| **VU** | Vanuatu |
| **WF** | Wallis and Futuna |
| **WS** | Samoa |
| **YE** | Yemen |
| **YT** | Mayotte |
| **ZA** | South Africa |
| **ZM** | Zambia |
| **ZW** | Zimbabwe |

### CurrencyCode

Currency codes based on ISO 4217.

Value | Description || **AED** | UAE dirham |
| **AFN** | Afghani |
| **ALL** | Lek |
| **AMD** | Armenian dram |
| **ANG** | Netherlands Antillean Guilder |
| **AOA** | Kwanza |
| **ARS** | Argentinian peso |
| **AUD** | Australian dollar |
| **AWG** | Aruban Guilder |
| **AZN** | New Manat |
| **BAM** | Convertible Marks |
| **BBD** | Barbados dollar |
| **BDT** | Taka |
| **BGN** | Lev |
| **BHD** | Bahraini dinar |
| **BIF** | Burundi franc |
| **BMD** | Bermuda dollar |
| **BND** | Brunei dollar |
| **BOB** | Boliviano |
| **BRL** | Real |
| **BSD** | Bahamian dollar |
| **BTN** | Ngultrum |
| **BWP** | Pula |
| **BYR** | Belarussian rouble |
| **BZD** | Belize dollar |
| **CAD** | Canadian dollar |
| **CDF** | Franc congolais |
| **CHF** | Swiss franc |
| **CLP** | Chilean peso |
| **CNY** | Ren-Min-Bi yuan |
| **COP** | Colombian peso |
| **CRC** | Costa Rican colon |
| **CUP** | Cuban peso |
| **CVE** | Cape Verde escudo |
| **CZK** | Czech koruna |
| **DJF** | Djibouti franc |
| **DKK** | Danish krone |
| **DOP** | Dominican peso |
| **DZD** | Algerian dinar |
| **EEK** | Estonian kroon |
| **EGP** | Egyptian pound |
| **ERN** | Nakfa |
| **ETB** | Ethiopian birr |
| **EUR** | Euro |
| **FJD** | Fiji dollar |
| **FKP** | Falkland Islands (Malvinas) Pound |
| **GBP** | Pound sterling |
| **GEL** | Lari |
| **GHS** | Ghana Cedi |
| **GIP** | Gibraltar pound |
| **GMD** | Dalasi |
| **GNF** | Guinean franc |
| **GTQ** | Quetzal |
| **GWP** | Guinean bissau Peso |
| **GYD** | Guyana dollar |
| **HKD** | Hong Kong dollar |
| **HNL** | Lempira |
| **HRK** | Kuna |
| **HTG** | Haitian gourde |
| **HUF** | Forint |
| **IDR** | Rupiah |
| **ILS** | New Israeli sheqel |
| **INR** | Indian rupee |
| **IQD** | Iraqi dinar |
| **IRR** | Iranian rial |
| **ISK** | Icelandic Krona |
| **JMD** | Jamaican dollar |
| **JOD** | Jordanian dinar |
| **JPY** | Yen |
| **KES** | Kenyan shilling |
| **KGS** | Kyrgyz Som |
| **KHR** | Riel |
| **KMF** | Comoro franc |
| **KRW** | Won |
| **KWD** | Kuwaiti dinar |
| **KYD** | Cayman Islands dollar |
| **KZT** | Tenge |
| **LAK** | Kip |
| **LBP** | Lebanese pound |
| **LKR** | Sri Lankan rupee |
| **LRD** | Liberian dollar |
| **LSL** | Loti |
| **LTL** | Lithuanian litus |
| **LVL** | Latvian lats |
| **LYD** | Libyan dinar |
| **MAD** | Moroccan dirham |
| **MDL** | Moldovan leu |
| **MGA** | Malagasy Ariary |
| **MKD** | Denar |
| **MMK** | Kyat |
| **MNT** | Tugrik |
| **MOP** | Pataca |
| **MRO** | Ouguiya |
| **MRU** | Ouguiya |
| **MUR** | Mauritian rupee |
| **MVR** | Rufiyaa |
| **MWK** | Kwacha |
| **MXN** | Mexican peso |
| **MYR** | Malaysian ringgit |
| **MZN** | Metical |
| **NAD** | Namibian dollar |
| **NGN** | Naira |
| **NIO** | Cordoba Oro |
| **NOK** | Norwegian krone |
| **NPR** | Nepalese rupee |
| **NZD** | New Zealand dollar |
| **OMR** | Omani rial |
| **PAB** | Balboa |
| **PEN** | Nuevo Sol |
| **PGK** | Kina |
| **PHP** | Philippine peso |
| **PKR** | Pakistani rupee |
| **PLN** | Zloty |
| **PYG** | Guarani |
| **QAR** | Qatari riyal |
| **RON** | New Leu |
| **RSD** | Serbian Dinar |
| **RUB** | Russian rouble |
| **RWF** | Rwanda franc |
| **SAR** | Saudi riyal |
| **SBD** | Solomon Islands Dollar |
| **SCR** | Seychelles rupee |
| **SDG** | Sudanese Pound |
| **SEK** | Swedish Krona |
| **SGD** | Singapore dollar |
| **SHP** | Saint Helena Pound |
| **SLL** | Leone |
| **SOS** | Somali shilling |
| **SRD** | Surinam dollar |
| **SSP** | South Sudanese pound |
| **STD** | Dobra |
| **SVC** | El Salvador colon |
| **SYP** | Syrian pound |
| **SZL** | Lilangeni |
| **THB** | Baht |
| **TJS** | Somoni |
| **TMM** | Manat |
| **TND** | Tunisian dinar |
| **TOP** | Pa'anga |
| **TRY** | Turkish Lira |
| **TTD** | Trinidad and Tobago dollar |
| **TWD** | Taiwan New Dollar |
| **TZS** | Tanzanian shilling |
| **UAH** | Hryvnia |
| **UGX** | Ugandan shilling |
| **USD** | United States dollar |
| **UYU** | Uruguayo peso |
| **UZS** | Uzbekistan sum |
| **VEF** | Bolivar Fuerte |
| **VND** | Dong |
| **VUV** | Vatu |
| **WST** | Samoan Tala |
| **XAF** | CFA Franc - BEAC |
| **XCD** | Eastern Caribbean dollar |
| **XOF** | CFA franc - BCEAO |
| **XPF** | Comptoirs Francais du Pacifique Francs |
| **YER** | Yemeni rial |
| **ZAR** | Rand |
| **ZMK** | Kwacha |
| **ZMW** | Kwacha |
| **ZWD** | Zimbabwean dollar |

### CustomerSort

Options by which customers can be ordered.

Value | Description || **CREATED\_AT\_ASC** | Ascending by creation time. |
| **CREATED\_AT\_DESC** | Descending by creation time. |
| **MODIFIED\_AT\_ASC** | Ascending by modified time. |
| **MODIFIED\_AT\_DESC** | Descending by modified time. |
| **NAME\_ASC** | Ascending by name. |
| **NAME\_DESC** | Descending by name. |

### InvoiceCreateStatus

Status of an invoice.

Value | Description || **DRAFT** | The invoice is still a draft. |
| **SAVED** | The invoice was saved. |

### InvoiceDiscountType

Type of invoice discount.

Value | Description || **FIXED** | Fixed dollar amount discount. |
| **PERCENTAGE** | Type of invoice discount. |

### InvoiceSendMethod

Invoice send method.

Value | Description || **EXPORT\_PDF** | Export PDF. |
| **GMAIL** | Gmail |
| **MARKED\_SENT** | Marked as sent. |
| **NOT\_SENT** | Not sent. |
| **OUTLOOK** | Outlook. |
| **SHARED\_LINK** | Shared link. |
| **SKIPPED** | Skipped. |
| **WAVE** | Wave. |
| **YAHOO** | Yahoo. |

### InvoiceSort

Options by which invoices can be ordered.

Value | Description || **AMOUNT\_DUE\_ASC** | Ascending by amount due. |
| **AMOUNT\_DUE\_DESC** | Descending by amount due. |
| **AMOUNT\_PAID\_ASC** | Ascending by amount paid. |
| **AMOUNT\_PAID\_DESC** | Descending by amount paid. |
| **CREATED\_AT\_ASC** | Ascending by creation time. |
| **CREATED\_AT\_DESC** | Descending by creation time. |
| **CUSTOMER\_NAME\_ASC** | Ascending by customer's name. |
| **CUSTOMER\_NAME\_DESC** | Descending by customer's name. |
| **DUE\_AT\_ASC** | Ascending by due date. |
| **DUE\_AT\_DESC** | Descending by due date. |
| **INVOICE\_DATE\_ASC** | Ascending by invoice date. |
| **INVOICE\_DATE\_DESC** | Descending by invoice date. |
| **INVOICE\_NUMBER\_ASC** | Ascending by invoice number. |
| **INVOICE\_NUMBER\_DESC** | Descending by invoice number. |
| **MODIFIED\_AT\_ASC** | Ascending by modified date. |
| **MODIFIED\_AT\_DESC** | Descending by modified date. |
| **STATUS\_ASC** | Ascending by status. |
| **STATUS\_DESC** | Descending by status. |
| **TOTAL\_ASC** | Ascending by total amount. |
| **TOTAL\_DESC** | Descending by total amount. |

### InvoiceStatus

Status of an invoice.

Value | Description || **DRAFT** | The invoice is still a draft. |
| **OVERDUE** | The invoice is overdue. |
| **OVERPAID** | The invoice was overpaid. |
| **PAID** | The invoice was paid. |
| **PARTIAL** | The invoice was partially paid. |
| **SAVED** | The invoice was saved. |
| **SENT** | The invoice was sent. |
| **UNPAID** | The invoice is unpaid. |
| **VIEWED** | The invoice was viewed. |

### OrganizationalType

Forms of business ownership.

Value | Description || **CORPORATION** | Corporation |
| **PARTNERSHIP** | Partnership |
| **SOLE\_PROPRIETORSHIP** | Sole Proprietorship |

### ProductSort

Options by which products can be ordered.

Value | Description || **CREATED\_AT\_ASC** | Ascending by creation time. |
| **CREATED\_AT\_DESC** | Descending by creation time. |
| **MODIFIED\_AT\_ASC** | Ascending by modified time. |
| **MODIFIED\_AT\_DESC** | Descending by modified time. |
| **NAME\_ASC** | Ascending by name. |
| **NAME\_DESC** | Descending by name. |

### Schema

Wave's schemas.

Value | Description || **HRBLOCK** | Available only to HR Block integration. |
| **INTERNAL** | Available only to Wave. |
| **PUBLIC** | Available to all third parties. |
| **STAFF** | Available only to Wave staff. |

### TransactionDirection

Represents the direction of a transaction.

Value | Description || **DEPOSIT** | To put in. |
| **WITHDRAWAL** | To remove from. |

### TransactionOrigin

Represents the origin of a transaction.

Value | Description || **MANUAL** | Manually created transaction. |
| **ZAPIER** | Transaction created through Zapier. |

## Scalars

### Boolean

The `Boolean` scalar type represents `true` or `false`.

### Date

ISO-8601 date object. Format returned will follow `yyyy-MM-dd`.

### DateTime

ISO-8601 date and time object. Format returned will follow `yyyy-MM-ddThh:mm:ss.sssZ` where the timezone is UTC.

### Decimal

A signed decimal number, which supports arbitrary precision and is serialized as a string. Example value: `14.99`.

### Float

The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).

### HexColorCode

A field whose value is a hex color code: https://en.wikipedia.org/wiki/Web\_colors.

### ID

The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `"4"`) or integer (such as `4`) input value will be accepted as an ID.

### Int

The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.

### JSON

The `JSON` scalar type represents JSON values as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf).

### String

The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.

### URL

A field whose value conforms to the standard URL format as specified in RFC3986: https://www.ietf.org/rfc/rfc3986.txt.

## Interfaces

### BusinessNode

An object belonging to a `Business` with an `ID`.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **id** | | [ID]#id! | ID of the object. |
| **business** | | [Business]#business! | Business that the node belongs to. |

### InvoiceDiscount

Common base properties of InvoiceDiscounts.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **createdAt** | | [DateTime]#datetime! | When the invoice discount was created. |
| **modifiedAt** | | [DateTime]#datetime! | When the invoice discount was last modified. |
| **name** | | [String]#string | A description of the discount. |

### Node

An object with an `ID`.

| Field | Argument | Type | Description |
| --- | --- | --- | --- |
| **id** | | [ID]#id! | ID of the object. |

## Unions

### InvoiceSource

Specifies either the invoice is made from estimate, is recurring, or created manually.

Type | Description || **[Estimate]#estimate** | An approximate bill given to a buyer indicating the products or services, quantities, and expected prices (not a request for payment). |
| **[RecurringInvoice](#recurringinvoice)** | A template that can be used to generate and possibly pay an invoice at regular intervals. |
| **[NewEstimate]#newestimate** | An estimate created in our new platform. |