@@ -9,8 +9,6 @@ Method | HTTP request | Description
99[ ** contactGet** ] ( ContactsApi.md#contactGet ) | ** GET** /v4/api/contact/{id} |
1010[ ** contactSearch** ] ( ContactsApi.md#contactSearch ) | ** GET** /v4/api/contact |
1111[ ** contactUpdate** ] ( ContactsApi.md#contactUpdate ) | ** PUT** /v4/api/contact/{id} |
12- [ ** contactsGet** ] ( ContactsApi.md#contactsGet ) | ** GET** /v4/api/contacts/{id} |
13- [ ** contactsSearch** ] ( ContactsApi.md#contactsSearch ) | ** GET** /v4/api/contacts |
1412
1513<a name =" contactCreate " ></a >
1614# ** contactCreate**
@@ -271,111 +269,3 @@ Name | Type | Description | Notes
271269 - ** Content-Type** : application/json
272270 - ** Accept** : application/json
273271
274- <a name =" contactsGet " ></a >
275- # ** contactsGet**
276- > Contact contactsGet(id)
277-
278-
279-
280- Retrieve a contact.
281-
282- ### Example
283- ``` java
284- // Import classes:
285- // import com.statflo.client.ApiClient;
286- // import com.statflo.client.ApiException;
287- // import com.statflo.client.Configuration;
288- // import com.statflo.client.auth.*;
289- // import com.statflo.client.api.ContactsApi;
290-
291- ApiClient defaultClient = Configuration . getDefaultApiClient();
292-
293-
294- ContactsApi apiInstance = new ContactsApi ();
295- String id = " id_example" ; // String |
296- try {
297- Contact result = apiInstance. contactsGet(id);
298- System . out. println(result);
299- } catch (ApiException e) {
300- System . err. println(" Exception when calling ContactsApi#contactsGet" );
301- e. printStackTrace();
302- }
303- ```
304-
305- ### Parameters
306-
307- Name | Type | Description | Notes
308- ------------- | ------------- | ------------- | -------------
309- ** id** | ** String** | |
310-
311- ### Return type
312-
313- [ ** Contact** ] ( Contact.md )
314-
315- ### Authorization
316-
317- [ Bearer] ( ../README.md#Bearer )
318-
319- ### HTTP request headers
320-
321- - ** Content-Type** : Not defined
322- - ** Accept** : application/json
323-
324- <a name =" contactsSearch " ></a >
325- # ** contactsSearch**
326- > ContactPaginationResponse contactsSearch(filter, query, page, perPage, sort)
327-
328-
329-
330- Search contacts.
331-
332- ### Example
333- ``` java
334- // Import classes:
335- // import com.statflo.client.ApiClient;
336- // import com.statflo.client.ApiException;
337- // import com.statflo.client.Configuration;
338- // import com.statflo.client.auth.*;
339- // import com.statflo.client.api.ContactsApi;
340-
341- ApiClient defaultClient = Configuration . getDefaultApiClient();
342-
343-
344- ContactsApi apiInstance = new ContactsApi ();
345- java.util. HashMap filter = new java.util. HashMap (); // java.util.HashMap |
346- String query = " query_example" ; // String |
347- Integer page = 56 ; // Integer |
348- Integer perPage = 56 ; // Integer |
349- String sort = " sort_example" ; // String |
350- try {
351- ContactPaginationResponse result = apiInstance. contactsSearch(filter, query, page, perPage, sort);
352- System . out. println(result);
353- } catch (ApiException e) {
354- System . err. println(" Exception when calling ContactsApi#contactsSearch" );
355- e. printStackTrace();
356- }
357- ```
358-
359- ### Parameters
360-
361- Name | Type | Description | Notes
362- ------------- | ------------- | ------------- | -------------
363- ** filter** | [ ** java.util.HashMap** ] ( .md ) | | [ optional]
364- ** query** | ** String** | | [ optional]
365- ** page** | ** Integer** | | [ optional]
366- ** perPage** | ** Integer** | | [ optional]
367- ** sort** | ** String** | | [ optional]
368-
369- ### Return type
370-
371- [ ** ContactPaginationResponse** ] ( ContactPaginationResponse.md )
372-
373- ### Authorization
374-
375- [ Bearer] ( ../README.md#Bearer )
376-
377- ### HTTP request headers
378-
379- - ** Content-Type** : Not defined
380- - ** Accept** : application/json
381-
0 commit comments