@fenixalliance/abs-api-client 1.0.13 → 1.0.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/clients/accountingService/core/OpenAPI.js +1 -1
- package/clients/accountingService/core/OpenAPI.ts +1 -1
- package/clients/authService/core/ApiError.js +20 -0
- package/clients/authService/core/ApiError.ts +25 -0
- package/clients/authService/core/ApiRequestOptions.js +2 -0
- package/clients/authService/core/ApiRequestOptions.ts +17 -0
- package/clients/authService/core/ApiResult.js +2 -0
- package/clients/authService/core/ApiResult.ts +11 -0
- package/clients/authService/core/CancelablePromise.js +104 -0
- package/clients/authService/core/CancelablePromise.ts +131 -0
- package/clients/authService/core/OpenAPI.js +14 -0
- package/clients/authService/core/OpenAPI.ts +32 -0
- package/clients/authService/core/request.js +294 -0
- package/clients/authService/core/request.ts +322 -0
- package/clients/authService/index.js +28 -0
- package/clients/authService/index.ts +48 -0
- package/clients/authService/models/AccessTokenResponse.js +2 -0
- package/clients/authService/models/AccessTokenResponse.ts +11 -0
- package/clients/authService/models/AccountHolderCreateDto.js +12 -0
- package/clients/authService/models/AccountHolderCreateDto.ts +41 -0
- package/clients/authService/models/AccountHolderCreateDtoEnvelope.js +2 -0
- package/clients/authService/models/AccountHolderCreateDtoEnvelope.ts +14 -0
- package/clients/authService/models/ApiAuthorizationResult.js +2 -0
- package/clients/authService/models/ApiAuthorizationResult.ts +17 -0
- package/clients/authService/models/ApiAuthorizationResultEnvelope.js +2 -0
- package/clients/authService/models/ApiAuthorizationResultEnvelope.ts +14 -0
- package/clients/authService/models/EnrollmentId.js +2 -0
- package/clients/authService/models/EnrollmentId.ts +5 -0
- package/clients/authService/models/ErrorEnvelope.js +2 -0
- package/clients/authService/models/ErrorEnvelope.ts +12 -0
- package/clients/authService/models/ForgotPasswordRequest.js +2 -0
- package/clients/authService/models/ForgotPasswordRequest.ts +8 -0
- package/clients/authService/models/HttpValidationProblemDetails.js +2 -0
- package/clients/authService/models/HttpValidationProblemDetails.ts +5 -0
- package/clients/authService/models/InfoRequest.js +2 -0
- package/clients/authService/models/InfoRequest.ts +10 -0
- package/clients/authService/models/InfoResponse.js +2 -0
- package/clients/authService/models/InfoResponse.ts +9 -0
- package/clients/authService/models/JsonWebKey.js +2 -0
- package/clients/authService/models/JsonWebKey.ts +13 -0
- package/clients/authService/models/JsonWebKeySet.js +2 -0
- package/clients/authService/models/JsonWebKeySet.ts +9 -0
- package/clients/authService/models/JsonWebKeySetEnvelope.js +2 -0
- package/clients/authService/models/JsonWebKeySetEnvelope.ts +14 -0
- package/clients/authService/models/JsonWebToken.js +2 -0
- package/clients/authService/models/JsonWebToken.ts +15 -0
- package/clients/authService/models/JsonWebTokenEnvelope.js +2 -0
- package/clients/authService/models/JsonWebTokenEnvelope.ts +14 -0
- package/clients/authService/models/JsonWebTokenHeader.js +2 -0
- package/clients/authService/models/JsonWebTokenHeader.ts +11 -0
- package/clients/authService/models/JsonWebTokenPayload.js +2 -0
- package/clients/authService/models/JsonWebTokenPayload.ts +17 -0
- package/clients/authService/models/LoginRequest.js +2 -0
- package/clients/authService/models/LoginRequest.ts +11 -0
- package/clients/authService/models/OAuthTokenRequest.js +2 -0
- package/clients/authService/models/OAuthTokenRequest.ts +12 -0
- package/clients/authService/models/OpenIdConfiguration.js +2 -0
- package/clients/authService/models/OpenIdConfiguration.ts +19 -0
- package/clients/authService/models/OpenIdConfigurationEnvelope.js +2 -0
- package/clients/authService/models/OpenIdConfigurationEnvelope.ts +14 -0
- package/clients/authService/models/RefreshRequest.js +2 -0
- package/clients/authService/models/RefreshRequest.ts +8 -0
- package/clients/authService/models/RegisterRequest.js +2 -0
- package/clients/authService/models/RegisterRequest.ts +9 -0
- package/clients/authService/models/ResendConfirmationEmailRequest.js +2 -0
- package/clients/authService/models/ResendConfirmationEmailRequest.ts +8 -0
- package/clients/authService/models/ResetPasswordRequest.js +2 -0
- package/clients/authService/models/ResetPasswordRequest.ts +10 -0
- package/clients/authService/models/SigninModel.js +2 -0
- package/clients/authService/models/SigninModel.ts +9 -0
- package/clients/authService/models/StringListEnvelope.js +2 -0
- package/clients/authService/models/StringListEnvelope.ts +13 -0
- package/clients/authService/models/TenantId.js +2 -0
- package/clients/authService/models/TenantId.ts +5 -0
- package/clients/authService/models/TwoFactorRequest.js +2 -0
- package/clients/authService/models/TwoFactorRequest.ts +12 -0
- package/clients/authService/models/TwoFactorResponse.js +2 -0
- package/clients/authService/models/TwoFactorResponse.ts +12 -0
- package/clients/authService/models/UserId.js +2 -0
- package/clients/authService/models/UserId.ts +5 -0
- package/clients/authService/services/ApplicationsService.js +112 -0
- package/clients/authService/services/ApplicationsService.ts +132 -0
- package/clients/authService/services/AuthService.js +246 -0
- package/clients/authService/services/AuthService.ts +293 -0
- package/clients/authService/services/CheckerService.js +22 -0
- package/clients/authService/services/CheckerService.ts +25 -0
- package/clients/authService/services/OAuthService.js +152 -0
- package/clients/authService/services/OAuthService.ts +183 -0
- package/clients/authService/services/ResourceService.js +22 -0
- package/clients/authService/services/ResourceService.ts +25 -0
- package/clients/authService/services/UserInfoService.js +36 -0
- package/clients/authService/services/UserInfoService.ts +41 -0
- package/clients/cartService/core/OpenAPI.js +1 -1
- package/clients/cartService/core/OpenAPI.ts +1 -1
- package/clients/catalogService/core/OpenAPI.js +1 -1
- package/clients/catalogService/core/OpenAPI.ts +1 -1
- package/clients/contentService/core/OpenAPI.js +1 -1
- package/clients/contentService/core/OpenAPI.ts +1 -1
- package/clients/contentService/services/PortalsService.js +26 -14
- package/clients/contentService/services/PortalsService.ts +26 -14
- package/clients/crmService/core/OpenAPI.js +1 -1
- package/clients/crmService/core/OpenAPI.ts +1 -1
- package/clients/dealsService/core/OpenAPI.js +1 -1
- package/clients/dealsService/core/OpenAPI.ts +1 -1
- package/clients/forexService/core/OpenAPI.js +1 -1
- package/clients/forexService/core/OpenAPI.ts +1 -1
- package/clients/globeService/core/OpenAPI.js +1 -1
- package/clients/globeService/core/OpenAPI.ts +1 -1
- package/clients/globeService/index.js +5 -1
- package/clients/globeService/index.ts +4 -0
- package/clients/globeService/models/Error.js +2 -0
- package/clients/globeService/models/Error.ts +10 -0
- package/clients/globeService/models/PaymentResponse.js +21 -0
- package/clients/globeService/models/PaymentResponse.ts +34 -0
- package/clients/globeService/models/ResponseStatus.js +2 -0
- package/clients/globeService/models/ResponseStatus.ts +12 -0
- package/clients/globeService/services/MigrationsService.js +26 -0
- package/clients/globeService/services/MigrationsService.ts +30 -0
- package/clients/holderService/core/OpenAPI.js +1 -1
- package/clients/holderService/core/OpenAPI.ts +1 -1
- package/clients/hrmsService/core/OpenAPI.js +1 -1
- package/clients/hrmsService/core/OpenAPI.ts +1 -1
- package/clients/identityService/core/OpenAPI.js +1 -1
- package/clients/identityService/core/OpenAPI.ts +1 -1
- package/clients/inventoryService/core/OpenAPI.js +1 -1
- package/clients/inventoryService/core/OpenAPI.ts +1 -1
- package/clients/invoicingService/core/OpenAPI.js +1 -1
- package/clients/invoicingService/core/OpenAPI.ts +1 -1
- package/clients/learningService/core/OpenAPI.js +1 -1
- package/clients/learningService/core/OpenAPI.ts +1 -1
- package/clients/marketingService/core/OpenAPI.js +1 -1
- package/clients/marketingService/core/OpenAPI.ts +1 -1
- package/clients/ordersService/core/OpenAPI.js +1 -1
- package/clients/ordersService/core/OpenAPI.ts +1 -1
- package/clients/paymentsService/core/OpenAPI.js +1 -1
- package/clients/paymentsService/core/OpenAPI.ts +1 -1
- package/clients/pricingService/core/OpenAPI.js +1 -1
- package/clients/pricingService/core/OpenAPI.ts +1 -1
- package/clients/projectsService/core/OpenAPI.js +1 -1
- package/clients/projectsService/core/OpenAPI.ts +1 -1
- package/clients/quotesService/core/OpenAPI.js +1 -1
- package/clients/quotesService/core/OpenAPI.ts +1 -1
- package/clients/salesService/core/OpenAPI.js +1 -1
- package/clients/salesService/core/OpenAPI.ts +1 -1
- package/clients/securityService/core/OpenAPI.js +1 -1
- package/clients/securityService/core/OpenAPI.ts +1 -1
- package/clients/shipmentsService/core/OpenAPI.js +1 -1
- package/clients/shipmentsService/core/OpenAPI.ts +1 -1
- package/clients/socialService/core/OpenAPI.js +1 -1
- package/clients/socialService/core/OpenAPI.ts +1 -1
- package/clients/socialService/services/SocialProfilesService.js +72 -24
- package/clients/socialService/services/SocialProfilesService.ts +72 -24
- package/clients/storageService/core/OpenAPI.js +1 -1
- package/clients/storageService/core/OpenAPI.ts +1 -1
- package/clients/supportService/core/OpenAPI.js +1 -1
- package/clients/supportService/core/OpenAPI.ts +1 -1
- package/clients/systemService/core/OpenAPI.js +1 -1
- package/clients/systemService/core/OpenAPI.ts +1 -1
- package/clients/systemService/index.js +5 -1
- package/clients/systemService/index.ts +10 -0
- package/clients/systemService/models/AdditionalAttribute.js +2 -0
- package/clients/systemService/models/AdditionalAttribute.ts +9 -0
- package/clients/systemService/models/LicenseAttributes.js +2 -0
- package/clients/systemService/models/LicenseAttributes.ts +5 -0
- package/clients/systemService/models/LicenseAttributesListEnvelope.js +2 -0
- package/clients/systemService/models/LicenseAttributesListEnvelope.ts +14 -0
- package/clients/systemService/models/LicenseFeature.js +2 -0
- package/clients/systemService/models/LicenseFeature.ts +9 -0
- package/clients/systemService/models/LicenseKey.js +2 -0
- package/clients/systemService/models/LicenseKey.ts +8 -0
- package/clients/systemService/models/LicenseKeyRequest.js +12 -0
- package/clients/systemService/models/LicenseKeyRequest.ts +28 -0
- package/clients/systemService/models/LicenseValidationError.js +2 -0
- package/clients/systemService/models/LicenseValidationError.ts +9 -0
- package/clients/systemService/models/LicenseValidationErrorListEnvelope.js +2 -0
- package/clients/systemService/models/LicenseValidationErrorListEnvelope.ts +14 -0
- package/clients/systemService/models/StringEnvelope.js +2 -0
- package/clients/systemService/models/StringEnvelope.ts +13 -0
- package/clients/systemService/services/LicensesService.js +108 -0
- package/clients/systemService/services/LicensesService.ts +131 -0
- package/clients/tenantService/core/OpenAPI.js +1 -1
- package/clients/tenantService/core/OpenAPI.ts +1 -1
- package/clients/timeTrackerService/core/OpenAPI.js +1 -1
- package/clients/timeTrackerService/core/OpenAPI.ts +1 -1
- package/clients/walletsService/core/OpenAPI.js +1 -1
- package/clients/walletsService/core/OpenAPI.ts +1 -1
- package/clients/walletsService/services/WalletsService.js +65 -21
- package/clients/walletsService/services/WalletsService.ts +65 -21
- package/package.json +1 -1
- package/schemas/authService/schema.s.js +6 -0
- package/schemas/authService/schema.s.ts +894 -0
- package/schemas/contentService/schema.s.ts +120 -48
- package/schemas/globeService/schema.s.ts +64 -0
- package/schemas/socialService/schema.s.ts +1046 -990
- package/schemas/systemService/schema.s.ts +238 -0
- package/schemas/walletsService/schema.s.ts +971 -774
|
@@ -6,813 +6,152 @@
|
|
|
6
6
|
|
|
7
7
|
export interface paths {
|
|
8
8
|
"/api/v2/WalletsService/Wallets/{walletId}": {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
header?: {
|
|
15
|
-
"x-api-version"?: string;
|
|
16
|
-
};
|
|
17
|
-
path: {
|
|
18
|
-
walletId: string;
|
|
19
|
-
};
|
|
20
|
-
};
|
|
21
|
-
responses: {
|
|
22
|
-
/** @description OK */
|
|
23
|
-
200: {
|
|
24
|
-
content: {
|
|
25
|
-
"application/json": components["schemas"]["WalletDtoEnvelope"];
|
|
26
|
-
"application/xml": components["schemas"]["WalletDtoEnvelope"];
|
|
27
|
-
};
|
|
28
|
-
};
|
|
29
|
-
/** @description Unauthorized */
|
|
30
|
-
401: {
|
|
31
|
-
content: {
|
|
32
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
33
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
34
|
-
};
|
|
35
|
-
};
|
|
36
|
-
/** @description Forbidden */
|
|
37
|
-
403: {
|
|
38
|
-
content: {
|
|
39
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
40
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
41
|
-
};
|
|
42
|
-
};
|
|
43
|
-
};
|
|
44
|
-
};
|
|
9
|
+
/**
|
|
10
|
+
* Get Wallet Details
|
|
11
|
+
* @description Get details of a specific wallet by ID.
|
|
12
|
+
*/
|
|
13
|
+
get: operations["GetWalletDetailsAsync"];
|
|
45
14
|
};
|
|
46
15
|
"/api/v2/WalletsService/Wallets/{walletId}/Orders": {
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
header?: {
|
|
53
|
-
"x-api-version"?: string;
|
|
54
|
-
};
|
|
55
|
-
path: {
|
|
56
|
-
walletId: string;
|
|
57
|
-
};
|
|
58
|
-
};
|
|
59
|
-
responses: {
|
|
60
|
-
/** @description OK */
|
|
61
|
-
200: {
|
|
62
|
-
content: {
|
|
63
|
-
"application/json": components["schemas"]["OrderDtoListEnvelope"];
|
|
64
|
-
"application/xml": components["schemas"]["OrderDtoListEnvelope"];
|
|
65
|
-
};
|
|
66
|
-
};
|
|
67
|
-
/** @description Unauthorized */
|
|
68
|
-
401: {
|
|
69
|
-
content: {
|
|
70
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
71
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
72
|
-
};
|
|
73
|
-
};
|
|
74
|
-
/** @description Forbidden */
|
|
75
|
-
403: {
|
|
76
|
-
content: {
|
|
77
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
78
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
79
|
-
};
|
|
80
|
-
};
|
|
81
|
-
};
|
|
82
|
-
};
|
|
16
|
+
/**
|
|
17
|
+
* Get Wallet Orders
|
|
18
|
+
* @description Get orders of a specific wallet by ID.
|
|
19
|
+
*/
|
|
20
|
+
get: operations["GetWalletOrdersAsync"];
|
|
83
21
|
};
|
|
84
22
|
"/api/v2/WalletsService/Wallets/{walletId}/Orders/Extended": {
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
header?: {
|
|
91
|
-
"x-api-version"?: string;
|
|
92
|
-
};
|
|
93
|
-
path: {
|
|
94
|
-
walletId: string;
|
|
95
|
-
};
|
|
96
|
-
};
|
|
97
|
-
responses: {
|
|
98
|
-
/** @description OK */
|
|
99
|
-
200: {
|
|
100
|
-
content: {
|
|
101
|
-
"application/json": components["schemas"]["ExtendedOrderDtoListEnvelope"];
|
|
102
|
-
"application/xml": components["schemas"]["ExtendedOrderDtoListEnvelope"];
|
|
103
|
-
};
|
|
104
|
-
};
|
|
105
|
-
/** @description Unauthorized */
|
|
106
|
-
401: {
|
|
107
|
-
content: {
|
|
108
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
109
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
110
|
-
};
|
|
111
|
-
};
|
|
112
|
-
/** @description Forbidden */
|
|
113
|
-
403: {
|
|
114
|
-
content: {
|
|
115
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
116
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
117
|
-
};
|
|
118
|
-
};
|
|
119
|
-
};
|
|
120
|
-
};
|
|
23
|
+
/**
|
|
24
|
+
* Get Wallet Extended Orders
|
|
25
|
+
* @description Get extended orders of a specific wallet by ID.
|
|
26
|
+
*/
|
|
27
|
+
get: operations["GetWalletExtendedOrdersAsync"];
|
|
121
28
|
};
|
|
122
29
|
"/api/v2/WalletsService/Wallets/{walletId}/Orders/Count": {
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
header?: {
|
|
129
|
-
"x-api-version"?: string;
|
|
130
|
-
};
|
|
131
|
-
path: {
|
|
132
|
-
walletId: string;
|
|
133
|
-
};
|
|
134
|
-
};
|
|
135
|
-
responses: {
|
|
136
|
-
/** @description OK */
|
|
137
|
-
200: {
|
|
138
|
-
content: {
|
|
139
|
-
"application/json": components["schemas"]["Int32Envelope"];
|
|
140
|
-
"application/xml": components["schemas"]["Int32Envelope"];
|
|
141
|
-
};
|
|
142
|
-
};
|
|
143
|
-
/** @description Unauthorized */
|
|
144
|
-
401: {
|
|
145
|
-
content: {
|
|
146
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
147
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
148
|
-
};
|
|
149
|
-
};
|
|
150
|
-
/** @description Forbidden */
|
|
151
|
-
403: {
|
|
152
|
-
content: {
|
|
153
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
154
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
155
|
-
};
|
|
156
|
-
};
|
|
157
|
-
};
|
|
158
|
-
};
|
|
30
|
+
/**
|
|
31
|
+
* Get Wallet Orders Count
|
|
32
|
+
* @description Get orders count of a specific wallet by ID.
|
|
33
|
+
*/
|
|
34
|
+
get: operations["GetWalletOrdersCountAsync"];
|
|
159
35
|
};
|
|
160
36
|
"/api/v2/WalletsService/Wallets/{walletId}/Invoices": {
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
header?: {
|
|
167
|
-
"x-api-version"?: string;
|
|
168
|
-
};
|
|
169
|
-
path: {
|
|
170
|
-
walletId: string;
|
|
171
|
-
};
|
|
172
|
-
};
|
|
173
|
-
responses: {
|
|
174
|
-
/** @description OK */
|
|
175
|
-
200: {
|
|
176
|
-
content: {
|
|
177
|
-
"application/json": components["schemas"]["InvoiceDtoListEnvelope"];
|
|
178
|
-
"application/xml": components["schemas"]["InvoiceDtoListEnvelope"];
|
|
179
|
-
};
|
|
180
|
-
};
|
|
181
|
-
/** @description Unauthorized */
|
|
182
|
-
401: {
|
|
183
|
-
content: {
|
|
184
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
185
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
186
|
-
};
|
|
187
|
-
};
|
|
188
|
-
/** @description Forbidden */
|
|
189
|
-
403: {
|
|
190
|
-
content: {
|
|
191
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
192
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
193
|
-
};
|
|
194
|
-
};
|
|
195
|
-
};
|
|
196
|
-
};
|
|
37
|
+
/**
|
|
38
|
+
* Get Wallet Invoices
|
|
39
|
+
* @description Get invoices of a specific wallet by ID.
|
|
40
|
+
*/
|
|
41
|
+
get: operations["GetWalletInvoicesAsync"];
|
|
197
42
|
};
|
|
198
43
|
"/api/v2/WalletsService/Wallets/{walletId}/Invoices/Count": {
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
header?: {
|
|
205
|
-
"x-api-version"?: string;
|
|
206
|
-
};
|
|
207
|
-
path: {
|
|
208
|
-
walletId: string;
|
|
209
|
-
};
|
|
210
|
-
};
|
|
211
|
-
responses: {
|
|
212
|
-
/** @description OK */
|
|
213
|
-
200: {
|
|
214
|
-
content: {
|
|
215
|
-
"application/json": components["schemas"]["Int32Envelope"];
|
|
216
|
-
"application/xml": components["schemas"]["Int32Envelope"];
|
|
217
|
-
};
|
|
218
|
-
};
|
|
219
|
-
/** @description Unauthorized */
|
|
220
|
-
401: {
|
|
221
|
-
content: {
|
|
222
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
223
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
224
|
-
};
|
|
225
|
-
};
|
|
226
|
-
/** @description Forbidden */
|
|
227
|
-
403: {
|
|
228
|
-
content: {
|
|
229
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
230
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
231
|
-
};
|
|
232
|
-
};
|
|
233
|
-
};
|
|
234
|
-
};
|
|
44
|
+
/**
|
|
45
|
+
* Get Wallet Invoices Count
|
|
46
|
+
* @description Get invoices count of a specific wallet by ID.
|
|
47
|
+
*/
|
|
48
|
+
get: operations["GetWalletInvoicesCountAsync"];
|
|
235
49
|
};
|
|
236
50
|
"/api/v2/WalletsService/Wallets/{walletId}/Payments": {
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
header?: {
|
|
243
|
-
"x-api-version"?: string;
|
|
244
|
-
};
|
|
245
|
-
path: {
|
|
246
|
-
walletId: string;
|
|
247
|
-
};
|
|
248
|
-
};
|
|
249
|
-
responses: {
|
|
250
|
-
/** @description OK */
|
|
251
|
-
200: {
|
|
252
|
-
content: {
|
|
253
|
-
"application/json": components["schemas"]["PaymentDtoListEnvelope"];
|
|
254
|
-
"application/xml": components["schemas"]["PaymentDtoListEnvelope"];
|
|
255
|
-
};
|
|
256
|
-
};
|
|
257
|
-
/** @description Unauthorized */
|
|
258
|
-
401: {
|
|
259
|
-
content: {
|
|
260
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
261
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
262
|
-
};
|
|
263
|
-
};
|
|
264
|
-
/** @description Forbidden */
|
|
265
|
-
403: {
|
|
266
|
-
content: {
|
|
267
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
268
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
269
|
-
};
|
|
270
|
-
};
|
|
271
|
-
};
|
|
272
|
-
};
|
|
51
|
+
/**
|
|
52
|
+
* Get Wallet Payments
|
|
53
|
+
* @description Get payments of a specific wallet by ID.
|
|
54
|
+
*/
|
|
55
|
+
get: operations["GetWalletPaymentsAsync"];
|
|
273
56
|
};
|
|
274
57
|
"/api/v2/WalletsService/Wallets/{walletId}/Payments/Count": {
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
header?: {
|
|
281
|
-
"x-api-version"?: string;
|
|
282
|
-
};
|
|
283
|
-
path: {
|
|
284
|
-
walletId: string;
|
|
285
|
-
};
|
|
286
|
-
};
|
|
287
|
-
responses: {
|
|
288
|
-
/** @description OK */
|
|
289
|
-
200: {
|
|
290
|
-
content: {
|
|
291
|
-
"application/json": components["schemas"]["Int32Envelope"];
|
|
292
|
-
"application/xml": components["schemas"]["Int32Envelope"];
|
|
293
|
-
};
|
|
294
|
-
};
|
|
295
|
-
/** @description Unauthorized */
|
|
296
|
-
401: {
|
|
297
|
-
content: {
|
|
298
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
299
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
300
|
-
};
|
|
301
|
-
};
|
|
302
|
-
/** @description Forbidden */
|
|
303
|
-
403: {
|
|
304
|
-
content: {
|
|
305
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
306
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
307
|
-
};
|
|
308
|
-
};
|
|
309
|
-
};
|
|
310
|
-
};
|
|
58
|
+
/**
|
|
59
|
+
* Get Wallet Payments Count
|
|
60
|
+
* @description Get payments count of a specific wallet by ID.
|
|
61
|
+
*/
|
|
62
|
+
get: operations["GetWalletPaymentsCountAsync"];
|
|
311
63
|
};
|
|
312
64
|
"/api/v2/WalletsService/Wallets/{walletId}/Locations": {
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
};
|
|
324
|
-
};
|
|
325
|
-
responses: {
|
|
326
|
-
/** @description OK */
|
|
327
|
-
200: {
|
|
328
|
-
content: {
|
|
329
|
-
"application/json": components["schemas"]["LocationDtoListEnvelope"];
|
|
330
|
-
"application/xml": components["schemas"]["LocationDtoListEnvelope"];
|
|
331
|
-
};
|
|
332
|
-
};
|
|
333
|
-
/** @description Unauthorized */
|
|
334
|
-
401: {
|
|
335
|
-
content: {
|
|
336
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
337
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
338
|
-
};
|
|
339
|
-
};
|
|
340
|
-
/** @description Forbidden */
|
|
341
|
-
403: {
|
|
342
|
-
content: {
|
|
343
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
344
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
345
|
-
};
|
|
346
|
-
};
|
|
347
|
-
};
|
|
348
|
-
};
|
|
349
|
-
post: {
|
|
350
|
-
parameters: {
|
|
351
|
-
query?: {
|
|
352
|
-
"api-version"?: string;
|
|
353
|
-
};
|
|
354
|
-
header?: {
|
|
355
|
-
"x-api-version"?: string;
|
|
356
|
-
};
|
|
357
|
-
path: {
|
|
358
|
-
walletId: string;
|
|
359
|
-
};
|
|
360
|
-
};
|
|
361
|
-
requestBody?: {
|
|
362
|
-
content: {
|
|
363
|
-
"application/json": components["schemas"]["LocationCreateDto"];
|
|
364
|
-
"application/xml": components["schemas"]["LocationCreateDto"];
|
|
365
|
-
};
|
|
366
|
-
};
|
|
367
|
-
responses: {
|
|
368
|
-
/** @description Created */
|
|
369
|
-
201: {
|
|
370
|
-
content: {
|
|
371
|
-
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
372
|
-
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
373
|
-
};
|
|
374
|
-
};
|
|
375
|
-
/** @description Unauthorized */
|
|
376
|
-
401: {
|
|
377
|
-
content: {
|
|
378
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
379
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
380
|
-
};
|
|
381
|
-
};
|
|
382
|
-
/** @description Forbidden */
|
|
383
|
-
403: {
|
|
384
|
-
content: {
|
|
385
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
386
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
387
|
-
};
|
|
388
|
-
};
|
|
389
|
-
};
|
|
390
|
-
};
|
|
65
|
+
/**
|
|
66
|
+
* Get Wallet Locations
|
|
67
|
+
* @description Get locations of a specific wallet by ID.
|
|
68
|
+
*/
|
|
69
|
+
get: operations["GetWalletLocationsAsync"];
|
|
70
|
+
/**
|
|
71
|
+
* Create Wallet Location
|
|
72
|
+
* @description Create a new location for a specific wallet by ID.
|
|
73
|
+
*/
|
|
74
|
+
post: operations["CreateWalletLocationAsync"];
|
|
391
75
|
};
|
|
392
76
|
"/api/v2/WalletsService/Wallets/{walletId}/Locations/Count": {
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
header?: {
|
|
399
|
-
"x-api-version"?: string;
|
|
400
|
-
};
|
|
401
|
-
path: {
|
|
402
|
-
walletId: string;
|
|
403
|
-
};
|
|
404
|
-
};
|
|
405
|
-
responses: {
|
|
406
|
-
/** @description OK */
|
|
407
|
-
200: {
|
|
408
|
-
content: {
|
|
409
|
-
"application/json": components["schemas"]["Int32Envelope"];
|
|
410
|
-
"application/xml": components["schemas"]["Int32Envelope"];
|
|
411
|
-
};
|
|
412
|
-
};
|
|
413
|
-
/** @description Unauthorized */
|
|
414
|
-
401: {
|
|
415
|
-
content: {
|
|
416
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
417
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
418
|
-
};
|
|
419
|
-
};
|
|
420
|
-
/** @description Forbidden */
|
|
421
|
-
403: {
|
|
422
|
-
content: {
|
|
423
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
424
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
425
|
-
};
|
|
426
|
-
};
|
|
427
|
-
};
|
|
428
|
-
};
|
|
77
|
+
/**
|
|
78
|
+
* Get Wallet Locations Count
|
|
79
|
+
* @description Get locations count of a specific wallet by ID.
|
|
80
|
+
*/
|
|
81
|
+
get: operations["GetWalletLocationsCountAsync"];
|
|
429
82
|
};
|
|
430
83
|
"/api/v2/WalletsService/Wallets/{walletId}/Locations/{locationId}": {
|
|
84
|
+
/**
|
|
85
|
+
* Get Wallet Location
|
|
86
|
+
* @description Get a specific location of a specific wallet by ID.
|
|
87
|
+
*/
|
|
431
88
|
get: operations["GetWalletLocationAsync"];
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
locationId: string;
|
|
443
|
-
};
|
|
444
|
-
};
|
|
445
|
-
requestBody?: {
|
|
446
|
-
content: {
|
|
447
|
-
"application/json": components["schemas"]["LocationUpdateDto"];
|
|
448
|
-
"application/xml": components["schemas"]["LocationUpdateDto"];
|
|
449
|
-
};
|
|
450
|
-
};
|
|
451
|
-
responses: {
|
|
452
|
-
/** @description OK */
|
|
453
|
-
200: {
|
|
454
|
-
content: {
|
|
455
|
-
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
456
|
-
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
457
|
-
};
|
|
458
|
-
};
|
|
459
|
-
/** @description Unauthorized */
|
|
460
|
-
401: {
|
|
461
|
-
content: {
|
|
462
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
463
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
464
|
-
};
|
|
465
|
-
};
|
|
466
|
-
/** @description Forbidden */
|
|
467
|
-
403: {
|
|
468
|
-
content: {
|
|
469
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
470
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
471
|
-
};
|
|
472
|
-
};
|
|
473
|
-
};
|
|
474
|
-
};
|
|
475
|
-
delete: {
|
|
476
|
-
parameters: {
|
|
477
|
-
query?: {
|
|
478
|
-
"api-version"?: string;
|
|
479
|
-
};
|
|
480
|
-
header?: {
|
|
481
|
-
"x-api-version"?: string;
|
|
482
|
-
};
|
|
483
|
-
path: {
|
|
484
|
-
walletId: string;
|
|
485
|
-
locationId: string;
|
|
486
|
-
};
|
|
487
|
-
};
|
|
488
|
-
responses: {
|
|
489
|
-
/** @description No Content */
|
|
490
|
-
204: {
|
|
491
|
-
content: {
|
|
492
|
-
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
493
|
-
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
494
|
-
};
|
|
495
|
-
};
|
|
496
|
-
/** @description Unauthorized */
|
|
497
|
-
401: {
|
|
498
|
-
content: {
|
|
499
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
500
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
501
|
-
};
|
|
502
|
-
};
|
|
503
|
-
/** @description Forbidden */
|
|
504
|
-
403: {
|
|
505
|
-
content: {
|
|
506
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
507
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
508
|
-
};
|
|
509
|
-
};
|
|
510
|
-
};
|
|
511
|
-
};
|
|
89
|
+
/**
|
|
90
|
+
* Update Wallet Location
|
|
91
|
+
* @description Update a specific location of a specific wallet by ID.
|
|
92
|
+
*/
|
|
93
|
+
put: operations["UpdateWalletLocationAsync"];
|
|
94
|
+
/**
|
|
95
|
+
* Delete Wallet Location
|
|
96
|
+
* @description Delete a specific location of a specific wallet by ID.
|
|
97
|
+
*/
|
|
98
|
+
delete: operations["DeleteWalletLocationAsync"];
|
|
512
99
|
};
|
|
513
100
|
"/api/v2/WalletsService/Wallets/{walletId}/Invoices/Incoming": {
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
header?: {
|
|
520
|
-
"x-api-version"?: string;
|
|
521
|
-
};
|
|
522
|
-
path: {
|
|
523
|
-
walletId: string;
|
|
524
|
-
};
|
|
525
|
-
};
|
|
526
|
-
responses: {
|
|
527
|
-
/** @description OK */
|
|
528
|
-
200: {
|
|
529
|
-
content: {
|
|
530
|
-
"application/json": components["schemas"]["InvoiceDtoListEnvelope"];
|
|
531
|
-
"application/xml": components["schemas"]["InvoiceDtoListEnvelope"];
|
|
532
|
-
};
|
|
533
|
-
};
|
|
534
|
-
/** @description Unauthorized */
|
|
535
|
-
401: {
|
|
536
|
-
content: {
|
|
537
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
538
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
539
|
-
};
|
|
540
|
-
};
|
|
541
|
-
/** @description Forbidden */
|
|
542
|
-
403: {
|
|
543
|
-
content: {
|
|
544
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
545
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
546
|
-
};
|
|
547
|
-
};
|
|
548
|
-
};
|
|
549
|
-
};
|
|
101
|
+
/**
|
|
102
|
+
* Get Incoming Wallet Invoices
|
|
103
|
+
* @description Get incoming invoices of a specific wallet by ID.
|
|
104
|
+
*/
|
|
105
|
+
get: operations["GetIncomingWalletInvoicesAsync"];
|
|
550
106
|
};
|
|
551
107
|
"/api/v2/WalletsService/Wallets/{walletId}/Invoices/Incoming/Count": {
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
header?: {
|
|
558
|
-
"x-api-version"?: string;
|
|
559
|
-
};
|
|
560
|
-
path: {
|
|
561
|
-
walletId: string;
|
|
562
|
-
};
|
|
563
|
-
};
|
|
564
|
-
responses: {
|
|
565
|
-
/** @description OK */
|
|
566
|
-
200: {
|
|
567
|
-
content: {
|
|
568
|
-
"application/json": components["schemas"]["Int32Envelope"];
|
|
569
|
-
"application/xml": components["schemas"]["Int32Envelope"];
|
|
570
|
-
};
|
|
571
|
-
};
|
|
572
|
-
/** @description Unauthorized */
|
|
573
|
-
401: {
|
|
574
|
-
content: {
|
|
575
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
576
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
577
|
-
};
|
|
578
|
-
};
|
|
579
|
-
/** @description Forbidden */
|
|
580
|
-
403: {
|
|
581
|
-
content: {
|
|
582
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
583
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
584
|
-
};
|
|
585
|
-
};
|
|
586
|
-
};
|
|
587
|
-
};
|
|
108
|
+
/**
|
|
109
|
+
* Get Incoming Wallet Invoices Count
|
|
110
|
+
* @description Get incoming invoices count of a specific wallet by ID.
|
|
111
|
+
*/
|
|
112
|
+
get: operations["GetIncomingWalletInvoicesCountAsync"];
|
|
588
113
|
};
|
|
589
114
|
"/api/v2/WalletsService/Wallets/{walletId}/Invoices/Outgoing": {
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
header?: {
|
|
596
|
-
"x-api-version"?: string;
|
|
597
|
-
};
|
|
598
|
-
path: {
|
|
599
|
-
walletId: string;
|
|
600
|
-
};
|
|
601
|
-
};
|
|
602
|
-
responses: {
|
|
603
|
-
/** @description OK */
|
|
604
|
-
200: {
|
|
605
|
-
content: {
|
|
606
|
-
"application/json": components["schemas"]["InvoiceDtoListEnvelope"];
|
|
607
|
-
"application/xml": components["schemas"]["InvoiceDtoListEnvelope"];
|
|
608
|
-
};
|
|
609
|
-
};
|
|
610
|
-
/** @description Unauthorized */
|
|
611
|
-
401: {
|
|
612
|
-
content: {
|
|
613
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
614
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
615
|
-
};
|
|
616
|
-
};
|
|
617
|
-
/** @description Forbidden */
|
|
618
|
-
403: {
|
|
619
|
-
content: {
|
|
620
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
621
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
622
|
-
};
|
|
623
|
-
};
|
|
624
|
-
};
|
|
625
|
-
};
|
|
115
|
+
/**
|
|
116
|
+
* Get Outgoing Wallet Invoices
|
|
117
|
+
* @description Get outgoing invoices of a specific wallet by ID.
|
|
118
|
+
*/
|
|
119
|
+
get: operations["GetOutgoingWalletInvoicesAsync"];
|
|
626
120
|
};
|
|
627
121
|
"/api/v2/WalletsService/Wallets/{walletId}/Invoices/Outgoing/Count": {
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
header?: {
|
|
634
|
-
"x-api-version"?: string;
|
|
635
|
-
};
|
|
636
|
-
path: {
|
|
637
|
-
walletId: string;
|
|
638
|
-
};
|
|
639
|
-
};
|
|
640
|
-
responses: {
|
|
641
|
-
/** @description OK */
|
|
642
|
-
200: {
|
|
643
|
-
content: {
|
|
644
|
-
"application/json": components["schemas"]["Int32Envelope"];
|
|
645
|
-
"application/xml": components["schemas"]["Int32Envelope"];
|
|
646
|
-
};
|
|
647
|
-
};
|
|
648
|
-
/** @description Unauthorized */
|
|
649
|
-
401: {
|
|
650
|
-
content: {
|
|
651
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
652
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
653
|
-
};
|
|
654
|
-
};
|
|
655
|
-
/** @description Forbidden */
|
|
656
|
-
403: {
|
|
657
|
-
content: {
|
|
658
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
659
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
660
|
-
};
|
|
661
|
-
};
|
|
662
|
-
};
|
|
663
|
-
};
|
|
122
|
+
/**
|
|
123
|
+
* Get Outgoing Wallet Invoices Count
|
|
124
|
+
* @description Get outgoing invoices count of a specific wallet by ID.
|
|
125
|
+
*/
|
|
126
|
+
get: operations["GetOutgoingWalletInvoicesCountAsync"];
|
|
664
127
|
};
|
|
665
128
|
"/api/v2/WalletsService/Wallets/{walletId}/Payments/Incoming": {
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
header?: {
|
|
672
|
-
"x-api-version"?: string;
|
|
673
|
-
};
|
|
674
|
-
path: {
|
|
675
|
-
walletId: string;
|
|
676
|
-
};
|
|
677
|
-
};
|
|
678
|
-
responses: {
|
|
679
|
-
/** @description OK */
|
|
680
|
-
200: {
|
|
681
|
-
content: {
|
|
682
|
-
"application/json": components["schemas"]["PaymentDtoListEnvelope"];
|
|
683
|
-
"application/xml": components["schemas"]["PaymentDtoListEnvelope"];
|
|
684
|
-
};
|
|
685
|
-
};
|
|
686
|
-
/** @description Unauthorized */
|
|
687
|
-
401: {
|
|
688
|
-
content: {
|
|
689
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
690
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
691
|
-
};
|
|
692
|
-
};
|
|
693
|
-
/** @description Forbidden */
|
|
694
|
-
403: {
|
|
695
|
-
content: {
|
|
696
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
697
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
698
|
-
};
|
|
699
|
-
};
|
|
700
|
-
};
|
|
701
|
-
};
|
|
129
|
+
/**
|
|
130
|
+
* Get Incoming Payments
|
|
131
|
+
* @description Get incoming payments of a specific wallet by ID.
|
|
132
|
+
*/
|
|
133
|
+
get: operations["GetIncomingPaymentsAsync"];
|
|
702
134
|
};
|
|
703
135
|
"/api/v2/WalletsService/Wallets/{walletId}/Payments/Incoming/Count": {
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
header?: {
|
|
710
|
-
"x-api-version"?: string;
|
|
711
|
-
};
|
|
712
|
-
path: {
|
|
713
|
-
walletId: string;
|
|
714
|
-
};
|
|
715
|
-
};
|
|
716
|
-
responses: {
|
|
717
|
-
/** @description OK */
|
|
718
|
-
200: {
|
|
719
|
-
content: {
|
|
720
|
-
"application/json": components["schemas"]["Int32Envelope"];
|
|
721
|
-
"application/xml": components["schemas"]["Int32Envelope"];
|
|
722
|
-
};
|
|
723
|
-
};
|
|
724
|
-
/** @description Unauthorized */
|
|
725
|
-
401: {
|
|
726
|
-
content: {
|
|
727
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
728
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
729
|
-
};
|
|
730
|
-
};
|
|
731
|
-
/** @description Forbidden */
|
|
732
|
-
403: {
|
|
733
|
-
content: {
|
|
734
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
735
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
736
|
-
};
|
|
737
|
-
};
|
|
738
|
-
};
|
|
739
|
-
};
|
|
136
|
+
/**
|
|
137
|
+
* Get Incoming Payments Count
|
|
138
|
+
* @description Get incoming payments count of a specific wallet by ID.
|
|
139
|
+
*/
|
|
140
|
+
get: operations["GetIncomingPaymentsCountAsync"];
|
|
740
141
|
};
|
|
741
142
|
"/api/v2/WalletsService/Wallets/{walletId}/Payments/Outgoing": {
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
header?: {
|
|
748
|
-
"x-api-version"?: string;
|
|
749
|
-
};
|
|
750
|
-
path: {
|
|
751
|
-
walletId: string;
|
|
752
|
-
};
|
|
753
|
-
};
|
|
754
|
-
responses: {
|
|
755
|
-
/** @description OK */
|
|
756
|
-
200: {
|
|
757
|
-
content: {
|
|
758
|
-
"application/json": components["schemas"]["PaymentDtoListEnvelope"];
|
|
759
|
-
"application/xml": components["schemas"]["PaymentDtoListEnvelope"];
|
|
760
|
-
};
|
|
761
|
-
};
|
|
762
|
-
/** @description Unauthorized */
|
|
763
|
-
401: {
|
|
764
|
-
content: {
|
|
765
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
766
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
767
|
-
};
|
|
768
|
-
};
|
|
769
|
-
/** @description Forbidden */
|
|
770
|
-
403: {
|
|
771
|
-
content: {
|
|
772
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
773
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
774
|
-
};
|
|
775
|
-
};
|
|
776
|
-
};
|
|
777
|
-
};
|
|
143
|
+
/**
|
|
144
|
+
* Get Outgoing Payments
|
|
145
|
+
* @description Get outgoing payments of a specific wallet by ID.
|
|
146
|
+
*/
|
|
147
|
+
get: operations["GetOutgoingPaymentsAsync"];
|
|
778
148
|
};
|
|
779
149
|
"/api/v2/WalletsService/Wallets/{walletId}/Payments/Outgoing/Count": {
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
header?: {
|
|
786
|
-
"x-api-version"?: string;
|
|
787
|
-
};
|
|
788
|
-
path: {
|
|
789
|
-
walletId: string;
|
|
790
|
-
};
|
|
791
|
-
};
|
|
792
|
-
responses: {
|
|
793
|
-
/** @description OK */
|
|
794
|
-
200: {
|
|
795
|
-
content: {
|
|
796
|
-
"application/json": components["schemas"]["Int32Envelope"];
|
|
797
|
-
"application/xml": components["schemas"]["Int32Envelope"];
|
|
798
|
-
};
|
|
799
|
-
};
|
|
800
|
-
/** @description Unauthorized */
|
|
801
|
-
401: {
|
|
802
|
-
content: {
|
|
803
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
804
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
805
|
-
};
|
|
806
|
-
};
|
|
807
|
-
/** @description Forbidden */
|
|
808
|
-
403: {
|
|
809
|
-
content: {
|
|
810
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
811
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
812
|
-
};
|
|
813
|
-
};
|
|
814
|
-
};
|
|
815
|
-
};
|
|
150
|
+
/**
|
|
151
|
+
* Get Outgoing Payments Count
|
|
152
|
+
* @description Get outgoing payments count of a specific wallet by ID.
|
|
153
|
+
*/
|
|
154
|
+
get: operations["GetOutgoingPaymentsCountAsync"];
|
|
816
155
|
};
|
|
817
156
|
}
|
|
818
157
|
|
|
@@ -1681,7 +1020,11 @@ export type external = Record<string, never>;
|
|
|
1681
1020
|
|
|
1682
1021
|
export interface operations {
|
|
1683
1022
|
|
|
1684
|
-
|
|
1023
|
+
/**
|
|
1024
|
+
* Get Wallet Details
|
|
1025
|
+
* @description Get details of a specific wallet by ID.
|
|
1026
|
+
*/
|
|
1027
|
+
GetWalletDetailsAsync: {
|
|
1685
1028
|
parameters: {
|
|
1686
1029
|
query?: {
|
|
1687
1030
|
"api-version"?: string;
|
|
@@ -1691,15 +1034,869 @@ export interface operations {
|
|
|
1691
1034
|
};
|
|
1692
1035
|
path: {
|
|
1693
1036
|
walletId: string;
|
|
1694
|
-
locationId: string;
|
|
1695
1037
|
};
|
|
1696
1038
|
};
|
|
1697
1039
|
responses: {
|
|
1698
1040
|
/** @description OK */
|
|
1699
1041
|
200: {
|
|
1700
1042
|
content: {
|
|
1701
|
-
"application/json": components["schemas"]["
|
|
1702
|
-
"application/xml": components["schemas"]["
|
|
1043
|
+
"application/json": components["schemas"]["WalletDtoEnvelope"];
|
|
1044
|
+
"application/xml": components["schemas"]["WalletDtoEnvelope"];
|
|
1045
|
+
};
|
|
1046
|
+
};
|
|
1047
|
+
/** @description Unauthorized */
|
|
1048
|
+
401: {
|
|
1049
|
+
content: {
|
|
1050
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1051
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1052
|
+
};
|
|
1053
|
+
};
|
|
1054
|
+
/** @description Forbidden */
|
|
1055
|
+
403: {
|
|
1056
|
+
content: {
|
|
1057
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1058
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1059
|
+
};
|
|
1060
|
+
};
|
|
1061
|
+
};
|
|
1062
|
+
};
|
|
1063
|
+
/**
|
|
1064
|
+
* Get Wallet Orders
|
|
1065
|
+
* @description Get orders of a specific wallet by ID.
|
|
1066
|
+
*/
|
|
1067
|
+
GetWalletOrdersAsync: {
|
|
1068
|
+
parameters: {
|
|
1069
|
+
query?: {
|
|
1070
|
+
"api-version"?: string;
|
|
1071
|
+
};
|
|
1072
|
+
header?: {
|
|
1073
|
+
"x-api-version"?: string;
|
|
1074
|
+
};
|
|
1075
|
+
path: {
|
|
1076
|
+
walletId: string;
|
|
1077
|
+
};
|
|
1078
|
+
};
|
|
1079
|
+
responses: {
|
|
1080
|
+
/** @description OK */
|
|
1081
|
+
200: {
|
|
1082
|
+
content: {
|
|
1083
|
+
"application/json": components["schemas"]["OrderDtoListEnvelope"];
|
|
1084
|
+
"application/xml": components["schemas"]["OrderDtoListEnvelope"];
|
|
1085
|
+
};
|
|
1086
|
+
};
|
|
1087
|
+
/** @description Unauthorized */
|
|
1088
|
+
401: {
|
|
1089
|
+
content: {
|
|
1090
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1091
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1092
|
+
};
|
|
1093
|
+
};
|
|
1094
|
+
/** @description Forbidden */
|
|
1095
|
+
403: {
|
|
1096
|
+
content: {
|
|
1097
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1098
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1099
|
+
};
|
|
1100
|
+
};
|
|
1101
|
+
};
|
|
1102
|
+
};
|
|
1103
|
+
/**
|
|
1104
|
+
* Get Wallet Extended Orders
|
|
1105
|
+
* @description Get extended orders of a specific wallet by ID.
|
|
1106
|
+
*/
|
|
1107
|
+
GetWalletExtendedOrdersAsync: {
|
|
1108
|
+
parameters: {
|
|
1109
|
+
query?: {
|
|
1110
|
+
"api-version"?: string;
|
|
1111
|
+
};
|
|
1112
|
+
header?: {
|
|
1113
|
+
"x-api-version"?: string;
|
|
1114
|
+
};
|
|
1115
|
+
path: {
|
|
1116
|
+
walletId: string;
|
|
1117
|
+
};
|
|
1118
|
+
};
|
|
1119
|
+
responses: {
|
|
1120
|
+
/** @description OK */
|
|
1121
|
+
200: {
|
|
1122
|
+
content: {
|
|
1123
|
+
"application/json": components["schemas"]["ExtendedOrderDtoListEnvelope"];
|
|
1124
|
+
"application/xml": components["schemas"]["ExtendedOrderDtoListEnvelope"];
|
|
1125
|
+
};
|
|
1126
|
+
};
|
|
1127
|
+
/** @description Unauthorized */
|
|
1128
|
+
401: {
|
|
1129
|
+
content: {
|
|
1130
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1131
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1132
|
+
};
|
|
1133
|
+
};
|
|
1134
|
+
/** @description Forbidden */
|
|
1135
|
+
403: {
|
|
1136
|
+
content: {
|
|
1137
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1138
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1139
|
+
};
|
|
1140
|
+
};
|
|
1141
|
+
};
|
|
1142
|
+
};
|
|
1143
|
+
/**
|
|
1144
|
+
* Get Wallet Orders Count
|
|
1145
|
+
* @description Get orders count of a specific wallet by ID.
|
|
1146
|
+
*/
|
|
1147
|
+
GetWalletOrdersCountAsync: {
|
|
1148
|
+
parameters: {
|
|
1149
|
+
query?: {
|
|
1150
|
+
"api-version"?: string;
|
|
1151
|
+
};
|
|
1152
|
+
header?: {
|
|
1153
|
+
"x-api-version"?: string;
|
|
1154
|
+
};
|
|
1155
|
+
path: {
|
|
1156
|
+
walletId: string;
|
|
1157
|
+
};
|
|
1158
|
+
};
|
|
1159
|
+
responses: {
|
|
1160
|
+
/** @description OK */
|
|
1161
|
+
200: {
|
|
1162
|
+
content: {
|
|
1163
|
+
"application/json": components["schemas"]["Int32Envelope"];
|
|
1164
|
+
"application/xml": components["schemas"]["Int32Envelope"];
|
|
1165
|
+
};
|
|
1166
|
+
};
|
|
1167
|
+
/** @description Unauthorized */
|
|
1168
|
+
401: {
|
|
1169
|
+
content: {
|
|
1170
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1171
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1172
|
+
};
|
|
1173
|
+
};
|
|
1174
|
+
/** @description Forbidden */
|
|
1175
|
+
403: {
|
|
1176
|
+
content: {
|
|
1177
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1178
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1179
|
+
};
|
|
1180
|
+
};
|
|
1181
|
+
};
|
|
1182
|
+
};
|
|
1183
|
+
/**
|
|
1184
|
+
* Get Wallet Invoices
|
|
1185
|
+
* @description Get invoices of a specific wallet by ID.
|
|
1186
|
+
*/
|
|
1187
|
+
GetWalletInvoicesAsync: {
|
|
1188
|
+
parameters: {
|
|
1189
|
+
query?: {
|
|
1190
|
+
"api-version"?: string;
|
|
1191
|
+
};
|
|
1192
|
+
header?: {
|
|
1193
|
+
"x-api-version"?: string;
|
|
1194
|
+
};
|
|
1195
|
+
path: {
|
|
1196
|
+
walletId: string;
|
|
1197
|
+
};
|
|
1198
|
+
};
|
|
1199
|
+
responses: {
|
|
1200
|
+
/** @description OK */
|
|
1201
|
+
200: {
|
|
1202
|
+
content: {
|
|
1203
|
+
"application/json": components["schemas"]["InvoiceDtoListEnvelope"];
|
|
1204
|
+
"application/xml": components["schemas"]["InvoiceDtoListEnvelope"];
|
|
1205
|
+
};
|
|
1206
|
+
};
|
|
1207
|
+
/** @description Unauthorized */
|
|
1208
|
+
401: {
|
|
1209
|
+
content: {
|
|
1210
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1211
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1212
|
+
};
|
|
1213
|
+
};
|
|
1214
|
+
/** @description Forbidden */
|
|
1215
|
+
403: {
|
|
1216
|
+
content: {
|
|
1217
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1218
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1219
|
+
};
|
|
1220
|
+
};
|
|
1221
|
+
};
|
|
1222
|
+
};
|
|
1223
|
+
/**
|
|
1224
|
+
* Get Wallet Invoices Count
|
|
1225
|
+
* @description Get invoices count of a specific wallet by ID.
|
|
1226
|
+
*/
|
|
1227
|
+
GetWalletInvoicesCountAsync: {
|
|
1228
|
+
parameters: {
|
|
1229
|
+
query?: {
|
|
1230
|
+
"api-version"?: string;
|
|
1231
|
+
};
|
|
1232
|
+
header?: {
|
|
1233
|
+
"x-api-version"?: string;
|
|
1234
|
+
};
|
|
1235
|
+
path: {
|
|
1236
|
+
walletId: string;
|
|
1237
|
+
};
|
|
1238
|
+
};
|
|
1239
|
+
responses: {
|
|
1240
|
+
/** @description OK */
|
|
1241
|
+
200: {
|
|
1242
|
+
content: {
|
|
1243
|
+
"application/json": components["schemas"]["Int32Envelope"];
|
|
1244
|
+
"application/xml": components["schemas"]["Int32Envelope"];
|
|
1245
|
+
};
|
|
1246
|
+
};
|
|
1247
|
+
/** @description Unauthorized */
|
|
1248
|
+
401: {
|
|
1249
|
+
content: {
|
|
1250
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1251
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1252
|
+
};
|
|
1253
|
+
};
|
|
1254
|
+
/** @description Forbidden */
|
|
1255
|
+
403: {
|
|
1256
|
+
content: {
|
|
1257
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1258
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1259
|
+
};
|
|
1260
|
+
};
|
|
1261
|
+
};
|
|
1262
|
+
};
|
|
1263
|
+
/**
|
|
1264
|
+
* Get Wallet Payments
|
|
1265
|
+
* @description Get payments of a specific wallet by ID.
|
|
1266
|
+
*/
|
|
1267
|
+
GetWalletPaymentsAsync: {
|
|
1268
|
+
parameters: {
|
|
1269
|
+
query?: {
|
|
1270
|
+
"api-version"?: string;
|
|
1271
|
+
};
|
|
1272
|
+
header?: {
|
|
1273
|
+
"x-api-version"?: string;
|
|
1274
|
+
};
|
|
1275
|
+
path: {
|
|
1276
|
+
walletId: string;
|
|
1277
|
+
};
|
|
1278
|
+
};
|
|
1279
|
+
responses: {
|
|
1280
|
+
/** @description OK */
|
|
1281
|
+
200: {
|
|
1282
|
+
content: {
|
|
1283
|
+
"application/json": components["schemas"]["PaymentDtoListEnvelope"];
|
|
1284
|
+
"application/xml": components["schemas"]["PaymentDtoListEnvelope"];
|
|
1285
|
+
};
|
|
1286
|
+
};
|
|
1287
|
+
/** @description Unauthorized */
|
|
1288
|
+
401: {
|
|
1289
|
+
content: {
|
|
1290
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1291
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1292
|
+
};
|
|
1293
|
+
};
|
|
1294
|
+
/** @description Forbidden */
|
|
1295
|
+
403: {
|
|
1296
|
+
content: {
|
|
1297
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1298
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1299
|
+
};
|
|
1300
|
+
};
|
|
1301
|
+
};
|
|
1302
|
+
};
|
|
1303
|
+
/**
|
|
1304
|
+
* Get Wallet Payments Count
|
|
1305
|
+
* @description Get payments count of a specific wallet by ID.
|
|
1306
|
+
*/
|
|
1307
|
+
GetWalletPaymentsCountAsync: {
|
|
1308
|
+
parameters: {
|
|
1309
|
+
query?: {
|
|
1310
|
+
"api-version"?: string;
|
|
1311
|
+
};
|
|
1312
|
+
header?: {
|
|
1313
|
+
"x-api-version"?: string;
|
|
1314
|
+
};
|
|
1315
|
+
path: {
|
|
1316
|
+
walletId: string;
|
|
1317
|
+
};
|
|
1318
|
+
};
|
|
1319
|
+
responses: {
|
|
1320
|
+
/** @description OK */
|
|
1321
|
+
200: {
|
|
1322
|
+
content: {
|
|
1323
|
+
"application/json": components["schemas"]["Int32Envelope"];
|
|
1324
|
+
"application/xml": components["schemas"]["Int32Envelope"];
|
|
1325
|
+
};
|
|
1326
|
+
};
|
|
1327
|
+
/** @description Unauthorized */
|
|
1328
|
+
401: {
|
|
1329
|
+
content: {
|
|
1330
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1331
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1332
|
+
};
|
|
1333
|
+
};
|
|
1334
|
+
/** @description Forbidden */
|
|
1335
|
+
403: {
|
|
1336
|
+
content: {
|
|
1337
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1338
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1339
|
+
};
|
|
1340
|
+
};
|
|
1341
|
+
};
|
|
1342
|
+
};
|
|
1343
|
+
/**
|
|
1344
|
+
* Get Wallet Locations
|
|
1345
|
+
* @description Get locations of a specific wallet by ID.
|
|
1346
|
+
*/
|
|
1347
|
+
GetWalletLocationsAsync: {
|
|
1348
|
+
parameters: {
|
|
1349
|
+
query?: {
|
|
1350
|
+
"api-version"?: string;
|
|
1351
|
+
};
|
|
1352
|
+
header?: {
|
|
1353
|
+
"x-api-version"?: string;
|
|
1354
|
+
};
|
|
1355
|
+
path: {
|
|
1356
|
+
walletId: string;
|
|
1357
|
+
};
|
|
1358
|
+
};
|
|
1359
|
+
responses: {
|
|
1360
|
+
/** @description OK */
|
|
1361
|
+
200: {
|
|
1362
|
+
content: {
|
|
1363
|
+
"application/json": components["schemas"]["LocationDtoListEnvelope"];
|
|
1364
|
+
"application/xml": components["schemas"]["LocationDtoListEnvelope"];
|
|
1365
|
+
};
|
|
1366
|
+
};
|
|
1367
|
+
/** @description Unauthorized */
|
|
1368
|
+
401: {
|
|
1369
|
+
content: {
|
|
1370
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1371
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1372
|
+
};
|
|
1373
|
+
};
|
|
1374
|
+
/** @description Forbidden */
|
|
1375
|
+
403: {
|
|
1376
|
+
content: {
|
|
1377
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1378
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1379
|
+
};
|
|
1380
|
+
};
|
|
1381
|
+
};
|
|
1382
|
+
};
|
|
1383
|
+
/**
|
|
1384
|
+
* Create Wallet Location
|
|
1385
|
+
* @description Create a new location for a specific wallet by ID.
|
|
1386
|
+
*/
|
|
1387
|
+
CreateWalletLocationAsync: {
|
|
1388
|
+
parameters: {
|
|
1389
|
+
query?: {
|
|
1390
|
+
"api-version"?: string;
|
|
1391
|
+
};
|
|
1392
|
+
header?: {
|
|
1393
|
+
"x-api-version"?: string;
|
|
1394
|
+
};
|
|
1395
|
+
path: {
|
|
1396
|
+
walletId: string;
|
|
1397
|
+
};
|
|
1398
|
+
};
|
|
1399
|
+
requestBody?: {
|
|
1400
|
+
content: {
|
|
1401
|
+
"application/json": components["schemas"]["LocationCreateDto"];
|
|
1402
|
+
"application/xml": components["schemas"]["LocationCreateDto"];
|
|
1403
|
+
};
|
|
1404
|
+
};
|
|
1405
|
+
responses: {
|
|
1406
|
+
/** @description Created */
|
|
1407
|
+
201: {
|
|
1408
|
+
content: {
|
|
1409
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
1410
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
1411
|
+
};
|
|
1412
|
+
};
|
|
1413
|
+
/** @description Unauthorized */
|
|
1414
|
+
401: {
|
|
1415
|
+
content: {
|
|
1416
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1417
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1418
|
+
};
|
|
1419
|
+
};
|
|
1420
|
+
/** @description Forbidden */
|
|
1421
|
+
403: {
|
|
1422
|
+
content: {
|
|
1423
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1424
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1425
|
+
};
|
|
1426
|
+
};
|
|
1427
|
+
};
|
|
1428
|
+
};
|
|
1429
|
+
/**
|
|
1430
|
+
* Get Wallet Locations Count
|
|
1431
|
+
* @description Get locations count of a specific wallet by ID.
|
|
1432
|
+
*/
|
|
1433
|
+
GetWalletLocationsCountAsync: {
|
|
1434
|
+
parameters: {
|
|
1435
|
+
query?: {
|
|
1436
|
+
"api-version"?: string;
|
|
1437
|
+
};
|
|
1438
|
+
header?: {
|
|
1439
|
+
"x-api-version"?: string;
|
|
1440
|
+
};
|
|
1441
|
+
path: {
|
|
1442
|
+
walletId: string;
|
|
1443
|
+
};
|
|
1444
|
+
};
|
|
1445
|
+
responses: {
|
|
1446
|
+
/** @description OK */
|
|
1447
|
+
200: {
|
|
1448
|
+
content: {
|
|
1449
|
+
"application/json": components["schemas"]["Int32Envelope"];
|
|
1450
|
+
"application/xml": components["schemas"]["Int32Envelope"];
|
|
1451
|
+
};
|
|
1452
|
+
};
|
|
1453
|
+
/** @description Unauthorized */
|
|
1454
|
+
401: {
|
|
1455
|
+
content: {
|
|
1456
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1457
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1458
|
+
};
|
|
1459
|
+
};
|
|
1460
|
+
/** @description Forbidden */
|
|
1461
|
+
403: {
|
|
1462
|
+
content: {
|
|
1463
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1464
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1465
|
+
};
|
|
1466
|
+
};
|
|
1467
|
+
};
|
|
1468
|
+
};
|
|
1469
|
+
/**
|
|
1470
|
+
* Get Wallet Location
|
|
1471
|
+
* @description Get a specific location of a specific wallet by ID.
|
|
1472
|
+
*/
|
|
1473
|
+
GetWalletLocationAsync: {
|
|
1474
|
+
parameters: {
|
|
1475
|
+
query?: {
|
|
1476
|
+
"api-version"?: string;
|
|
1477
|
+
};
|
|
1478
|
+
header?: {
|
|
1479
|
+
"x-api-version"?: string;
|
|
1480
|
+
};
|
|
1481
|
+
path: {
|
|
1482
|
+
walletId: string;
|
|
1483
|
+
locationId: string;
|
|
1484
|
+
};
|
|
1485
|
+
};
|
|
1486
|
+
responses: {
|
|
1487
|
+
/** @description OK */
|
|
1488
|
+
200: {
|
|
1489
|
+
content: {
|
|
1490
|
+
"application/json": components["schemas"]["LocationDtoEnvelope"];
|
|
1491
|
+
"application/xml": components["schemas"]["LocationDtoEnvelope"];
|
|
1492
|
+
};
|
|
1493
|
+
};
|
|
1494
|
+
/** @description Unauthorized */
|
|
1495
|
+
401: {
|
|
1496
|
+
content: {
|
|
1497
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1498
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1499
|
+
};
|
|
1500
|
+
};
|
|
1501
|
+
/** @description Forbidden */
|
|
1502
|
+
403: {
|
|
1503
|
+
content: {
|
|
1504
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1505
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1506
|
+
};
|
|
1507
|
+
};
|
|
1508
|
+
};
|
|
1509
|
+
};
|
|
1510
|
+
/**
|
|
1511
|
+
* Update Wallet Location
|
|
1512
|
+
* @description Update a specific location of a specific wallet by ID.
|
|
1513
|
+
*/
|
|
1514
|
+
UpdateWalletLocationAsync: {
|
|
1515
|
+
parameters: {
|
|
1516
|
+
query?: {
|
|
1517
|
+
"api-version"?: string;
|
|
1518
|
+
};
|
|
1519
|
+
header?: {
|
|
1520
|
+
"x-api-version"?: string;
|
|
1521
|
+
};
|
|
1522
|
+
path: {
|
|
1523
|
+
walletId: string;
|
|
1524
|
+
locationId: string;
|
|
1525
|
+
};
|
|
1526
|
+
};
|
|
1527
|
+
requestBody?: {
|
|
1528
|
+
content: {
|
|
1529
|
+
"application/json": components["schemas"]["LocationUpdateDto"];
|
|
1530
|
+
"application/xml": components["schemas"]["LocationUpdateDto"];
|
|
1531
|
+
};
|
|
1532
|
+
};
|
|
1533
|
+
responses: {
|
|
1534
|
+
/** @description OK */
|
|
1535
|
+
200: {
|
|
1536
|
+
content: {
|
|
1537
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
1538
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
1539
|
+
};
|
|
1540
|
+
};
|
|
1541
|
+
/** @description Unauthorized */
|
|
1542
|
+
401: {
|
|
1543
|
+
content: {
|
|
1544
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1545
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1546
|
+
};
|
|
1547
|
+
};
|
|
1548
|
+
/** @description Forbidden */
|
|
1549
|
+
403: {
|
|
1550
|
+
content: {
|
|
1551
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1552
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1553
|
+
};
|
|
1554
|
+
};
|
|
1555
|
+
};
|
|
1556
|
+
};
|
|
1557
|
+
/**
|
|
1558
|
+
* Delete Wallet Location
|
|
1559
|
+
* @description Delete a specific location of a specific wallet by ID.
|
|
1560
|
+
*/
|
|
1561
|
+
DeleteWalletLocationAsync: {
|
|
1562
|
+
parameters: {
|
|
1563
|
+
query?: {
|
|
1564
|
+
"api-version"?: string;
|
|
1565
|
+
};
|
|
1566
|
+
header?: {
|
|
1567
|
+
"x-api-version"?: string;
|
|
1568
|
+
};
|
|
1569
|
+
path: {
|
|
1570
|
+
walletId: string;
|
|
1571
|
+
locationId: string;
|
|
1572
|
+
};
|
|
1573
|
+
};
|
|
1574
|
+
responses: {
|
|
1575
|
+
/** @description No Content */
|
|
1576
|
+
204: {
|
|
1577
|
+
content: {
|
|
1578
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
1579
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
1580
|
+
};
|
|
1581
|
+
};
|
|
1582
|
+
/** @description Unauthorized */
|
|
1583
|
+
401: {
|
|
1584
|
+
content: {
|
|
1585
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1586
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1587
|
+
};
|
|
1588
|
+
};
|
|
1589
|
+
/** @description Forbidden */
|
|
1590
|
+
403: {
|
|
1591
|
+
content: {
|
|
1592
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1593
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1594
|
+
};
|
|
1595
|
+
};
|
|
1596
|
+
};
|
|
1597
|
+
};
|
|
1598
|
+
/**
|
|
1599
|
+
* Get Incoming Wallet Invoices
|
|
1600
|
+
* @description Get incoming invoices of a specific wallet by ID.
|
|
1601
|
+
*/
|
|
1602
|
+
GetIncomingWalletInvoicesAsync: {
|
|
1603
|
+
parameters: {
|
|
1604
|
+
query?: {
|
|
1605
|
+
"api-version"?: string;
|
|
1606
|
+
};
|
|
1607
|
+
header?: {
|
|
1608
|
+
"x-api-version"?: string;
|
|
1609
|
+
};
|
|
1610
|
+
path: {
|
|
1611
|
+
walletId: string;
|
|
1612
|
+
};
|
|
1613
|
+
};
|
|
1614
|
+
responses: {
|
|
1615
|
+
/** @description OK */
|
|
1616
|
+
200: {
|
|
1617
|
+
content: {
|
|
1618
|
+
"application/json": components["schemas"]["InvoiceDtoListEnvelope"];
|
|
1619
|
+
"application/xml": components["schemas"]["InvoiceDtoListEnvelope"];
|
|
1620
|
+
};
|
|
1621
|
+
};
|
|
1622
|
+
/** @description Unauthorized */
|
|
1623
|
+
401: {
|
|
1624
|
+
content: {
|
|
1625
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1626
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1627
|
+
};
|
|
1628
|
+
};
|
|
1629
|
+
/** @description Forbidden */
|
|
1630
|
+
403: {
|
|
1631
|
+
content: {
|
|
1632
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1633
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1634
|
+
};
|
|
1635
|
+
};
|
|
1636
|
+
};
|
|
1637
|
+
};
|
|
1638
|
+
/**
|
|
1639
|
+
* Get Incoming Wallet Invoices Count
|
|
1640
|
+
* @description Get incoming invoices count of a specific wallet by ID.
|
|
1641
|
+
*/
|
|
1642
|
+
GetIncomingWalletInvoicesCountAsync: {
|
|
1643
|
+
parameters: {
|
|
1644
|
+
query?: {
|
|
1645
|
+
"api-version"?: string;
|
|
1646
|
+
};
|
|
1647
|
+
header?: {
|
|
1648
|
+
"x-api-version"?: string;
|
|
1649
|
+
};
|
|
1650
|
+
path: {
|
|
1651
|
+
walletId: string;
|
|
1652
|
+
};
|
|
1653
|
+
};
|
|
1654
|
+
responses: {
|
|
1655
|
+
/** @description OK */
|
|
1656
|
+
200: {
|
|
1657
|
+
content: {
|
|
1658
|
+
"application/json": components["schemas"]["Int32Envelope"];
|
|
1659
|
+
"application/xml": components["schemas"]["Int32Envelope"];
|
|
1660
|
+
};
|
|
1661
|
+
};
|
|
1662
|
+
/** @description Unauthorized */
|
|
1663
|
+
401: {
|
|
1664
|
+
content: {
|
|
1665
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1666
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1667
|
+
};
|
|
1668
|
+
};
|
|
1669
|
+
/** @description Forbidden */
|
|
1670
|
+
403: {
|
|
1671
|
+
content: {
|
|
1672
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1673
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1674
|
+
};
|
|
1675
|
+
};
|
|
1676
|
+
};
|
|
1677
|
+
};
|
|
1678
|
+
/**
|
|
1679
|
+
* Get Outgoing Wallet Invoices
|
|
1680
|
+
* @description Get outgoing invoices of a specific wallet by ID.
|
|
1681
|
+
*/
|
|
1682
|
+
GetOutgoingWalletInvoicesAsync: {
|
|
1683
|
+
parameters: {
|
|
1684
|
+
query?: {
|
|
1685
|
+
"api-version"?: string;
|
|
1686
|
+
};
|
|
1687
|
+
header?: {
|
|
1688
|
+
"x-api-version"?: string;
|
|
1689
|
+
};
|
|
1690
|
+
path: {
|
|
1691
|
+
walletId: string;
|
|
1692
|
+
};
|
|
1693
|
+
};
|
|
1694
|
+
responses: {
|
|
1695
|
+
/** @description OK */
|
|
1696
|
+
200: {
|
|
1697
|
+
content: {
|
|
1698
|
+
"application/json": components["schemas"]["InvoiceDtoListEnvelope"];
|
|
1699
|
+
"application/xml": components["schemas"]["InvoiceDtoListEnvelope"];
|
|
1700
|
+
};
|
|
1701
|
+
};
|
|
1702
|
+
/** @description Unauthorized */
|
|
1703
|
+
401: {
|
|
1704
|
+
content: {
|
|
1705
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1706
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1707
|
+
};
|
|
1708
|
+
};
|
|
1709
|
+
/** @description Forbidden */
|
|
1710
|
+
403: {
|
|
1711
|
+
content: {
|
|
1712
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1713
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1714
|
+
};
|
|
1715
|
+
};
|
|
1716
|
+
};
|
|
1717
|
+
};
|
|
1718
|
+
/**
|
|
1719
|
+
* Get Outgoing Wallet Invoices Count
|
|
1720
|
+
* @description Get outgoing invoices count of a specific wallet by ID.
|
|
1721
|
+
*/
|
|
1722
|
+
GetOutgoingWalletInvoicesCountAsync: {
|
|
1723
|
+
parameters: {
|
|
1724
|
+
query?: {
|
|
1725
|
+
"api-version"?: string;
|
|
1726
|
+
};
|
|
1727
|
+
header?: {
|
|
1728
|
+
"x-api-version"?: string;
|
|
1729
|
+
};
|
|
1730
|
+
path: {
|
|
1731
|
+
walletId: string;
|
|
1732
|
+
};
|
|
1733
|
+
};
|
|
1734
|
+
responses: {
|
|
1735
|
+
/** @description OK */
|
|
1736
|
+
200: {
|
|
1737
|
+
content: {
|
|
1738
|
+
"application/json": components["schemas"]["Int32Envelope"];
|
|
1739
|
+
"application/xml": components["schemas"]["Int32Envelope"];
|
|
1740
|
+
};
|
|
1741
|
+
};
|
|
1742
|
+
/** @description Unauthorized */
|
|
1743
|
+
401: {
|
|
1744
|
+
content: {
|
|
1745
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1746
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1747
|
+
};
|
|
1748
|
+
};
|
|
1749
|
+
/** @description Forbidden */
|
|
1750
|
+
403: {
|
|
1751
|
+
content: {
|
|
1752
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1753
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1754
|
+
};
|
|
1755
|
+
};
|
|
1756
|
+
};
|
|
1757
|
+
};
|
|
1758
|
+
/**
|
|
1759
|
+
* Get Incoming Payments
|
|
1760
|
+
* @description Get incoming payments of a specific wallet by ID.
|
|
1761
|
+
*/
|
|
1762
|
+
GetIncomingPaymentsAsync: {
|
|
1763
|
+
parameters: {
|
|
1764
|
+
query?: {
|
|
1765
|
+
"api-version"?: string;
|
|
1766
|
+
};
|
|
1767
|
+
header?: {
|
|
1768
|
+
"x-api-version"?: string;
|
|
1769
|
+
};
|
|
1770
|
+
path: {
|
|
1771
|
+
walletId: string;
|
|
1772
|
+
};
|
|
1773
|
+
};
|
|
1774
|
+
responses: {
|
|
1775
|
+
/** @description OK */
|
|
1776
|
+
200: {
|
|
1777
|
+
content: {
|
|
1778
|
+
"application/json": components["schemas"]["PaymentDtoListEnvelope"];
|
|
1779
|
+
"application/xml": components["schemas"]["PaymentDtoListEnvelope"];
|
|
1780
|
+
};
|
|
1781
|
+
};
|
|
1782
|
+
/** @description Unauthorized */
|
|
1783
|
+
401: {
|
|
1784
|
+
content: {
|
|
1785
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1786
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1787
|
+
};
|
|
1788
|
+
};
|
|
1789
|
+
/** @description Forbidden */
|
|
1790
|
+
403: {
|
|
1791
|
+
content: {
|
|
1792
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1793
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1794
|
+
};
|
|
1795
|
+
};
|
|
1796
|
+
};
|
|
1797
|
+
};
|
|
1798
|
+
/**
|
|
1799
|
+
* Get Incoming Payments Count
|
|
1800
|
+
* @description Get incoming payments count of a specific wallet by ID.
|
|
1801
|
+
*/
|
|
1802
|
+
GetIncomingPaymentsCountAsync: {
|
|
1803
|
+
parameters: {
|
|
1804
|
+
query?: {
|
|
1805
|
+
"api-version"?: string;
|
|
1806
|
+
};
|
|
1807
|
+
header?: {
|
|
1808
|
+
"x-api-version"?: string;
|
|
1809
|
+
};
|
|
1810
|
+
path: {
|
|
1811
|
+
walletId: string;
|
|
1812
|
+
};
|
|
1813
|
+
};
|
|
1814
|
+
responses: {
|
|
1815
|
+
/** @description OK */
|
|
1816
|
+
200: {
|
|
1817
|
+
content: {
|
|
1818
|
+
"application/json": components["schemas"]["Int32Envelope"];
|
|
1819
|
+
"application/xml": components["schemas"]["Int32Envelope"];
|
|
1820
|
+
};
|
|
1821
|
+
};
|
|
1822
|
+
/** @description Unauthorized */
|
|
1823
|
+
401: {
|
|
1824
|
+
content: {
|
|
1825
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1826
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1827
|
+
};
|
|
1828
|
+
};
|
|
1829
|
+
/** @description Forbidden */
|
|
1830
|
+
403: {
|
|
1831
|
+
content: {
|
|
1832
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1833
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1834
|
+
};
|
|
1835
|
+
};
|
|
1836
|
+
};
|
|
1837
|
+
};
|
|
1838
|
+
/**
|
|
1839
|
+
* Get Outgoing Payments
|
|
1840
|
+
* @description Get outgoing payments of a specific wallet by ID.
|
|
1841
|
+
*/
|
|
1842
|
+
GetOutgoingPaymentsAsync: {
|
|
1843
|
+
parameters: {
|
|
1844
|
+
query?: {
|
|
1845
|
+
"api-version"?: string;
|
|
1846
|
+
};
|
|
1847
|
+
header?: {
|
|
1848
|
+
"x-api-version"?: string;
|
|
1849
|
+
};
|
|
1850
|
+
path: {
|
|
1851
|
+
walletId: string;
|
|
1852
|
+
};
|
|
1853
|
+
};
|
|
1854
|
+
responses: {
|
|
1855
|
+
/** @description OK */
|
|
1856
|
+
200: {
|
|
1857
|
+
content: {
|
|
1858
|
+
"application/json": components["schemas"]["PaymentDtoListEnvelope"];
|
|
1859
|
+
"application/xml": components["schemas"]["PaymentDtoListEnvelope"];
|
|
1860
|
+
};
|
|
1861
|
+
};
|
|
1862
|
+
/** @description Unauthorized */
|
|
1863
|
+
401: {
|
|
1864
|
+
content: {
|
|
1865
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1866
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1867
|
+
};
|
|
1868
|
+
};
|
|
1869
|
+
/** @description Forbidden */
|
|
1870
|
+
403: {
|
|
1871
|
+
content: {
|
|
1872
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1873
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1874
|
+
};
|
|
1875
|
+
};
|
|
1876
|
+
};
|
|
1877
|
+
};
|
|
1878
|
+
/**
|
|
1879
|
+
* Get Outgoing Payments Count
|
|
1880
|
+
* @description Get outgoing payments count of a specific wallet by ID.
|
|
1881
|
+
*/
|
|
1882
|
+
GetOutgoingPaymentsCountAsync: {
|
|
1883
|
+
parameters: {
|
|
1884
|
+
query?: {
|
|
1885
|
+
"api-version"?: string;
|
|
1886
|
+
};
|
|
1887
|
+
header?: {
|
|
1888
|
+
"x-api-version"?: string;
|
|
1889
|
+
};
|
|
1890
|
+
path: {
|
|
1891
|
+
walletId: string;
|
|
1892
|
+
};
|
|
1893
|
+
};
|
|
1894
|
+
responses: {
|
|
1895
|
+
/** @description OK */
|
|
1896
|
+
200: {
|
|
1897
|
+
content: {
|
|
1898
|
+
"application/json": components["schemas"]["Int32Envelope"];
|
|
1899
|
+
"application/xml": components["schemas"]["Int32Envelope"];
|
|
1703
1900
|
};
|
|
1704
1901
|
};
|
|
1705
1902
|
/** @description Unauthorized */
|