Skip to content

Commit 9e7ecbb

Browse files
Ian.Lord@ezmax.caIan.Lord@ezmax.ca
authored andcommitted
Merge branch 'develop'
2 parents 15f21d7 + d4594ce commit 9e7ecbb

File tree

3,687 files changed

+35877
-224130
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,687 files changed

+35877
-224130
lines changed

.openapi-generator/FILES

Lines changed: 106 additions & 1781 deletions
Large diffs are not rendered by default.

.openapi-generator/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.11.0
1+
7.12.0

README.md

Lines changed: 65 additions & 12 deletions
Large diffs are not rendered by default.

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ezmaxinc/ezmax-sdk-php",
3-
"version": "1.2.1",
3+
"version": "1.2.2",
44
"description": "This API expose all the functionnalities for the eZmax and eZsign applications.",
55
"keywords": [
66
"openapitools",

docs/Api/ObjectCreditcardmerchantApi.md

Lines changed: 0 additions & 191 deletions
Original file line numberDiff line numberDiff line change
@@ -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

docs/Api/ObjectCurrencyApi.md

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
# eZmaxAPI\ObjectCurrencyApi
2+
3+
All URIs are relative to https://prod.api.appcluster01.ca-central-1.ezmax.com/rest, except if the operation defines another base path.
4+
5+
| Method | HTTP request | Description |
6+
| ------------- | ------------- | ------------- |
7+
| [**currencyGetAutocompleteV2()**](ObjectCurrencyApi.md#currencyGetAutocompleteV2) | **GET** /2/object/currency/getAutocomplete/{sSelector} | Retrieve Currencies and IDs |
8+
9+
10+
## `currencyGetAutocompleteV2()`
11+
12+
```php
13+
currencyGetAutocompleteV2($sSelector, $eFilterActive, $sQuery, $acceptLanguage): \eZmaxAPI\Model\CurrencyGetAutocompleteV2Response
14+
```
15+
16+
Retrieve Currencies and IDs
17+
18+
Get the list of Currency to be used in a dropdown or autocomplete control.
19+
20+
### Example
21+
22+
```php
23+
<?php
24+
require_once(__DIR__ . '/vendor/autoload.php');
25+
26+
27+
// Configure API key authorization: Authorization
28+
$config = eZmaxAPI\Configuration::getDefaultConfiguration()->setApiKey('Authorization', 'YOUR_API_KEY');
29+
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
30+
// $config = eZmaxAPI\Configuration::getDefaultConfiguration()->setApiKeyPrefix('Authorization', 'Bearer');
31+
32+
33+
$apiInstance = new eZmaxAPI\Api\ObjectCurrencyApi(
34+
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
35+
// This is optional, `GuzzleHttp\Client` will be used as default.
36+
new GuzzleHttp\Client(),
37+
$config
38+
);
39+
$sSelector = 'sSelector_example'; // string | The type of Currencies to return
40+
$eFilterActive = 'Active'; // string | Specify which results we want to display.
41+
$sQuery = 'sQuery_example'; // string | Allow to filter the returned results
42+
$acceptLanguage = new \eZmaxAPI\Model\\eZmaxAPI\Model\HeaderAcceptLanguage(); // \eZmaxAPI\Model\HeaderAcceptLanguage
43+
44+
try {
45+
$result = $apiInstance->currencyGetAutocompleteV2($sSelector, $eFilterActive, $sQuery, $acceptLanguage);
46+
print_r($result);
47+
} catch (Exception $e) {
48+
echo 'Exception when calling ObjectCurrencyApi->currencyGetAutocompleteV2: ', $e->getMessage(), PHP_EOL;
49+
}
50+
```
51+
52+
### Parameters
53+
54+
| Name | Type | Description | Notes |
55+
| ------------- | ------------- | ------------- | ------------- |
56+
| **sSelector** | **string**| The type of Currencies to return | |
57+
| **eFilterActive** | **string**| Specify which results we want to display. | [optional] [default to &#39;Active&#39;] |
58+
| **sQuery** | **string**| Allow to filter the returned results | [optional] |
59+
| **acceptLanguage** | [**\eZmaxAPI\Model\HeaderAcceptLanguage**](../Model/.md)| | [optional] |
60+
61+
### Return type
62+
63+
[**\eZmaxAPI\Model\CurrencyGetAutocompleteV2Response**](../Model/CurrencyGetAutocompleteV2Response.md)
64+
65+
### Authorization
66+
67+
[Authorization](../../README.md#Authorization)
68+
69+
### HTTP request headers
70+
71+
- **Content-Type**: Not defined
72+
- **Accept**: `application/json`
73+
74+
[[Back to top]](#) [[Back to API list]](../../README.md#endpoints)
75+
[[Back to Model list]](../../README.md#models)
76+
[[Back to README]](../../README.md)

docs/Api/ObjectCustomerApi.md

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ All URIs are relative to https://prod.api.appcluster01.ca-central-1.ezmax.com/re
55
| Method | HTTP request | Description |
66
| ------------- | ------------- | ------------- |
77
| [**customerCreateObjectV1()**](ObjectCustomerApi.md#customerCreateObjectV1) | **POST** /1/object/customer | Create a new Customer |
8+
| [**customerGetAutocompleteV2()**](ObjectCustomerApi.md#customerGetAutocompleteV2) | **GET** /2/object/customer/getAutocomplete/{sSelector} | Retrieve Customers and IDs |
89
| [**customerGetObjectV2()**](ObjectCustomerApi.md#customerGetObjectV2) | **GET** /2/object/customer/{pkiCustomerID} | Retrieve an existing Customer |
910

1011

@@ -70,6 +71,74 @@ try {
7071
[[Back to Model list]](../../README.md#models)
7172
[[Back to README]](../../README.md)
7273

74+
## `customerGetAutocompleteV2()`
75+
76+
```php
77+
customerGetAutocompleteV2($sSelector, $eFilterActive, $sQuery, $acceptLanguage): \eZmaxAPI\Model\CustomerGetAutocompleteV2Response
78+
```
79+
80+
Retrieve Customers and IDs
81+
82+
Get the list of Customer to be used in a dropdown or autocomplete control.
83+
84+
### Example
85+
86+
```php
87+
<?php
88+
require_once(__DIR__ . '/vendor/autoload.php');
89+
90+
91+
// Configure API key authorization: Authorization
92+
$config = eZmaxAPI\Configuration::getDefaultConfiguration()->setApiKey('Authorization', 'YOUR_API_KEY');
93+
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
94+
// $config = eZmaxAPI\Configuration::getDefaultConfiguration()->setApiKeyPrefix('Authorization', 'Bearer');
95+
96+
97+
$apiInstance = new eZmaxAPI\Api\ObjectCustomerApi(
98+
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
99+
// This is optional, `GuzzleHttp\Client` will be used as default.
100+
new GuzzleHttp\Client(),
101+
$config
102+
);
103+
$sSelector = 'sSelector_example'; // string | The type of Customers to return
104+
$eFilterActive = 'Active'; // string | Specify which results we want to display.
105+
$sQuery = 'sQuery_example'; // string | Allow to filter the returned results
106+
$acceptLanguage = new \eZmaxAPI\Model\\eZmaxAPI\Model\HeaderAcceptLanguage(); // \eZmaxAPI\Model\HeaderAcceptLanguage
107+
108+
try {
109+
$result = $apiInstance->customerGetAutocompleteV2($sSelector, $eFilterActive, $sQuery, $acceptLanguage);
110+
print_r($result);
111+
} catch (Exception $e) {
112+
echo 'Exception when calling ObjectCustomerApi->customerGetAutocompleteV2: ', $e->getMessage(), PHP_EOL;
113+
}
114+
```
115+
116+
### Parameters
117+
118+
| Name | Type | Description | Notes |
119+
| ------------- | ------------- | ------------- | ------------- |
120+
| **sSelector** | **string**| The type of Customers to return | |
121+
| **eFilterActive** | **string**| Specify which results we want to display. | [optional] [default to &#39;Active&#39;] |
122+
| **sQuery** | **string**| Allow to filter the returned results | [optional] |
123+
| **acceptLanguage** | [**\eZmaxAPI\Model\HeaderAcceptLanguage**](../Model/.md)| | [optional] |
124+
125+
### Return type
126+
127+
[**\eZmaxAPI\Model\CustomerGetAutocompleteV2Response**](../Model/CustomerGetAutocompleteV2Response.md)
128+
129+
### Authorization
130+
131+
[Authorization](../../README.md#Authorization)
132+
133+
### HTTP request headers
134+
135+
- **Content-Type**: Not defined
136+
- **Accept**: `application/json`
137+
138+
[[Back to top]](#) [[Back to API list]](../../README.md#endpoints)
139+
[[Back to Model list]](../../README.md#models)
140+
[[Back to README]](../../README.md)
141+
73142
## `customerGetObjectV2()`
74143

75144
```php

0 commit comments

Comments
 (0)