You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$api_instance = new SquareConnect\Api\CustomersApi();
228
229
$cursor = "cursor_example"; // string | A pagination cursor returned by a previous call to this endpoint. Provide this to retrieve the next set of results for your original query. See [Paginating results](#paginatingresults) for more information.
229
-
$sort_field = "sort_field_example"; // string | Indicates how Customers should be sorted. Default: `DEFAULT`.
230
-
$sort_order = "sort_order_example"; // string | Indicates whether Customers should be sorted in ascending (`ASC`) or descending (`DESC`) order. Default: `ASC`.
230
+
$sort_field = "sort_field_example"; // string | Indicates how Customers should be sorted. Default: `DEFAULT`. See [CustomerSortField](#type-customersortfield) for possible values.
231
+
$sort_order = "sort_order_example"; // string | Indicates whether Customers should be sorted in ascending (`ASC`) or descending (`DESC`) order. Default: `ASC`. See [SortOrder](#type-sortorder) for possible values.
**cursor** | **string**| A pagination cursor returned by a previous call to this endpoint. Provide this to retrieve the next set of results for your original query. See [Paginating results](#paginatingresults) for more information. | [optional]
246
-
**sort_field** | **string**| Indicates how Customers should be sorted. Default: `DEFAULT`. | [optional]
247
-
**sort_order** | **string**| Indicates whether Customers should be sorted in ascending (`ASC`) or descending (`DESC`) order. Default: `ASC`. | [optional]
247
+
**sort_field** | **string**| Indicates how Customers should be sorted. Default: `DEFAULT`. See [CustomerSortField](#type-customersortfield) for possible values. | [optional]
248
+
**sort_order** | **string**| Indicates whether Customers should be sorted in ascending (`ASC`) or descending (`DESC`) order. Default: `ASC`. See [SortOrder](#type-sortorder) for possible values. | [optional]
248
249
249
250
### Return type
250
251
@@ -309,6 +310,54 @@ Name | Type | Description | Notes
309
310
310
311
[[Back to top]](#)[[Back to API list]](../../README.md#documentation-for-api-endpoints)[[Back to Model list]](../../README.md#documentation-for-models)[[Back to README]](../../README.md)
$api_instance = new SquareConnect\Api\CustomersApi();
329
+
$body = new \SquareConnect\Model\SearchCustomersRequest(); // \SquareConnect\Model\SearchCustomersRequest | An object containing the fields to POST for the request. See the corresponding object definition for field details.
330
+
331
+
try {
332
+
$result = $api_instance->searchCustomers($body);
333
+
print_r($result);
334
+
} catch (Exception $e) {
335
+
echo 'Exception when calling CustomersApi->searchCustomers: ', $e->getMessage(), PHP_EOL;
**body** | [**\SquareConnect\Model\SearchCustomersRequest**](../Model/SearchCustomersRequest.md)| An object containing the fields to POST for the request. See the corresponding object definition for field details. |
[[Back to top]](#)[[Back to API list]](../../README.md#documentation-for-api-endpoints)[[Back to Model list]](../../README.md#documentation-for-models)[[Back to README]](../../README.md)
**groups** | getGroups() | setGroups($value) | [**\SquareConnect\Model\CustomerGroupInfo[]**](CustomerGroupInfo.md) | The groups the customer belongs to. | [optional]
21
+
**creation_source** | getCreationSource() | setCreationSource($value) | **string** | A creation source represents the method used to create the customer profile. | [optional]
21
22
22
23
Note: All properties are protected and only accessed via getters and setters.
Note: All properties are protected and only accessed via getters and setters.
8
+
9
+
[[Back to Model list]](../../README.md#documentation-for-models)[[Back to API list]](../../README.md#documentation-for-api-endpoints)[[Back to README]](../../README.md)
**values** | getValues() | setValues($value) | **string[]** | The list of creation sources used as filtering criteria. | [optional]
7
+
**rule** | getRule() | setRule($value) | **string** | Indicates whether a customer profile matching the filter criteria should be included in the result or excluded from the result. Default: `INCLUDE`. See [CustomerInclusionExclusion](#type-customerinclusionexclusion) for possible values. | [optional]
8
+
9
+
Note: All properties are protected and only accessed via getters and setters.
10
+
11
+
[[Back to Model list]](../../README.md#documentation-for-models)[[Back to API list]](../../README.md#documentation-for-api-endpoints)[[Back to README]](../../README.md)
**creation_source** | getCreationSource() | setCreationSource($value) | [**\SquareConnect\Model\CustomerCreationSourceFilter**](CustomerCreationSourceFilter.md) | A filter to select customers based on their creation source. | [optional]
7
+
**created_at** | getCreatedAt() | setCreatedAt($value) | [**\SquareConnect\Model\TimeRange**](TimeRange.md) | A filter to select customers based on when they were created. | [optional]
8
+
**updated_at** | getUpdatedAt() | setUpdatedAt($value) | [**\SquareConnect\Model\TimeRange**](TimeRange.md) | A filter to select customers based on when they were updated. | [optional]
9
+
10
+
Note: All properties are protected and only accessed via getters and setters.
11
+
12
+
[[Back to Model list]](../../README.md#documentation-for-models)[[Back to API list]](../../README.md#documentation-for-api-endpoints)[[Back to README]](../../README.md)
Note: All properties are protected and only accessed via getters and setters.
8
+
9
+
[[Back to Model list]](../../README.md#documentation-for-models)[[Back to API list]](../../README.md#documentation-for-api-endpoints)[[Back to README]](../../README.md)
**filter** | getFilter() | setFilter($value) | [**\SquareConnect\Model\CustomerFilter**](CustomerFilter.md) | A list of filter criteria. | [optional]
7
+
**sort** | getSort() | setSort($value) | [**\SquareConnect\Model\CustomerSort**](CustomerSort.md) | Sort criteria for query results. The default sort behavior is to order customers alphabetically by `given_name` and `last_name`. | [optional]
8
+
9
+
Note: All properties are protected and only accessed via getters and setters.
10
+
11
+
[[Back to Model list]](../../README.md#documentation-for-models)[[Back to API list]](../../README.md#documentation-for-api-endpoints)[[Back to README]](../../README.md)
**field** | getField() | setField($value) | **string** | The field to sort the results on. It could be the total money spent at the merchant, the date of the first visit (etc). Default value: `DEFAULT`. | [optional]
7
+
**order** | getOrder() | setOrder($value) | **string** | Indicates the order in which results should be displayed based on the value of the sort field. String comparisons use standard alphabetic comparison to determine order. Strings representing numbers are sorted as strings. Default value: `ASC`. | [optional]
8
+
9
+
Note: All properties are protected and only accessed via getters and setters.
10
+
11
+
[[Back to Model list]](../../README.md#documentation-for-models)[[Back to API list]](../../README.md#documentation-for-api-endpoints)[[Back to README]](../../README.md)
**cursor** | getCursor() | setCursor($value) | **string** | A pagination cursor returned by a previous call to this endpoint. Provide this to retrieve the next set of results for your original query. See [Paginating results](#paginatingresults) for more information. | [optional]
7
-
**sort_field** | getSortField() | setSortField($value) | **string** | Indicates how Customers should be sorted. Default: `DEFAULT`. | [optional]
8
-
**sort_order** | getSortOrder() | setSortOrder($value) | **string** | Indicates whether Customers should be sorted in ascending (`ASC`) or descending (`DESC`) order. Default: `ASC`. | [optional]
7
+
**sort_field** | getSortField() | setSortField($value) | **string** | Indicates how Customers should be sorted. Default: `DEFAULT`. See [CustomerSortField](#type-customersortfield) for possible values. | [optional]
8
+
**sort_order** | getSortOrder() | setSortOrder($value) | **string** | Indicates whether Customers should be sorted in ascending (`ASC`) or descending (`DESC`) order. Default: `ASC`. See [SortOrder](#type-sortorder) for possible values. | [optional]
9
9
10
10
Note: All properties are protected and only accessed via getters and setters.
**name** | getName() | setName($value) | **string** | The name of the line item. | [optional]
7
-
**quantity** | getQuantity() | setQuantity($value) | **string** | The quantity purchased, as a string representation of a number. |
7
+
**quantity** | getQuantity() | setQuantity($value) | **string** | The quantity purchased, as a string representation of a number. This string must have a positive integer value. |
8
8
**note** | getNote() | setNote($value) | **string** | The note of the line item. | [optional]
9
9
**catalog_object_id** | getCatalogObjectId() | setCatalogObjectId($value) | **string** | The [CatalogItemVariation](#type-catalogitemvariation) id applied to this line item. | [optional]
10
10
**variation_name** | getVariationName() | setVariationName($value) | **string** | The name of the variation applied to this line item. | [optional]
**cursor** | getCursor() | setCursor($value) | **string** | Include the pagination cursor in subsequent calls to this endpoint to retrieve the next set of results associated with the original query. See [Paginating results](#paginatingresults) for more information. | [optional]
7
+
**limit** | getLimit() | setLimit($value) | **int** | A limit on the number of results to be returned in a single page. The limit is advisory - the implementation may return more or fewer results. If the supplied limit is negative, zero, or is higher than the maximum limit of 1,000, it will be ignored. | [optional]
8
+
**query** | getQuery() | setQuery($value) | [**\SquareConnect\Model\CustomerQuery**](CustomerQuery.md) | Query customers based on the given conditions and sort order. Calling SearchCustomers without an explicit query parameter will return all customers ordered alphabetically based on `given_name` and `family_name`. | [optional]
9
+
10
+
Note: All properties are protected and only accessed via getters and setters.
11
+
12
+
[[Back to Model list]](../../README.md#documentation-for-models)[[Back to API list]](../../README.md#documentation-for-api-endpoints)[[Back to README]](../../README.md)
**errors** | getErrors() | setErrors($value) | [**\SquareConnect\Model\Error[]**](Error.md) | Any errors that occurred during the request. | [optional]
7
+
**customers** | getCustomers() | setCustomers($value) | [**\SquareConnect\Model\Customer[]**](Customer.md) | An array of `Customer` objects that match a query. | [optional]
8
+
**cursor** | getCursor() | setCursor($value) | **string** | A pagination cursor that can be used during subsequent calls to SearchCustomers to retrieve the next set of results associated with the original query. Pagination cursors are only present when a request succeeds and additional results are available. See [Paginating results](#paginatingresults) for more information. | [optional]
9
+
10
+
Note: All properties are protected and only accessed via getters and setters.
11
+
12
+
[[Back to Model list]](../../README.md#documentation-for-models)[[Back to API list]](../../README.md#documentation-for-api-endpoints)[[Back to README]](../../README.md)
0 commit comments