Description Usage Arguments Details Value Examples
Searches the customer profiles associated with a Square account. Calling SearchCustomers without an explicit query parameter returns all customer profiles ordered alphabetically based on given_name and family_name.
1 2  | sq_search_customers(cursor = NULL, limit = NULL, query = NULL,
  verbose = FALSE)
 | 
cursor | 
 character; A pagination cursor returned by a previous call to this endpoint. Typically this is not needed because functions in the package will automatically paginate results.  | 
limit | 
 integer; 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.  | 
query | 
 list; A list containing   | 
verbose | 
 logical; do you want informative messages?  | 
Required permissions: CUSTOMERS_READ
tbl_df of customers
1 2 3 4  | ## Not run: 
my_customers <- sq_search_customers()
## End(Not run)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.