-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapis.yml
More file actions
1008 lines (1008 loc) · 38.6 KB
/
Copy pathapis.yml
File metadata and controls
1008 lines (1008 loc) · 38.6 KB
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
name: Basware
description: Basware is a cloud-based e-invoicing and purchase-to-pay platform that
enables global enterprises to automate their invoice and procurement processes. The
platform provides REST APIs for submitting and receiving electronic invoices across
70+ formats, managing purchase orders, and processing accounts payable workflows.
Basware Network connects buyers and suppliers worldwide through a single integration
point, handling format conversion and delivery. The APIs support master data management,
user administration, document archiving, and real-time transaction data access for
finance and procurement operations.
accessModel:
pricing: enterprise
onboarding: self-serve
trial: false
try_now: false
public: false
label: Enterprise · Self-serve signup
confidence: high
source:
- plans
- authentication
generated: '2026-07-22'
method: derived
image: https://kinlane-images.s3.amazonaws.com/shared/apis-json/icons/basware.png
url: https://raw.githubusercontent.com/api-evangelist/basware/refs/heads/main/apis.yml
type: Index
created: "2026-06-13"
modified: "2026-06-13"
specificationVersion: '0.23'
tags:
- E-Invoicing
- Purchase-To-Pay
- Accounts Payable
- Procurement
- Electronic Invoicing
- Finance Automation
- B2B Payments
tags_raw:
- E-Invoicing
- Purchase-to-Pay
- Accounts Payable
- Procurement
- Electronic Invoicing
- Finance Automation
- B2B Payments
apis:
- name: Basware Data Access API
description: >-
The Basware Data Access API allows organizations to query and extract data from Basware systems for
reporting, analytics, and integration purposes. It enables programmatic retrieval of transaction data,
invoice records, and operational metrics from the Basware platform to feed downstream business intelligence
and ERP systems.
image: https://kinlane-images.s3.amazonaws.com/shared/apis-json/apis-json-logo.jpg
humanURL: https://developer.basware.com/en/api/basware
baseURL: https://api.basware.com/data
tags:
- Data Access
- Reporting
- Analytics
- Business Intelligence
properties:
- type: Documentation
url: https://developer.basware.com/en/api/basware
- type: GettingStarted
url: https://developer.basware.com/en/api/basware/get-started
- name: Basware SmartPDF API
description: >-
The Basware SmartPDF API provides PDF document processing and conversion capabilities within the Basware
platform. It enables automated extraction and processing of invoice data from PDF documents, supporting
touchless invoice processing workflows and integration with accounts payable automation systems.
image: https://kinlane-images.s3.amazonaws.com/shared/apis-json/apis-json-logo.jpg
humanURL: https://developer.basware.com/en/api/basware
baseURL: https://api.basware.com/smartpdf
tags:
- PDF Processing
- Document Conversion
- Invoice Capture
properties:
- type: Documentation
url: https://developer.basware.com/en/api/basware
- type: GettingStarted
url: https://developer.basware.com/en/api/basware/get-started
- aid: basware:basware-accountingdocuments-api
name: Basware AccountingDocuments API
description: The AccountingDocuments API from Basware — 9 operation(s) for accountingdocuments.
humanURL: https://developer.basware.com/en/api/basware
baseURL: https://api.basware.com
tags:
- AccountingDocuments
properties:
- type: OpenAPI
url: openapi/basware-accountingdocuments-api-openapi.yml
- type: Documentation
url: https://developer.basware.com/en/api/basware/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/basware/get-started
- type: Documentation
url: https://developer.basware.com/en/api/network/guide
- type: GettingStarted
url: https://developer.basware.com/en/api/network/get-started
- type: Documentation
url: https://developer.basware.com/en/api/vault/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/vault
- aid: basware:basware-accounts-api
name: Basware Accounts API
description: The Accounts API from Basware — 2 operation(s) for accounts.
humanURL: https://developer.basware.com/en/api/basware
baseURL: https://api.basware.com
tags:
- Account
tags_raw:
- Accounts
properties:
- type: OpenAPI
url: openapi/basware-accounts-api-openapi.yml
- type: Documentation
url: https://developer.basware.com/en/api/basware/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/basware/get-started
- type: Documentation
url: https://developer.basware.com/en/api/network/guide
- type: GettingStarted
url: https://developer.basware.com/en/api/network/get-started
- type: Documentation
url: https://developer.basware.com/en/api/vault/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/vault
- aid: basware:basware-advancedpermissions-api
name: Basware AdvancedPermissions API
description: The AdvancedPermissions API from Basware — 2 operation(s) for advancedpermissions.
humanURL: https://developer.basware.com/en/api/basware
baseURL: https://api.basware.com
tags:
- AdvancedPermissions
properties:
- type: OpenAPI
url: openapi/basware-advancedpermissions-api-openapi.yml
- type: Documentation
url: https://developer.basware.com/en/api/basware/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/basware/get-started
- type: Documentation
url: https://developer.basware.com/en/api/network/guide
- type: GettingStarted
url: https://developer.basware.com/en/api/network/get-started
- type: Documentation
url: https://developer.basware.com/en/api/vault/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/vault
- aid: basware:basware-advancedvalidations-api
name: Basware AdvancedValidations API
description: The AdvancedValidations API from Basware — 2 operation(s) for advancedvalidations.
humanURL: https://developer.basware.com/en/api/basware
baseURL: https://api.basware.com
tags:
- AdvancedValidations
properties:
- type: OpenAPI
url: openapi/basware-advancedvalidations-api-openapi.yml
- type: Documentation
url: https://developer.basware.com/en/api/basware/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/basware/get-started
- type: Documentation
url: https://developer.basware.com/en/api/network/guide
- type: GettingStarted
url: https://developer.basware.com/en/api/network/get-started
- type: Documentation
url: https://developer.basware.com/en/api/vault/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/vault
- aid: basware:basware-applicationgroups-api
name: Basware ApplicationGroups API
description: The ApplicationGroups API from Basware — 2 operation(s) for applicationgroups.
humanURL: https://developer.basware.com/en/api/basware
baseURL: https://api.basware.com
tags:
- ApplicationGroups
properties:
- type: OpenAPI
url: openapi/basware-applicationgroups-api-openapi.yml
- type: Documentation
url: https://developer.basware.com/en/api/basware/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/basware/get-started
- type: Documentation
url: https://developer.basware.com/en/api/network/guide
- type: GettingStarted
url: https://developer.basware.com/en/api/network/get-started
- type: Documentation
url: https://developer.basware.com/en/api/vault/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/vault
- aid: basware:basware-companies-deprecated-api
name: Basware Companies (deprecated) API
description: The Companies (deprecated) API from Basware — 2 operation(s) for companies (deprecated).
humanURL: https://developer.basware.com/en/api/basware
baseURL: https://api.basware.com
tags:
- Companies (deprecated)
properties:
- type: OpenAPI
url: openapi/basware-companies-deprecated-api-openapi.yml
- type: Documentation
url: https://developer.basware.com/en/api/basware/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/basware/get-started
- type: Documentation
url: https://developer.basware.com/en/api/network/guide
- type: GettingStarted
url: https://developer.basware.com/en/api/network/get-started
- type: Documentation
url: https://developer.basware.com/en/api/vault/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/vault
- aid: basware:basware-contracts-api
name: Basware Contracts API
description: The Contracts API from Basware — 2 operation(s) for contracts.
humanURL: https://developer.basware.com/en/api/basware
baseURL: https://api.basware.com
tags:
- Contracts
properties:
- type: OpenAPI
url: openapi/basware-contracts-api-openapi.yml
- type: Documentation
url: https://developer.basware.com/en/api/basware/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/basware/get-started
- type: Documentation
url: https://developer.basware.com/en/api/network/guide
- type: GettingStarted
url: https://developer.basware.com/en/api/network/get-started
- type: Documentation
url: https://developer.basware.com/en/api/vault/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/vault
- aid: basware:basware-costcenters-api
name: Basware CostCenters API
description: The CostCenters API from Basware — 2 operation(s) for costcenters.
humanURL: https://developer.basware.com/en/api/basware
baseURL: https://api.basware.com
tags:
- Cost Centers
tags_raw:
- CostCenters
properties:
- type: OpenAPI
url: openapi/basware-costcenters-api-openapi.yml
- type: Documentation
url: https://developer.basware.com/en/api/basware/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/basware/get-started
- type: Documentation
url: https://developer.basware.com/en/api/network/guide
- type: GettingStarted
url: https://developer.basware.com/en/api/network/get-started
- type: Documentation
url: https://developer.basware.com/en/api/vault/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/vault
- aid: basware:basware-data-extract-api
name: Basware Data extract API
description: The Data extract API from Basware — 5 operation(s) for data extract.
humanURL: https://developer.basware.com/en/api/basware
baseURL: https://api.basware.com
tags:
- Data Extract
tags_raw:
- Data extract
properties:
- type: OpenAPI
url: openapi/basware-data-extract-api-openapi.yml
- type: Documentation
url: https://developer.basware.com/en/api/basware/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/basware/get-started
- type: Documentation
url: https://developer.basware.com/en/api/network/guide
- type: GettingStarted
url: https://developer.basware.com/en/api/network/get-started
- type: Documentation
url: https://developer.basware.com/en/api/vault/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/vault
- aid: basware:basware-directory-france-lookup-api
name: Basware Directory France lookup API
description: >-
The Directory France lookup API from Basware — 1 operation(s) for directory france lookup.
humanURL: https://developer.basware.com/en/api/basware
baseURL: https://api.basware.com
tags:
- Directory France lookup
properties:
- type: OpenAPI
url: openapi/basware-directory-france-lookup-api-openapi.yml
- type: Documentation
url: https://developer.basware.com/en/api/basware/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/basware/get-started
- type: Documentation
url: https://developer.basware.com/en/api/network/guide
- type: GettingStarted
url: https://developer.basware.com/en/api/network/get-started
- type: Documentation
url: https://developer.basware.com/en/api/vault/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/vault
- aid: basware:basware-document-import-api-api
name: Basware Document Import API API
description: The Document Import API API from Basware — 1 operation(s) for document import api.
humanURL: https://developer.basware.com/en/api/basware
baseURL: https://api.basware.com
tags:
- Document Import API
properties:
- type: OpenAPI
url: openapi/basware-document-import-api-api-openapi.yml
- type: Documentation
url: https://developer.basware.com/en/api/basware/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/basware/get-started
- type: Documentation
url: https://developer.basware.com/en/api/network/guide
- type: GettingStarted
url: https://developer.basware.com/en/api/network/get-started
- type: Documentation
url: https://developer.basware.com/en/api/vault/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/vault
- aid: basware:basware-errorfeedbacks-api
name: Basware ErrorFeedbacks API
description: The ErrorFeedbacks API from Basware — 3 operation(s) for errorfeedbacks.
humanURL: https://developer.basware.com/en/api/basware
baseURL: https://api.basware.com
tags:
- ErrorFeedbacks
properties:
- type: OpenAPI
url: openapi/basware-errorfeedbacks-api-openapi.yml
- type: Documentation
url: https://developer.basware.com/en/api/basware/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/basware/get-started
- type: Documentation
url: https://developer.basware.com/en/api/network/guide
- type: GettingStarted
url: https://developer.basware.com/en/api/network/get-started
- type: Documentation
url: https://developer.basware.com/en/api/vault/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/vault
- aid: basware:basware-exchangerates-api
name: Basware ExchangeRates API
description: The ExchangeRates API from Basware — 2 operation(s) for exchangerates.
humanURL: https://developer.basware.com/en/api/basware
baseURL: https://api.basware.com
tags:
- Exchange Rates
tags_raw:
- ExchangeRates
properties:
- type: OpenAPI
url: openapi/basware-exchangerates-api-openapi.yml
- type: Documentation
url: https://developer.basware.com/en/api/basware/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/basware/get-started
- type: Documentation
url: https://developer.basware.com/en/api/network/guide
- type: GettingStarted
url: https://developer.basware.com/en/api/network/get-started
- type: Documentation
url: https://developer.basware.com/en/api/vault/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/vault
- aid: basware:basware-exportedcontracts-api
name: Basware ExportedContracts API
description: The ExportedContracts API from Basware — 3 operation(s) for exportedcontracts.
humanURL: https://developer.basware.com/en/api/basware
baseURL: https://api.basware.com
tags:
- ExportedContracts
properties:
- type: OpenAPI
url: openapi/basware-exportedcontracts-api-openapi.yml
- type: Documentation
url: https://developer.basware.com/en/api/basware/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/basware/get-started
- type: Documentation
url: https://developer.basware.com/en/api/network/guide
- type: GettingStarted
url: https://developer.basware.com/en/api/network/get-started
- type: Documentation
url: https://developer.basware.com/en/api/vault/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/vault
- aid: basware:basware-exportedcontractspends-api
name: Basware ExportedContractSpends API
description: The ExportedContractSpends API from Basware — 3 operation(s) for exportedcontractspends.
humanURL: https://developer.basware.com/en/api/basware
baseURL: https://api.basware.com
tags:
- ExportedContractSpends
properties:
- type: OpenAPI
url: openapi/basware-exportedcontractspends-api-openapi.yml
- type: Documentation
url: https://developer.basware.com/en/api/basware/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/basware/get-started
- type: Documentation
url: https://developer.basware.com/en/api/network/guide
- type: GettingStarted
url: https://developer.basware.com/en/api/network/get-started
- type: Documentation
url: https://developer.basware.com/en/api/vault/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/vault
- aid: basware:basware-exportedpurchaseorders-api
name: Basware ExportedPurchaseOrders API
description: The ExportedPurchaseOrders API from Basware — 3 operation(s) for exportedpurchaseorders.
humanURL: https://developer.basware.com/en/api/basware
baseURL: https://api.basware.com
tags:
- ExportedPurchaseOrders
properties:
- type: OpenAPI
url: openapi/basware-exportedpurchaseorders-api-openapi.yml
- type: Documentation
url: https://developer.basware.com/en/api/basware/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/basware/get-started
- type: Documentation
url: https://developer.basware.com/en/api/network/guide
- type: GettingStarted
url: https://developer.basware.com/en/api/network/get-started
- type: Documentation
url: https://developer.basware.com/en/api/vault/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/vault
- aid: basware:basware-exportedpurchaserequisitions-api
name: Basware ExportedPurchaseRequisitions API
description: >-
The ExportedPurchaseRequisitions API from Basware — 3 operation(s) for exportedpurchaserequisitions.
humanURL: https://developer.basware.com/en/api/basware
baseURL: https://api.basware.com
tags:
- ExportedPurchaseRequisitions
properties:
- type: OpenAPI
url: openapi/basware-exportedpurchaserequisitions-api-openapi.yml
- type: Documentation
url: https://developer.basware.com/en/api/basware/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/basware/get-started
- type: Documentation
url: https://developer.basware.com/en/api/network/guide
- type: GettingStarted
url: https://developer.basware.com/en/api/network/get-started
- type: Documentation
url: https://developer.basware.com/en/api/vault/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/vault
- aid: basware:basware-genericlists-api
name: Basware GenericLists API
description: The GenericLists API from Basware — 2 operation(s) for genericlists.
humanURL: https://developer.basware.com/en/api/basware
baseURL: https://api.basware.com
tags:
- GenericLists
properties:
- type: OpenAPI
url: openapi/basware-genericlists-api-openapi.yml
- type: Documentation
url: https://developer.basware.com/en/api/basware/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/basware/get-started
- type: Documentation
url: https://developer.basware.com/en/api/network/guide
- type: GettingStarted
url: https://developer.basware.com/en/api/network/get-started
- type: Documentation
url: https://developer.basware.com/en/api/vault/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/vault
- aid: basware:basware-matchingorderlines-api
name: Basware MatchingOrderLines API
description: The MatchingOrderLines API from Basware — 2 operation(s) for matchingorderlines.
humanURL: https://developer.basware.com/en/api/basware
baseURL: https://api.basware.com
tags:
- MatchingOrderLines
properties:
- type: OpenAPI
url: openapi/basware-matchingorderlines-api-openapi.yml
- type: Documentation
url: https://developer.basware.com/en/api/basware/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/basware/get-started
- type: Documentation
url: https://developer.basware.com/en/api/network/guide
- type: GettingStarted
url: https://developer.basware.com/en/api/network/get-started
- type: Documentation
url: https://developer.basware.com/en/api/vault/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/vault
- aid: basware:basware-matchingorders-api
name: Basware MatchingOrders API
description: The MatchingOrders API from Basware — 2 operation(s) for matchingorders.
humanURL: https://developer.basware.com/en/api/basware
baseURL: https://api.basware.com
tags:
- MatchingOrders
properties:
- type: OpenAPI
url: openapi/basware-matchingorders-api-openapi.yml
- type: Documentation
url: https://developer.basware.com/en/api/basware/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/basware/get-started
- type: Documentation
url: https://developer.basware.com/en/api/network/guide
- type: GettingStarted
url: https://developer.basware.com/en/api/network/get-started
- type: Documentation
url: https://developer.basware.com/en/api/vault/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/vault
- aid: basware:basware-notification-history-api
name: Basware Notification history API
description: The Notification history API from Basware — 2 operation(s) for notification history.
humanURL: https://developer.basware.com/en/api/basware
baseURL: https://api.basware.com
tags:
- Notification History
tags_raw:
- Notification history
properties:
- type: OpenAPI
url: openapi/basware-notification-history-api-openapi.yml
- type: Documentation
url: https://developer.basware.com/en/api/basware/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/basware/get-started
- type: Documentation
url: https://developer.basware.com/en/api/network/guide
- type: GettingStarted
url: https://developer.basware.com/en/api/network/get-started
- type: Documentation
url: https://developer.basware.com/en/api/vault/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/vault
- aid: basware:basware-organizations-api
name: Basware Organizations API
description: The Organizations API from Basware — 2 operation(s) for organizations.
humanURL: https://developer.basware.com/en/api/basware
baseURL: https://api.basware.com
tags:
- Organization
tags_raw:
- Organizations
properties:
- type: OpenAPI
url: openapi/basware-organizations-api-openapi.yml
- type: Documentation
url: https://developer.basware.com/en/api/basware/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/basware/get-started
- type: Documentation
url: https://developer.basware.com/en/api/network/guide
- type: GettingStarted
url: https://developer.basware.com/en/api/network/get-started
- type: Documentation
url: https://developer.basware.com/en/api/vault/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/vault
- aid: basware:basware-paymentterms-api
name: Basware PaymentTerms API
description: The PaymentTerms API from Basware — 2 operation(s) for paymentterms.
humanURL: https://developer.basware.com/en/api/basware
baseURL: https://api.basware.com
tags:
- Payment Terms
tags_raw:
- PaymentTerms
properties:
- type: OpenAPI
url: openapi/basware-paymentterms-api-openapi.yml
- type: Documentation
url: https://developer.basware.com/en/api/basware/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/basware/get-started
- type: Documentation
url: https://developer.basware.com/en/api/network/guide
- type: GettingStarted
url: https://developer.basware.com/en/api/network/get-started
- type: Documentation
url: https://developer.basware.com/en/api/vault/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/vault
- aid: basware:basware-projects-v1-deprecated-api
name: Basware Projects v1 (deprecated) API
description: >-
The Projects v1 (deprecated) API from Basware — 2 operation(s) for projects v1 (deprecated).
humanURL: https://developer.basware.com/en/api/basware
baseURL: https://api.basware.com
tags:
- Projects v1 (deprecated)
properties:
- type: OpenAPI
url: openapi/basware-projects-v1-deprecated-api-openapi.yml
- type: Documentation
url: https://developer.basware.com/en/api/basware/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/basware/get-started
- type: Documentation
url: https://developer.basware.com/en/api/network/guide
- type: GettingStarted
url: https://developer.basware.com/en/api/network/get-started
- type: Documentation
url: https://developer.basware.com/en/api/vault/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/vault
- aid: basware:basware-projects-v2-api
name: Basware Projects v2 API
description: The Projects v2 API from Basware — 2 operation(s) for projects v2.
humanURL: https://developer.basware.com/en/api/basware
baseURL: https://api.basware.com
tags:
- Projects V2
tags_raw:
- Projects v2
properties:
- type: OpenAPI
url: openapi/basware-projects-v2-api-openapi.yml
- type: Documentation
url: https://developer.basware.com/en/api/basware/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/basware/get-started
- type: Documentation
url: https://developer.basware.com/en/api/network/guide
- type: GettingStarted
url: https://developer.basware.com/en/api/network/get-started
- type: Documentation
url: https://developer.basware.com/en/api/vault/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/vault
- aid: basware:basware-purchasegoodsreceipts-api
name: Basware PurchaseGoodsReceipts API
description: The PurchaseGoodsReceipts API from Basware — 2 operation(s) for purchasegoodsreceipts.
humanURL: https://developer.basware.com/en/api/basware
baseURL: https://api.basware.com
tags:
- PurchaseGoodsReceipts
properties:
- type: OpenAPI
url: openapi/basware-purchasegoodsreceipts-api-openapi.yml
- type: Documentation
url: https://developer.basware.com/en/api/basware/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/basware/get-started
- type: Documentation
url: https://developer.basware.com/en/api/network/guide
- type: GettingStarted
url: https://developer.basware.com/en/api/network/get-started
- type: Documentation
url: https://developer.basware.com/en/api/vault/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/vault
- aid: basware:basware-purchaseorders-api
name: Basware PurchaseOrders API
description: The PurchaseOrders API from Basware — 2 operation(s) for purchaseorders.
humanURL: https://developer.basware.com/en/api/basware
baseURL: https://api.basware.com
tags:
- Purchase Orders
tags_raw:
- PurchaseOrders
properties:
- type: OpenAPI
url: openapi/basware-purchaseorders-api-openapi.yml
- type: Documentation
url: https://developer.basware.com/en/api/basware/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/basware/get-started
- type: Documentation
url: https://developer.basware.com/en/api/network/guide
- type: GettingStarted
url: https://developer.basware.com/en/api/network/get-started
- type: Documentation
url: https://developer.basware.com/en/api/vault/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/vault
- aid: basware:basware-purchaserequisitions-api
name: Basware PurchaseRequisitions API
description: The PurchaseRequisitions API from Basware — 2 operation(s) for purchaserequisitions.
humanURL: https://developer.basware.com/en/api/basware
baseURL: https://api.basware.com
tags:
- Purchase Requisitions
tags_raw:
- PurchaseRequisitions
properties:
- type: OpenAPI
url: openapi/basware-purchaserequisitions-api-openapi.yml
- type: Documentation
url: https://developer.basware.com/en/api/basware/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/basware/get-started
- type: Documentation
url: https://developer.basware.com/en/api/network/guide
- type: GettingStarted
url: https://developer.basware.com/en/api/network/get-started
- type: Documentation
url: https://developer.basware.com/en/api/vault/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/vault
- aid: basware:basware-requeststatus-api
name: Basware RequestStatus API
description: The RequestStatus API from Basware — 3 operation(s) for requeststatus.
humanURL: https://developer.basware.com/en/api/basware
baseURL: https://api.basware.com
tags:
- Request Status
tags_raw:
- RequestStatus
properties:
- type: OpenAPI
url: openapi/basware-requeststatus-api-openapi.yml
- type: Documentation
url: https://developer.basware.com/en/api/basware/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/basware/get-started
- type: Documentation
url: https://developer.basware.com/en/api/network/guide
- type: GettingStarted
url: https://developer.basware.com/en/api/network/get-started
- type: Documentation
url: https://developer.basware.com/en/api/vault/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/vault
- aid: basware:basware-subscribe-to-notifications-api
name: Basware Subscribe to notifications API
description: >-
The Subscribe to notifications API from Basware — 1 operation(s) for subscribe to notifications.
humanURL: https://developer.basware.com/en/api/basware
baseURL: https://api.basware.com
tags:
- Subscribe to notifications
properties:
- type: OpenAPI
url: openapi/basware-subscribe-to-notifications-api-openapi.yml
- type: Documentation
url: https://developer.basware.com/en/api/basware/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/basware/get-started
- type: Documentation
url: https://developer.basware.com/en/api/network/guide
- type: GettingStarted
url: https://developer.basware.com/en/api/network/get-started
- type: Documentation
url: https://developer.basware.com/en/api/vault/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/vault
- aid: basware:basware-taxcodes-api
name: Basware TaxCodes API
description: The TaxCodes API from Basware — 2 operation(s) for taxcodes.
humanURL: https://developer.basware.com/en/api/basware
baseURL: https://api.basware.com
tags:
- Tax Codes
tags_raw:
- TaxCodes
properties:
- type: OpenAPI
url: openapi/basware-taxcodes-api-openapi.yml
- type: Documentation
url: https://developer.basware.com/en/api/basware/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/basware/get-started
- type: Documentation
url: https://developer.basware.com/en/api/network/guide
- type: GettingStarted
url: https://developer.basware.com/en/api/network/get-started
- type: Documentation
url: https://developer.basware.com/en/api/vault/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/vault
- aid: basware:basware-tokens-api
name: Basware Tokens API
description: The Tokens API from Basware — 1 operation(s) for tokens.
humanURL: https://developer.basware.com/en/api/basware
baseURL: https://api.basware.com
tags:
- Tokens
properties:
- type: OpenAPI
url: openapi/basware-tokens-api-openapi.yml
- type: Documentation
url: https://developer.basware.com/en/api/basware/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/basware/get-started
- type: Documentation
url: https://developer.basware.com/en/api/network/guide
- type: GettingStarted
url: https://developer.basware.com/en/api/network/get-started
- type: Documentation
url: https://developer.basware.com/en/api/vault/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/vault
- aid: basware:basware-usergroupassociatedusers-api
name: Basware UserGroupAssociatedUsers API
description: >-
The UserGroupAssociatedUsers API from Basware — 1 operation(s) for usergroupassociatedusers.
humanURL: https://developer.basware.com/en/api/basware
baseURL: https://api.basware.com
tags:
- UserGroupAssociatedUsers
properties:
- type: OpenAPI
url: openapi/basware-usergroupassociatedusers-api-openapi.yml
- type: Documentation
url: https://developer.basware.com/en/api/basware/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/basware/get-started
- type: Documentation
url: https://developer.basware.com/en/api/network/guide
- type: GettingStarted
url: https://developer.basware.com/en/api/network/get-started
- type: Documentation
url: https://developer.basware.com/en/api/vault/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/vault
- aid: basware:basware-usergroups-api
name: Basware UserGroups API
description: The UserGroups API from Basware — 2 operation(s) for usergroups.
humanURL: https://developer.basware.com/en/api/basware
baseURL: https://api.basware.com
tags:
- User Groups
tags_raw:
- UserGroups
properties:
- type: OpenAPI
url: openapi/basware-usergroups-api-openapi.yml
- type: Documentation
url: https://developer.basware.com/en/api/basware/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/basware/get-started
- type: Documentation
url: https://developer.basware.com/en/api/network/guide
- type: GettingStarted
url: https://developer.basware.com/en/api/network/get-started
- type: Documentation
url: https://developer.basware.com/en/api/vault/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/vault
- aid: basware:basware-users-api
name: Basware Users API
description: The Users API from Basware — 2 operation(s) for users.
humanURL: https://developer.basware.com/en/api/basware
baseURL: https://api.basware.com
tags:
- User
tags_raw:
- Users
properties:
- type: OpenAPI
url: openapi/basware-users-api-openapi.yml
- type: Documentation
url: https://developer.basware.com/en/api/basware/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/basware/get-started
- type: Documentation
url: https://developer.basware.com/en/api/network/guide
- type: GettingStarted
url: https://developer.basware.com/en/api/network/get-started
- type: Documentation
url: https://developer.basware.com/en/api/vault/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/vault
- aid: basware:basware-vault-archiving-api
name: Basware Vault Archiving API
description: The Vault Archiving API from Basware — 4 operation(s) for vault archiving.
humanURL: https://developer.basware.com/en/api/basware
baseURL: https://api.basware.com
tags:
- Vault Archiving
properties:
- type: OpenAPI
url: openapi/basware-vault-archiving-api-openapi.yml
- type: Documentation
url: https://developer.basware.com/en/api/basware/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/basware/get-started
- type: Documentation
url: https://developer.basware.com/en/api/network/guide
- type: GettingStarted
url: https://developer.basware.com/en/api/network/get-started
- type: Documentation
url: https://developer.basware.com/en/api/vault/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/vault
- aid: basware:basware-vault-indexing-api
name: Basware Vault Indexing API
description: The Vault Indexing API from Basware — 1 operation(s) for vault indexing.
humanURL: https://developer.basware.com/en/api/basware
baseURL: https://api.basware.com
tags:
- Vault Indexing
properties:
- type: OpenAPI
url: openapi/basware-vault-indexing-api-openapi.yml
- type: Documentation
url: https://developer.basware.com/en/api/basware/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/basware/get-started
- type: Documentation
url: https://developer.basware.com/en/api/network/guide
- type: GettingStarted
url: https://developer.basware.com/en/api/network/get-started
- type: Documentation
url: https://developer.basware.com/en/api/vault/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/vault
- aid: basware:basware-vendors-api
name: Basware Vendors API
description: The Vendors API from Basware — 2 operation(s) for vendors.
humanURL: https://developer.basware.com/en/api/basware
baseURL: https://api.basware.com
tags:
- Vendors
properties:
- type: OpenAPI
url: openapi/basware-vendors-api-openapi.yml
- type: Documentation
url: https://developer.basware.com/en/api/basware/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/basware/get-started
- type: Documentation
url: https://developer.basware.com/en/api/network/guide
- type: GettingStarted
url: https://developer.basware.com/en/api/network/get-started
- type: Documentation
url: https://developer.basware.com/en/api/vault/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/vault
- aid: basware:basware-well-known-api
name: Basware .well-known API
description: The .well-known API from Basware — 2 operation(s) for .well-known.
humanURL: https://developer.basware.com/en/api/basware
baseURL: https://api.basware.com
tags:
- .well Known
tags_raw:
- .well-known
properties:
- type: OpenAPI
url: openapi/basware-well-known-api-openapi.yml
- type: Documentation
url: https://developer.basware.com/en/api/basware/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/basware/get-started
- type: Documentation
url: https://developer.basware.com/en/api/network/guide
- type: GettingStarted
url: https://developer.basware.com/en/api/network/get-started
- type: Documentation
url: https://developer.basware.com/en/api/vault/manual
- type: GettingStarted
url: https://developer.basware.com/en/api/vault
common:
- type: AgenticAccess
url: agentic-access/basware-agentic-access.yml
- type: DomainSecurity
url: security/basware-domain-security.yml
- type: Authentication
url: authentication/basware-authentication.yml
- type: OAuthScopes
url: scopes/basware-scopes.yml
- type: Website
url: https://www.basware.com
- type: Documentation
url: https://developer.basware.com
- type: GitHubOrg
url: https://github.com/Basware
- type: LinkedIn
url: https://www.linkedin.com/company/basware
- type: Blog
url: https://blog.basware.com/en
- type: Pricing
url: https://www.basware.com/en-us/pricing/
- type: StatusPage
url: https://basware.service-now.com/bw?id=services_status
- type: X
url: https://x.com/basware
- type: Plans