@@ -4,202 +4,11 @@ All URIs are relative to https://prod.api.appcluster01.ca-central-1.ezmax.com/re
44
55| Method | HTTP request | Description |
66| ------------- | ------------- | ------------- |
7- | [ ** creditcardmerchantCreateObjectV1()** ] ( ObjectCreditcardmerchantApi.md#creditcardmerchantCreateObjectV1 ) | ** POST** /1/object/creditcardmerchant | Create a new Creditcardmerchant |
8- | [ ** creditcardmerchantDeleteObjectV1()** ] ( ObjectCreditcardmerchantApi.md#creditcardmerchantDeleteObjectV1 ) | ** DELETE** /1/object/creditcardmerchant/{pkiCreditcardmerchantID} | Delete an existing Creditcardmerchant |
9- | [ ** creditcardmerchantEditObjectV1()** ] ( ObjectCreditcardmerchantApi.md#creditcardmerchantEditObjectV1 ) | ** PUT** /1/object/creditcardmerchant/{pkiCreditcardmerchantID} | Edit an existing Creditcardmerchant |
107| [ ** creditcardmerchantGetAutocompleteV2()** ] ( ObjectCreditcardmerchantApi.md#creditcardmerchantGetAutocompleteV2 ) | ** GET** /2/object/creditcardmerchant/getAutocomplete/{sSelector} | Retrieve Creditcardmerchants and IDs |
118| [ ** creditcardmerchantGetListV1()** ] ( ObjectCreditcardmerchantApi.md#creditcardmerchantGetListV1 ) | ** GET** /1/object/creditcardmerchant/getList | Retrieve Creditcardmerchant list |
129| [ ** creditcardmerchantGetObjectV2()** ] ( ObjectCreditcardmerchantApi.md#creditcardmerchantGetObjectV2 ) | ** GET** /2/object/creditcardmerchant/{pkiCreditcardmerchantID} | Retrieve an existing Creditcardmerchant |
1310
1411
15- ## ` creditcardmerchantCreateObjectV1() `
16-
17- ``` php
18- creditcardmerchantCreateObjectV1($creditcardmerchantCreateObjectV1Request): \eZmaxAPI\Model\CreditcardmerchantCreateObjectV1Response
19- ```
20-
21- Create a new Creditcardmerchant
22-
23- The endpoint allows to create one or many elements at once.
24-
25- ### Example
26-
27- ``` php
28- <?php
29- require_once(__DIR__ . '/vendor/autoload.php');
30-
31-
32- // Configure API key authorization: Authorization
33- $config = eZmaxAPI\Configuration::getDefaultConfiguration()->setApiKey('Authorization', 'YOUR_API_KEY');
34- // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
35- // $config = eZmaxAPI\Configuration::getDefaultConfiguration()->setApiKeyPrefix('Authorization', 'Bearer');
36-
37-
38- $apiInstance = new eZmaxAPI\Api\ObjectCreditcardmerchantApi(
39- // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
40- // This is optional, `GuzzleHttp\Client` will be used as default.
41- new GuzzleHttp\Client(),
42- $config
43- );
44- $creditcardmerchantCreateObjectV1Request = new \eZmaxAPI\Model\CreditcardmerchantCreateObjectV1Request(); // \eZmaxAPI\Model\CreditcardmerchantCreateObjectV1Request
45-
46- try {
47- $result = $apiInstance->creditcardmerchantCreateObjectV1($creditcardmerchantCreateObjectV1Request);
48- print_r($result);
49- } catch (Exception $e) {
50- echo 'Exception when calling ObjectCreditcardmerchantApi->creditcardmerchantCreateObjectV1: ', $e->getMessage(), PHP_EOL;
51- }
52- ```
53-
54- ### Parameters
55-
56- | Name | Type | Description | Notes |
57- | ------------- | ------------- | ------------- | ------------- |
58- | ** creditcardmerchantCreateObjectV1Request** | [ ** \eZmaxAPI\Model\CreditcardmerchantCreateObjectV1Request** ] ( ../Model/CreditcardmerchantCreateObjectV1Request.md ) | | |
59-
60- ### Return type
61-
62- [ ** \eZmaxAPI\Model\CreditcardmerchantCreateObjectV1Response** ] ( ../Model/CreditcardmerchantCreateObjectV1Response.md )
63-
64- ### Authorization
65-
66- [ Authorization] ( ../../README.md#Authorization )
67-
68- ### HTTP request headers
69-
70- - ** Content-Type** : ` application/json `
71- - ** Accept** : ` application/json `
72-
73- [[ Back to top]] ( # ) [[ Back to API list]] ( ../../README.md#endpoints )
74- [[ Back to Model list]] ( ../../README.md#models )
75- [[ Back to README]] ( ../../README.md )
76-
77- ## ` creditcardmerchantDeleteObjectV1() `
78-
79- ``` php
80- creditcardmerchantDeleteObjectV1($pkiCreditcardmerchantID): \eZmaxAPI\Model\CreditcardmerchantDeleteObjectV1Response
81- ```
82-
83- Delete an existing Creditcardmerchant
84-
85-
86-
87- ### Example
88-
89- ``` php
90- <?php
91- require_once(__DIR__ . '/vendor/autoload.php');
92-
93-
94- // Configure API key authorization: Authorization
95- $config = eZmaxAPI\Configuration::getDefaultConfiguration()->setApiKey('Authorization', 'YOUR_API_KEY');
96- // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
97- // $config = eZmaxAPI\Configuration::getDefaultConfiguration()->setApiKeyPrefix('Authorization', 'Bearer');
98-
99-
100- $apiInstance = new eZmaxAPI\Api\ObjectCreditcardmerchantApi(
101- // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
102- // This is optional, `GuzzleHttp\Client` will be used as default.
103- new GuzzleHttp\Client(),
104- $config
105- );
106- $pkiCreditcardmerchantID = 56; // int | The unique ID of the Creditcardmerchant
107-
108- try {
109- $result = $apiInstance->creditcardmerchantDeleteObjectV1($pkiCreditcardmerchantID);
110- print_r($result);
111- } catch (Exception $e) {
112- echo 'Exception when calling ObjectCreditcardmerchantApi->creditcardmerchantDeleteObjectV1: ', $e->getMessage(), PHP_EOL;
113- }
114- ```
115-
116- ### Parameters
117-
118- | Name | Type | Description | Notes |
119- | ------------- | ------------- | ------------- | ------------- |
120- | ** pkiCreditcardmerchantID** | ** int** | The unique ID of the Creditcardmerchant | |
121-
122- ### Return type
123-
124- [ ** \eZmaxAPI\Model\CreditcardmerchantDeleteObjectV1Response** ] ( ../Model/CreditcardmerchantDeleteObjectV1Response.md )
125-
126- ### Authorization
127-
128- [ Authorization] ( ../../README.md#Authorization )
129-
130- ### HTTP request headers
131-
132- - ** Content-Type** : Not defined
133- - ** Accept** : ` application/json `
134-
135- [[ Back to top]] ( # ) [[ Back to API list]] ( ../../README.md#endpoints )
136- [[ Back to Model list]] ( ../../README.md#models )
137- [[ Back to README]] ( ../../README.md )
138-
139- ## ` creditcardmerchantEditObjectV1() `
140-
141- ``` php
142- creditcardmerchantEditObjectV1($pkiCreditcardmerchantID, $creditcardmerchantEditObjectV1Request): \eZmaxAPI\Model\CreditcardmerchantEditObjectV1Response
143- ```
144-
145- Edit an existing Creditcardmerchant
146-
147-
148-
149- ### Example
150-
151- ``` php
152- <?php
153- require_once(__DIR__ . '/vendor/autoload.php');
154-
155-
156- // Configure API key authorization: Authorization
157- $config = eZmaxAPI\Configuration::getDefaultConfiguration()->setApiKey('Authorization', 'YOUR_API_KEY');
158- // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
159- // $config = eZmaxAPI\Configuration::getDefaultConfiguration()->setApiKeyPrefix('Authorization', 'Bearer');
160-
161-
162- $apiInstance = new eZmaxAPI\Api\ObjectCreditcardmerchantApi(
163- // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
164- // This is optional, `GuzzleHttp\Client` will be used as default.
165- new GuzzleHttp\Client(),
166- $config
167- );
168- $pkiCreditcardmerchantID = 56; // int | The unique ID of the Creditcardmerchant
169- $creditcardmerchantEditObjectV1Request = new \eZmaxAPI\Model\CreditcardmerchantEditObjectV1Request(); // \eZmaxAPI\Model\CreditcardmerchantEditObjectV1Request
170-
171- try {
172- $result = $apiInstance->creditcardmerchantEditObjectV1($pkiCreditcardmerchantID, $creditcardmerchantEditObjectV1Request);
173- print_r($result);
174- } catch (Exception $e) {
175- echo 'Exception when calling ObjectCreditcardmerchantApi->creditcardmerchantEditObjectV1: ', $e->getMessage(), PHP_EOL;
176- }
177- ```
178-
179- ### Parameters
180-
181- | Name | Type | Description | Notes |
182- | ------------- | ------------- | ------------- | ------------- |
183- | ** pkiCreditcardmerchantID** | ** int** | The unique ID of the Creditcardmerchant | |
184- | ** creditcardmerchantEditObjectV1Request** | [ ** \eZmaxAPI\Model\CreditcardmerchantEditObjectV1Request** ] ( ../Model/CreditcardmerchantEditObjectV1Request.md ) | | |
185-
186- ### Return type
187-
188- [ ** \eZmaxAPI\Model\CreditcardmerchantEditObjectV1Response** ] ( ../Model/CreditcardmerchantEditObjectV1Response.md )
189-
190- ### Authorization
191-
192- [ Authorization] ( ../../README.md#Authorization )
193-
194- ### HTTP request headers
195-
196- - ** Content-Type** : ` application/json `
197- - ** Accept** : ` application/json `
198-
199- [[ Back to top]] ( # ) [[ Back to API list]] ( ../../README.md#endpoints )
200- [[ Back to Model list]] ( ../../README.md#models )
201- [[ Back to README]] ( ../../README.md )
202-
20312## ` creditcardmerchantGetAutocompleteV2() `
20413
20514``` php
0 commit comments