-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi_info.json
More file actions
128 lines (128 loc) · 3.5 KB
/
api_info.json
File metadata and controls
128 lines (128 loc) · 3.5 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
{
"slug": "billingohu",
"title": "Billingo API v3",
"description": "This is a Billingo API v3 documentation. Our API based on REST software architectural style. API has resource-oriented URLs, accepts JSON-encoded request bodies and returns JSON-encoded responses. To ",
"base_url": "https://api.billingo.hu/v3",
"endpoints": [
{
"path": "/bank-accounts",
"method": "get",
"summary": "List all bank account",
"operation_id": "ListBankAccount"
},
{
"path": "/bank-accounts",
"method": "post",
"summary": "Create a bank account",
"operation_id": "CreateBankAccount"
},
{
"path": "/bank-accounts/{id}",
"method": "delete",
"summary": "Delete a bank account",
"operation_id": "DeleteBankAccount"
},
{
"path": "/bank-accounts/{id}",
"method": "get",
"summary": "Retrieve a bank account",
"operation_id": "GetBankAccount"
},
{
"path": "/bank-accounts/{id}",
"method": "put",
"summary": "Update a bank account",
"operation_id": "UpdateBankAccount"
},
{
"path": "/currencies",
"method": "get",
"summary": "Get currencies exchange rate.",
"operation_id": "GetConversionRate"
},
{
"path": "/document-blocks",
"method": "get",
"summary": "List all document blocks",
"operation_id": "ListDocumentBlock"
},
{
"path": "/documents",
"method": "get",
"summary": "List all documents",
"operation_id": "ListDocument"
},
{
"path": "/documents",
"method": "post",
"summary": "Create a document",
"operation_id": "CreateDocument"
},
{
"path": "/documents/{id}",
"method": "get",
"summary": "Retrieve a document",
"operation_id": "GetDocument"
},
{
"path": "/documents/{id}/cancel",
"method": "post",
"summary": "Cancel a document",
"operation_id": "CancelDocument"
},
{
"path": "/documents/{id}/create-from-proforma",
"method": "post",
"summary": "Create a document from proforma.",
"operation_id": "CreateDocumentFromProforma"
},
{
"path": "/documents/{id}/download",
"method": "get",
"summary": "Download a document in PDF format.",
"operation_id": "DownloadDocument"
},
{
"path": "/documents/{id}/online-szamla",
"method": "get",
"summary": "Retrieve a document Online Számla status",
"operation_id": "GetOnlineSzamlaStatus"
},
{
"path": "/documents/{id}/payments",
"method": "delete",
"summary": "Delete all payment history on document",
"operation_id": "DeletePayment"
},
{
"path": "/documents/{id}/payments",
"method": "get",
"summary": "Retrieve a payment histroy",
"operation_id": "GetPayment"
},
{
"path": "/documents/{id}/payments",
"method": "put",
"summary": "Update payment history",
"operation_id": "UpdatePayment"
},
{
"path": "/documents/{id}/public-url",
"method": "get",
"summary": "Retrieve a document download public url.",
"operation_id": "GetPublicUrl"
},
{
"path": "/documents/{id}/send",
"method": "post",
"summary": "Send invoice to given email adresses.",
"operation_id": "SendDocument"
},
{
"path": "/organization",
"method": "get",
"summary": "Retrieve a organization data.",
"operation_id": "GetOrganizationData"
}
]
}