adyen-apimatic-sdk 1.0.0 → 1.0.1
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.
- checksums.yaml +4 -4
- data/README.md +59 -59
- data/lib/adyen_ap_is/apis/account_company_level_api.rb +6 -6
- data/lib/adyen_ap_is/apis/account_merchant_level_api.rb +5 -5
- data/lib/adyen_ap_is/apis/account_store_level_api.rb +19 -19
- data/lib/adyen_ap_is/apis/allowed_origins_company_level_api.rb +11 -11
- data/lib/adyen_ap_is/apis/allowed_origins_merchant_level_api.rb +11 -11
- data/lib/adyen_ap_is/apis/android_files_company_level_api.rb +15 -15
- data/lib/adyen_ap_is/apis/api_credentials_company_level_api.rb +10 -10
- data/lib/adyen_ap_is/apis/api_credentials_merchant_level_api.rb +10 -10
- data/lib/adyen_ap_is/apis/api_key_company_level_api.rb +2 -2
- data/lib/adyen_ap_is/apis/api_key_merchant_level_api.rb +2 -2
- data/lib/adyen_ap_is/apis/base_api.rb +1 -1
- data/lib/adyen_ap_is/apis/client_key_company_level_api.rb +2 -2
- data/lib/adyen_ap_is/apis/client_key_merchant_level_api.rb +2 -2
- data/lib/adyen_ap_is/apis/donations_api.rb +4 -4
- data/lib/adyen_ap_is/apis/modifications_api.rb +17 -17
- data/lib/adyen_ap_is/apis/my_api_credential_api.rb +6 -6
- data/lib/adyen_ap_is/apis/orders_api.rb +6 -6
- data/lib/adyen_ap_is/apis/payment_links_api.rb +5 -5
- data/lib/adyen_ap_is/apis/payment_methods_merchant_level_api.rb +17 -17
- data/lib/adyen_ap_is/apis/payments_api.rb +12 -12
- data/lib/adyen_ap_is/apis/payout_settings_merchant_level_api.rb +10 -10
- data/lib/adyen_ap_is/apis/recurring_api.rb +9 -9
- data/lib/adyen_ap_is/apis/split_configuration_merchant_level_api.rb +25 -25
- data/lib/adyen_ap_is/apis/terminal_actions_company_level_api.rb +7 -7
- data/lib/adyen_ap_is/apis/terminal_actions_terminal_level_api.rb +1 -1
- data/lib/adyen_ap_is/apis/terminal_orders_company_level_api.rb +28 -28
- data/lib/adyen_ap_is/apis/terminal_orders_merchant_level_api.rb +28 -28
- data/lib/adyen_ap_is/apis/terminal_settings_company_level_api.rb +8 -8
- data/lib/adyen_ap_is/apis/terminal_settings_merchant_level_api.rb +8 -8
- data/lib/adyen_ap_is/apis/terminal_settings_store_level_api.rb +20 -20
- data/lib/adyen_ap_is/apis/terminal_settings_terminal_level_api.rb +6 -6
- data/lib/adyen_ap_is/apis/terminals_terminal_level_api.rb +10 -10
- data/lib/adyen_ap_is/apis/users_company_level_api.rb +11 -11
- data/lib/adyen_ap_is/apis/users_merchant_level_api.rb +11 -11
- data/lib/adyen_ap_is/apis/utility_api.rb +8 -8
- data/lib/adyen_ap_is/apis/webhooks_company_level_api.rb +17 -17
- data/lib/adyen_ap_is/apis/webhooks_merchant_level_api.rb +17 -17
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9288c6268bf991b97f52111747d95ccf4742ae008cd49e90f2fa65666e6d4601
|
|
4
|
+
data.tar.gz: 0201b46047343778d4a3406c25623a171a75889895e584d6cc075b485d09c77c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1a02d93404caecd1a45095a19221bb3807bb100619f71c29ba7d5a46e599b5009cd10f38ef8537cd4a4125fbd90431716401d64d8ef85a40669e842fec567b0e
|
|
7
|
+
data.tar.gz: e9527f2e3755566b8b1f1a42147901498449bf17fba75d4b14720e36aaca0533477ab4816137d944f0d68a6606a6c1eb83bcdef859949458fd3b7ca667b8394c
|
data/README.md
CHANGED
|
@@ -98,16 +98,16 @@ Have a look at the [release notes](https://docs.adyen.com/release-notes/manageme
|
|
|
98
98
|
Install the gem from the command line:
|
|
99
99
|
|
|
100
100
|
```bash
|
|
101
|
-
gem install adyen-apimatic-sdk -v 1.0.
|
|
101
|
+
gem install adyen-apimatic-sdk -v 1.0.1
|
|
102
102
|
```
|
|
103
103
|
|
|
104
104
|
Or add the gem to your Gemfile and run `bundle`:
|
|
105
105
|
|
|
106
106
|
```ruby
|
|
107
|
-
gem 'adyen-apimatic-sdk', '1.0.
|
|
107
|
+
gem 'adyen-apimatic-sdk', '1.0.1'
|
|
108
108
|
```
|
|
109
109
|
|
|
110
|
-
For additional gem details, see the [RubyGems page for the adyen-apimatic-sdk gem](https://rubygems.org/gems/adyen-apimatic-sdk/versions/1.0.
|
|
110
|
+
For additional gem details, see the [RubyGems page for the adyen-apimatic-sdk gem](https://rubygems.org/gems/adyen-apimatic-sdk/versions/1.0.1).
|
|
111
111
|
|
|
112
112
|
## IRB Console Usage
|
|
113
113
|
|
|
@@ -146,13 +146,13 @@ ruby bin/console
|
|
|
146
146
|
|
|
147
147
|
## Initialize the API Client
|
|
148
148
|
|
|
149
|
-
**_Note:_** Documentation for the client can be found [here.](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
149
|
+
**_Note:_** Documentation for the client can be found [here.](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/client.md)
|
|
150
150
|
|
|
151
151
|
The following parameters are configurable for the API Client:
|
|
152
152
|
|
|
153
153
|
| Parameter | Type | Description |
|
|
154
154
|
| --- | --- | --- |
|
|
155
|
-
| environment | [`Environment`](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
155
|
+
| environment | [`Environment`](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/README.md#environments) | The API environment. <br> **Default: `Environment.PRODUCTION`** |
|
|
156
156
|
| connection | `Faraday::Connection` | The Faraday connection object passed by the SDK user for making requests |
|
|
157
157
|
| adapter | `Faraday::Adapter` | The Faraday adapter object passed by the SDK user for performing http requests |
|
|
158
158
|
| timeout | `Float` | The value to use for connection timeout. <br> **Default: 30** |
|
|
@@ -162,10 +162,10 @@ The following parameters are configurable for the API Client:
|
|
|
162
162
|
| retry_statuses | `Array` | A list of HTTP statuses to retry. <br> **Default: [408, 413, 429, 500, 502, 503, 504, 521, 522, 524]** |
|
|
163
163
|
| retry_methods | `Array` | A list of HTTP methods to retry. <br> **Default: %i[get put]** |
|
|
164
164
|
| http_callback | `HttpCallBack` | The Http CallBack allows defining callables for pre and post API calls. |
|
|
165
|
-
| proxy_settings | [`ProxySettings`](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
166
|
-
| logging_configuration | [`LoggingConfiguration`](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
167
|
-
| api_key_auth_credentials | [`ApiKeyAuthCredentials`](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
168
|
-
| basic_auth_credentials | [`BasicAuthCredentials`](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
165
|
+
| proxy_settings | [`ProxySettings`](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/proxy-settings.md) | Optional proxy configuration to route HTTP requests through a proxy server. |
|
|
166
|
+
| logging_configuration | [`LoggingConfiguration`](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/logging-configuration.md) | The SDK logging configuration for API calls |
|
|
167
|
+
| api_key_auth_credentials | [`ApiKeyAuthCredentials`](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/auth/custom-header-signature.md) | The credential object for Custom Header Signature |
|
|
168
|
+
| basic_auth_credentials | [`BasicAuthCredentials`](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/auth/basic-authentication.md) | The credential object for Basic Authentication |
|
|
169
169
|
|
|
170
170
|
The API client can be initialized as follows:
|
|
171
171
|
|
|
@@ -206,7 +206,7 @@ include AdyenApIs
|
|
|
206
206
|
client = Client.from_env
|
|
207
207
|
```
|
|
208
208
|
|
|
209
|
-
See the [`Environment-Based Client Initialization`](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
209
|
+
See the [`Environment-Based Client Initialization`](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/environment-based-client-initialization.md) section for details.
|
|
210
210
|
|
|
211
211
|
## Environments
|
|
212
212
|
|
|
@@ -222,67 +222,67 @@ The SDK can be configured to use a different environment for making API calls. A
|
|
|
222
222
|
|
|
223
223
|
This API uses the following authentication schemes.
|
|
224
224
|
|
|
225
|
-
* [`ApiKeyAuth (Custom Header Signature)`](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
226
|
-
* [`BasicAuth (Basic Authentication)`](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
225
|
+
* [`ApiKeyAuth (Custom Header Signature)`](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/auth/custom-header-signature.md)
|
|
226
|
+
* [`BasicAuth (Basic Authentication)`](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/auth/basic-authentication.md)
|
|
227
227
|
|
|
228
228
|
## List of APIs
|
|
229
229
|
|
|
230
|
-
* [Paymentlinks](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
231
|
-
* [Account-Companylevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
232
|
-
* [Account-Merchantlevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
233
|
-
* [Account-Storelevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
234
|
-
* [Payoutsettings-Merchantlevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
235
|
-
* [Users-Companylevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
236
|
-
* [Users-Merchantlevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
237
|
-
* [My AP Icredential](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
238
|
-
* [AP Icredentials-Companylevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
239
|
-
* [AP Icredentials-Merchantlevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
240
|
-
* [AP Ikey-Companylevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
241
|
-
* [AP Ikey-Merchantlevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
242
|
-
* [Clientkey-Companylevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
243
|
-
* [Clientkey-Merchantlevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
244
|
-
* [Allowedorigins-Companylevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
245
|
-
* [Allowedorigins-Merchantlevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
246
|
-
* [Webhooks-Companylevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
247
|
-
* [Webhooks-Merchantlevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
248
|
-
* [Paymentmethods-Merchantlevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
249
|
-
* [Terminals-Terminallevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
250
|
-
* [Terminalactions-Companylevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
251
|
-
* [Terminalactions-Terminallevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
252
|
-
* [Terminalorders-Companylevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
253
|
-
* [Terminalorders-Merchantlevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
254
|
-
* [Terminalsettings-Companylevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
255
|
-
* [Terminalsettings-Merchantlevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
256
|
-
* [Terminalsettings-Storelevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
257
|
-
* [Terminalsettings-Terminallevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
258
|
-
* [Androidfiles-Companylevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
259
|
-
* [Splitconfiguration-Merchantlevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
260
|
-
* [Payments](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
261
|
-
* [Donations](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
262
|
-
* [Modifications](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
263
|
-
* [Recurring](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
264
|
-
* [Orders](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
265
|
-
* [Utility](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
230
|
+
* [Paymentlinks](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/controllers/paymentlinks.md)
|
|
231
|
+
* [Account-Companylevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/controllers/account-companylevel.md)
|
|
232
|
+
* [Account-Merchantlevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/controllers/account-merchantlevel.md)
|
|
233
|
+
* [Account-Storelevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/controllers/account-storelevel.md)
|
|
234
|
+
* [Payoutsettings-Merchantlevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/controllers/payoutsettings-merchantlevel.md)
|
|
235
|
+
* [Users-Companylevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/controllers/users-companylevel.md)
|
|
236
|
+
* [Users-Merchantlevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/controllers/users-merchantlevel.md)
|
|
237
|
+
* [My AP Icredential](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/controllers/my-ap-icredential.md)
|
|
238
|
+
* [AP Icredentials-Companylevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/controllers/ap-icredentials-companylevel.md)
|
|
239
|
+
* [AP Icredentials-Merchantlevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/controllers/ap-icredentials-merchantlevel.md)
|
|
240
|
+
* [AP Ikey-Companylevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/controllers/ap-ikey-companylevel.md)
|
|
241
|
+
* [AP Ikey-Merchantlevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/controllers/ap-ikey-merchantlevel.md)
|
|
242
|
+
* [Clientkey-Companylevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/controllers/clientkey-companylevel.md)
|
|
243
|
+
* [Clientkey-Merchantlevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/controllers/clientkey-merchantlevel.md)
|
|
244
|
+
* [Allowedorigins-Companylevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/controllers/allowedorigins-companylevel.md)
|
|
245
|
+
* [Allowedorigins-Merchantlevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/controllers/allowedorigins-merchantlevel.md)
|
|
246
|
+
* [Webhooks-Companylevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/controllers/webhooks-companylevel.md)
|
|
247
|
+
* [Webhooks-Merchantlevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/controllers/webhooks-merchantlevel.md)
|
|
248
|
+
* [Paymentmethods-Merchantlevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/controllers/paymentmethods-merchantlevel.md)
|
|
249
|
+
* [Terminals-Terminallevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/controllers/terminals-terminallevel.md)
|
|
250
|
+
* [Terminalactions-Companylevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/controllers/terminalactions-companylevel.md)
|
|
251
|
+
* [Terminalactions-Terminallevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/controllers/terminalactions-terminallevel.md)
|
|
252
|
+
* [Terminalorders-Companylevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/controllers/terminalorders-companylevel.md)
|
|
253
|
+
* [Terminalorders-Merchantlevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/controllers/terminalorders-merchantlevel.md)
|
|
254
|
+
* [Terminalsettings-Companylevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/controllers/terminalsettings-companylevel.md)
|
|
255
|
+
* [Terminalsettings-Merchantlevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/controllers/terminalsettings-merchantlevel.md)
|
|
256
|
+
* [Terminalsettings-Storelevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/controllers/terminalsettings-storelevel.md)
|
|
257
|
+
* [Terminalsettings-Terminallevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/controllers/terminalsettings-terminallevel.md)
|
|
258
|
+
* [Androidfiles-Companylevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/controllers/androidfiles-companylevel.md)
|
|
259
|
+
* [Splitconfiguration-Merchantlevel](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/controllers/splitconfiguration-merchantlevel.md)
|
|
260
|
+
* [Payments](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/controllers/payments.md)
|
|
261
|
+
* [Donations](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/controllers/donations.md)
|
|
262
|
+
* [Modifications](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/controllers/modifications.md)
|
|
263
|
+
* [Recurring](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/controllers/recurring.md)
|
|
264
|
+
* [Orders](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/controllers/orders.md)
|
|
265
|
+
* [Utility](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/controllers/utility.md)
|
|
266
266
|
|
|
267
267
|
## SDK Infrastructure
|
|
268
268
|
|
|
269
269
|
### Configuration
|
|
270
270
|
|
|
271
|
-
* [ProxySettings](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
272
|
-
* [Environment-Based Client Initialization](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
273
|
-
* [AbstractLogger](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
274
|
-
* [LoggingConfiguration](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
275
|
-
* [RequestLoggingConfiguration](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
276
|
-
* [ResponseLoggingConfiguration](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
271
|
+
* [ProxySettings](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/proxy-settings.md)
|
|
272
|
+
* [Environment-Based Client Initialization](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/environment-based-client-initialization.md)
|
|
273
|
+
* [AbstractLogger](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/abstract-logger.md)
|
|
274
|
+
* [LoggingConfiguration](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/logging-configuration.md)
|
|
275
|
+
* [RequestLoggingConfiguration](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/request-logging-configuration.md)
|
|
276
|
+
* [ResponseLoggingConfiguration](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/response-logging-configuration.md)
|
|
277
277
|
|
|
278
278
|
### HTTP
|
|
279
279
|
|
|
280
|
-
* [HttpResponse](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
281
|
-
* [HttpRequest](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
280
|
+
* [HttpResponse](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/http-response.md)
|
|
281
|
+
* [HttpRequest](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/http-request.md)
|
|
282
282
|
|
|
283
283
|
### Utilities
|
|
284
284
|
|
|
285
|
-
* [ApiResponse](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
286
|
-
* [ApiHelper](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
287
|
-
* [DateTimeHelper](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.
|
|
285
|
+
* [ApiResponse](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/api-response.md)
|
|
286
|
+
* [ApiHelper](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/api-helper.md)
|
|
287
|
+
* [DateTimeHelper](https://www.github.com/sdks-io/adyen-apimatic-ruby-sdk/tree/1.0.1/doc/date-time-helper.md)
|
|
288
288
|
|
|
@@ -17,8 +17,8 @@ module AdyenApIs
|
|
|
17
17
|
# @param [Integer] page_size Optional parameter: The number of items to have
|
|
18
18
|
# on a page, maximum 100. The default is 10 items on a page.
|
|
19
19
|
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
20
|
-
def
|
|
21
|
-
|
|
20
|
+
def list_companies(page_number: nil,
|
|
21
|
+
page_size: nil)
|
|
22
22
|
@api_call
|
|
23
23
|
.request(new_request_builder(HttpMethodEnum::GET,
|
|
24
24
|
'/companies',
|
|
@@ -59,7 +59,7 @@ module AdyenApIs
|
|
|
59
59
|
# @param [String] company_id Required parameter: The unique identifier of
|
|
60
60
|
# the company account.
|
|
61
61
|
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
62
|
-
def
|
|
62
|
+
def get_company(company_id)
|
|
63
63
|
@api_call
|
|
64
64
|
.request(new_request_builder(HttpMethodEnum::GET,
|
|
65
65
|
'/companies/{companyId}',
|
|
@@ -107,9 +107,9 @@ module AdyenApIs
|
|
|
107
107
|
# @param [Integer] page_size Optional parameter: The number of items to have
|
|
108
108
|
# on a page, maximum 100. The default is 10 items on a page.
|
|
109
109
|
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
110
|
-
def
|
|
111
|
-
|
|
112
|
-
|
|
110
|
+
def list_company_merchants(company_id,
|
|
111
|
+
page_number: nil,
|
|
112
|
+
page_size: nil)
|
|
113
113
|
@api_call
|
|
114
114
|
.request(new_request_builder(HttpMethodEnum::GET,
|
|
115
115
|
'/companies/{companyId}/merchants',
|
|
@@ -17,8 +17,8 @@ module AdyenApIs
|
|
|
17
17
|
# @param [Integer] page_size Optional parameter: The number of items to have
|
|
18
18
|
# on a page, maximum 100. The default is 10 items on a page.
|
|
19
19
|
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
20
|
-
def
|
|
21
|
-
|
|
20
|
+
def list_merchants(page_number: nil,
|
|
21
|
+
page_size: nil)
|
|
22
22
|
@api_call
|
|
23
23
|
.request(new_request_builder(HttpMethodEnum::GET,
|
|
24
24
|
'/merchants',
|
|
@@ -61,7 +61,7 @@ module AdyenApIs
|
|
|
61
61
|
# @param [CreateMerchantRequest] body Optional parameter: TODO: type
|
|
62
62
|
# description here
|
|
63
63
|
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
64
|
-
def
|
|
64
|
+
def create_merchant(body: nil)
|
|
65
65
|
@api_call
|
|
66
66
|
.request(new_request_builder(HttpMethodEnum::POST,
|
|
67
67
|
'/merchants',
|
|
@@ -103,7 +103,7 @@ module AdyenApIs
|
|
|
103
103
|
# @param [String] merchant_id Required parameter: The unique identifier of
|
|
104
104
|
# the merchant account.
|
|
105
105
|
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
106
|
-
def
|
|
106
|
+
def get_merchant(merchant_id)
|
|
107
107
|
@api_call
|
|
108
108
|
.request(new_request_builder(HttpMethodEnum::GET,
|
|
109
109
|
'/merchants/{merchantId}',
|
|
@@ -150,7 +150,7 @@ module AdyenApIs
|
|
|
150
150
|
# @param [String] merchant_id Required parameter: The unique identifier of
|
|
151
151
|
# the merchant account.
|
|
152
152
|
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
153
|
-
def
|
|
153
|
+
def activate_merchant(merchant_id)
|
|
154
154
|
@api_call
|
|
155
155
|
.request(new_request_builder(HttpMethodEnum::POST,
|
|
156
156
|
'/merchants/{merchantId}/activate',
|
|
@@ -25,10 +25,10 @@ module AdyenApIs
|
|
|
25
25
|
# @param [String] reference Optional parameter: The reference of the
|
|
26
26
|
# store.
|
|
27
27
|
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
28
|
-
def
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
28
|
+
def list_merchant_stores(merchant_id,
|
|
29
|
+
page_number: nil,
|
|
30
|
+
page_size: nil,
|
|
31
|
+
reference: nil)
|
|
32
32
|
@api_call
|
|
33
33
|
.request(new_request_builder(HttpMethodEnum::GET,
|
|
34
34
|
'/merchants/{merchantId}/stores',
|
|
@@ -77,8 +77,8 @@ module AdyenApIs
|
|
|
77
77
|
# @param [StoreCreationRequest] body Optional parameter: TODO: type
|
|
78
78
|
# description here
|
|
79
79
|
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
80
|
-
def
|
|
81
|
-
|
|
80
|
+
def create_merchant_store(merchant_id,
|
|
81
|
+
body: nil)
|
|
82
82
|
@api_call
|
|
83
83
|
.request(new_request_builder(HttpMethodEnum::POST,
|
|
84
84
|
'/merchants/{merchantId}/stores',
|
|
@@ -128,8 +128,8 @@ module AdyenApIs
|
|
|
128
128
|
# @param [String] store_id Required parameter: The unique identifier of the
|
|
129
129
|
# store.
|
|
130
130
|
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
131
|
-
def
|
|
132
|
-
|
|
131
|
+
def get_merchant_store(merchant_id,
|
|
132
|
+
store_id)
|
|
133
133
|
@api_call
|
|
134
134
|
.request(new_request_builder(HttpMethodEnum::GET,
|
|
135
135
|
'/merchants/{merchantId}/stores/{storeId}',
|
|
@@ -181,9 +181,9 @@ module AdyenApIs
|
|
|
181
181
|
# @param [UpdateStoreRequest] body Optional parameter: TODO: type
|
|
182
182
|
# description here
|
|
183
183
|
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
184
|
-
def
|
|
185
|
-
|
|
186
|
-
|
|
184
|
+
def update_merchant_store(merchant_id,
|
|
185
|
+
store_id,
|
|
186
|
+
body: nil)
|
|
187
187
|
@api_call
|
|
188
188
|
.request(new_request_builder(HttpMethodEnum::PATCH,
|
|
189
189
|
'/merchants/{merchantId}/stores/{storeId}',
|
|
@@ -241,10 +241,10 @@ module AdyenApIs
|
|
|
241
241
|
# @param [String] merchant_id Optional parameter: The unique identifier of
|
|
242
242
|
# the merchant account.
|
|
243
243
|
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
244
|
-
def
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
244
|
+
def list_stores(page_number: nil,
|
|
245
|
+
page_size: nil,
|
|
246
|
+
reference: nil,
|
|
247
|
+
merchant_id: nil)
|
|
248
248
|
@api_call
|
|
249
249
|
.request(new_request_builder(HttpMethodEnum::GET,
|
|
250
250
|
'/stores',
|
|
@@ -289,7 +289,7 @@ module AdyenApIs
|
|
|
289
289
|
# @param [StoreCreationWithMerchantCodeRequest] body Optional parameter:
|
|
290
290
|
# TODO: type description here
|
|
291
291
|
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
292
|
-
def
|
|
292
|
+
def create_store(body: nil)
|
|
293
293
|
@api_call
|
|
294
294
|
.request(new_request_builder(HttpMethodEnum::POST,
|
|
295
295
|
'/stores',
|
|
@@ -334,7 +334,7 @@ module AdyenApIs
|
|
|
334
334
|
# @param [String] store_id Required parameter: The unique identifier of the
|
|
335
335
|
# store.
|
|
336
336
|
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
337
|
-
def
|
|
337
|
+
def get_store(store_id)
|
|
338
338
|
@api_call
|
|
339
339
|
.request(new_request_builder(HttpMethodEnum::GET,
|
|
340
340
|
'/stores/{storeId}',
|
|
@@ -381,8 +381,8 @@ module AdyenApIs
|
|
|
381
381
|
# @param [UpdateStoreRequest] body Optional parameter: TODO: type
|
|
382
382
|
# description here
|
|
383
383
|
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
384
|
-
def
|
|
385
|
-
|
|
384
|
+
def update_store(store_id,
|
|
385
|
+
body: nil)
|
|
386
386
|
@api_call
|
|
387
387
|
.request(new_request_builder(HttpMethodEnum::PATCH,
|
|
388
388
|
'/stores/{storeId}',
|
|
@@ -18,8 +18,8 @@ module AdyenApIs
|
|
|
18
18
|
# @param [String] api_credential_id Required parameter: Unique identifier of
|
|
19
19
|
# the API credential.
|
|
20
20
|
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
21
|
-
def
|
|
22
|
-
|
|
21
|
+
def list_company_api_credential_origins(company_id,
|
|
22
|
+
api_credential_id)
|
|
23
23
|
@api_call
|
|
24
24
|
.request(new_request_builder(HttpMethodEnum::GET,
|
|
25
25
|
'/companies/{companyId}/apiCredentials/{apiCredentialId}/allowedOrigins',
|
|
@@ -69,9 +69,9 @@ module AdyenApIs
|
|
|
69
69
|
# @param [AllowedOrigin] body Optional parameter: TODO: type description
|
|
70
70
|
# here
|
|
71
71
|
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
72
|
-
def
|
|
73
|
-
|
|
74
|
-
|
|
72
|
+
def create_company_api_credential_origin(company_id,
|
|
73
|
+
api_credential_id,
|
|
74
|
+
body: nil)
|
|
75
75
|
@api_call
|
|
76
76
|
.request(new_request_builder(HttpMethodEnum::POST,
|
|
77
77
|
'/companies/{companyId}/apiCredentials/{apiCredentialId}/allowedOrigins',
|
|
@@ -126,9 +126,9 @@ module AdyenApIs
|
|
|
126
126
|
# @param [String] origin_id Required parameter: Unique identifier of the
|
|
127
127
|
# allowed origin.
|
|
128
128
|
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
129
|
-
def
|
|
130
|
-
|
|
131
|
-
|
|
129
|
+
def delete_company_api_credential_origin(company_id,
|
|
130
|
+
api_credential_id,
|
|
131
|
+
origin_id)
|
|
132
132
|
@api_call
|
|
133
133
|
.request(new_request_builder(HttpMethodEnum::DELETE,
|
|
134
134
|
'/companies/{companyId}/apiCredentials/{apiCredentialId}/allowedOrigins/{originId}',
|
|
@@ -179,9 +179,9 @@ module AdyenApIs
|
|
|
179
179
|
# @param [String] origin_id Required parameter: Unique identifier of the
|
|
180
180
|
# allowed origin.
|
|
181
181
|
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
182
|
-
def
|
|
183
|
-
|
|
184
|
-
|
|
182
|
+
def get_company_api_credential_origin(company_id,
|
|
183
|
+
api_credential_id,
|
|
184
|
+
origin_id)
|
|
185
185
|
@api_call
|
|
186
186
|
.request(new_request_builder(HttpMethodEnum::GET,
|
|
187
187
|
'/companies/{companyId}/apiCredentials/{apiCredentialId}/allowedOrigins/{originId}',
|
|
@@ -18,8 +18,8 @@ module AdyenApIs
|
|
|
18
18
|
# @param [String] api_credential_id Required parameter: Unique identifier of
|
|
19
19
|
# the API credential.
|
|
20
20
|
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
21
|
-
def
|
|
22
|
-
|
|
21
|
+
def list_merchant_api_credential_origins(merchant_id,
|
|
22
|
+
api_credential_id)
|
|
23
23
|
@api_call
|
|
24
24
|
.request(new_request_builder(HttpMethodEnum::GET,
|
|
25
25
|
'/merchants/{merchantId}/apiCredentials/{apiCredentialId}/allowedOrigins',
|
|
@@ -69,9 +69,9 @@ module AdyenApIs
|
|
|
69
69
|
# @param [AllowedOrigin] body Optional parameter: TODO: type description
|
|
70
70
|
# here
|
|
71
71
|
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
72
|
-
def
|
|
73
|
-
|
|
74
|
-
|
|
72
|
+
def create_merchant_api_credential_origin(merchant_id,
|
|
73
|
+
api_credential_id,
|
|
74
|
+
body: nil)
|
|
75
75
|
@api_call
|
|
76
76
|
.request(new_request_builder(HttpMethodEnum::POST,
|
|
77
77
|
'/merchants/{merchantId}/apiCredentials/{apiCredentialId}/allowedOrigins',
|
|
@@ -126,9 +126,9 @@ module AdyenApIs
|
|
|
126
126
|
# @param [String] origin_id Required parameter: Unique identifier of the
|
|
127
127
|
# allowed origin.
|
|
128
128
|
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
129
|
-
def
|
|
130
|
-
|
|
131
|
-
|
|
129
|
+
def delete_merchant_api_credential_origin(merchant_id,
|
|
130
|
+
api_credential_id,
|
|
131
|
+
origin_id)
|
|
132
132
|
@api_call
|
|
133
133
|
.request(new_request_builder(HttpMethodEnum::DELETE,
|
|
134
134
|
'/merchants/{merchantId}/apiCredentials/{apiCredentialId}/allowedOrigins/{originId}',
|
|
@@ -179,9 +179,9 @@ module AdyenApIs
|
|
|
179
179
|
# @param [String] origin_id Required parameter: Unique identifier of the
|
|
180
180
|
# allowed origin.
|
|
181
181
|
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
182
|
-
def
|
|
183
|
-
|
|
184
|
-
|
|
182
|
+
def get_merchant_api_credential_origin(merchant_id,
|
|
183
|
+
api_credential_id,
|
|
184
|
+
origin_id)
|
|
185
185
|
@api_call
|
|
186
186
|
.request(new_request_builder(HttpMethodEnum::GET,
|
|
187
187
|
'/merchants/{merchantId}/apiCredentials/{apiCredentialId}/allowedOrigins/{originId}',
|
|
@@ -33,11 +33,11 @@ module AdyenApIs
|
|
|
33
33
|
# @param [Integer] version_code Optional parameter: The version number of
|
|
34
34
|
# the app.
|
|
35
35
|
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
36
|
-
def
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
36
|
+
def list_android_apps(company_id,
|
|
37
|
+
page_number: nil,
|
|
38
|
+
page_size: nil,
|
|
39
|
+
package_name: nil,
|
|
40
|
+
version_code: nil)
|
|
41
41
|
@api_call
|
|
42
42
|
.request(new_request_builder(HttpMethodEnum::GET,
|
|
43
43
|
'/companies/{companyId}/androidApps',
|
|
@@ -90,7 +90,7 @@ module AdyenApIs
|
|
|
90
90
|
# @param [String] company_id Required parameter: The unique identifier of
|
|
91
91
|
# the company account.
|
|
92
92
|
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
93
|
-
def
|
|
93
|
+
def create_android_app(company_id)
|
|
94
94
|
@api_call
|
|
95
95
|
.request(new_request_builder(HttpMethodEnum::POST,
|
|
96
96
|
'/companies/{companyId}/androidApps',
|
|
@@ -140,8 +140,8 @@ module AdyenApIs
|
|
|
140
140
|
# the company account.
|
|
141
141
|
# @param [String] id Required parameter: The unique identifier of the app.
|
|
142
142
|
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
143
|
-
def
|
|
144
|
-
|
|
143
|
+
def get_android_app(company_id,
|
|
144
|
+
id)
|
|
145
145
|
@api_call
|
|
146
146
|
.request(new_request_builder(HttpMethodEnum::GET,
|
|
147
147
|
'/companies/{companyId}/androidApps/{id}',
|
|
@@ -193,8 +193,8 @@ module AdyenApIs
|
|
|
193
193
|
# the company account.
|
|
194
194
|
# @param [String] id Required parameter: The unique identifier of the app.
|
|
195
195
|
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
196
|
-
def
|
|
197
|
-
|
|
196
|
+
def update_android_app(company_id,
|
|
197
|
+
id)
|
|
198
198
|
@api_call
|
|
199
199
|
.request(new_request_builder(HttpMethodEnum::PATCH,
|
|
200
200
|
'/companies/{companyId}/androidApps/{id}',
|
|
@@ -256,10 +256,10 @@ module AdyenApIs
|
|
|
256
256
|
# @param [String] certificate_name Optional parameter: The name of the
|
|
257
257
|
# certificate.
|
|
258
258
|
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
259
|
-
def
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
259
|
+
def list_android_certificates(company_id,
|
|
260
|
+
page_number: nil,
|
|
261
|
+
page_size: nil,
|
|
262
|
+
certificate_name: nil)
|
|
263
263
|
@api_call
|
|
264
264
|
.request(new_request_builder(HttpMethodEnum::GET,
|
|
265
265
|
'/companies/{companyId}/androidCertificates',
|
|
@@ -302,7 +302,7 @@ module AdyenApIs
|
|
|
302
302
|
# @param [String] company_id Required parameter: The unique identifier of
|
|
303
303
|
# the company account.
|
|
304
304
|
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
305
|
-
def
|
|
305
|
+
def upload_android_certificate(company_id)
|
|
306
306
|
@api_call
|
|
307
307
|
.request(new_request_builder(HttpMethodEnum::POST,
|
|
308
308
|
'/companies/{companyId}/androidCertificates',
|
|
@@ -21,9 +21,9 @@ module AdyenApIs
|
|
|
21
21
|
# @param [Integer] page_size Optional parameter: The number of items to have
|
|
22
22
|
# on a page, maximum 100. The default is 10 items on a page.
|
|
23
23
|
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
24
|
-
def
|
|
25
|
-
|
|
26
|
-
|
|
24
|
+
def list_company_api_credentials(company_id,
|
|
25
|
+
page_number: nil,
|
|
26
|
+
page_size: nil)
|
|
27
27
|
@api_call
|
|
28
28
|
.request(new_request_builder(HttpMethodEnum::GET,
|
|
29
29
|
'/companies/{companyId}/apiCredentials',
|
|
@@ -87,8 +87,8 @@ module AdyenApIs
|
|
|
87
87
|
# @param [CreateCompanyApiCredentialRequest] body Optional parameter: TODO:
|
|
88
88
|
# type description here
|
|
89
89
|
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
90
|
-
def
|
|
91
|
-
|
|
90
|
+
def create_company_api_credential(company_id,
|
|
91
|
+
body: nil)
|
|
92
92
|
@api_call
|
|
93
93
|
.request(new_request_builder(HttpMethodEnum::POST,
|
|
94
94
|
'/companies/{companyId}/apiCredentials',
|
|
@@ -136,8 +136,8 @@ module AdyenApIs
|
|
|
136
136
|
# @param [String] api_credential_id Required parameter: Unique identifier of
|
|
137
137
|
# the API credential.
|
|
138
138
|
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
139
|
-
def
|
|
140
|
-
|
|
139
|
+
def get_company_api_credential(company_id,
|
|
140
|
+
api_credential_id)
|
|
141
141
|
@api_call
|
|
142
142
|
.request(new_request_builder(HttpMethodEnum::GET,
|
|
143
143
|
'/companies/{companyId}/apiCredentials/{apiCredentialId}',
|
|
@@ -188,9 +188,9 @@ module AdyenApIs
|
|
|
188
188
|
# @param [UpdateCompanyApiCredentialRequest] body Optional parameter: TODO:
|
|
189
189
|
# type description here
|
|
190
190
|
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
191
|
-
def
|
|
192
|
-
|
|
193
|
-
|
|
191
|
+
def update_company_api_credential(company_id,
|
|
192
|
+
api_credential_id,
|
|
193
|
+
body: nil)
|
|
194
194
|
@api_call
|
|
195
195
|
.request(new_request_builder(HttpMethodEnum::PATCH,
|
|
196
196
|
'/companies/{companyId}/apiCredentials/{apiCredentialId}',
|