forked from square/square-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustomers_api.py
More file actions
756 lines (654 loc) · 29.9 KB
/
customers_api.py
File metadata and controls
756 lines (654 loc) · 29.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
# -*- coding: utf-8 -*-
from deprecation import deprecated
from square.api_helper import APIHelper
from square.http.api_response import ApiResponse
from square.api.base_api import BaseApi
from apimatic_core.request_builder import RequestBuilder
from apimatic_core.response_handler import ResponseHandler
from apimatic_core.types.parameter import Parameter
from square.http.http_method_enum import HttpMethodEnum
from apimatic_core.authentication.multiple.single_auth import Single
class CustomersApi(BaseApi):
"""A Controller to access Endpoints in the square API."""
def __init__(self, config):
super(CustomersApi, self).__init__(config)
def list_customers(self,
cursor=None,
limit=None,
sort_field=None,
sort_order=None,
count=False):
"""Does a GET request to /v2/customers.
Lists customer profiles associated with a Square account.
Under normal operating conditions, newly created or updated customer
profiles become available
for the listing operation in well under 30 seconds. Occasionally,
propagation of the new or updated
profiles can take closer to one minute or longer, especially during
network incidents and outages.
Args:
cursor (str, optional): A pagination cursor returned by a previous
call to this endpoint. Provide this cursor to retrieve the
next set of results for your original query. For more
information, see
[Pagination](https://developer.squareup.com/docs/build-basics/c
ommon-api-patterns/pagination).
limit (int, optional): The maximum number of results to return in
a single page. This limit is advisory. The response might
contain more or fewer results. If the specified limit is less
than 1 or greater than 100, Square returns a `400
VALUE_TOO_LOW` or `400 VALUE_TOO_HIGH` error. The default
value is 100. For more information, see
[Pagination](https://developer.squareup.com/docs/build-basics/c
ommon-api-patterns/pagination).
sort_field (CustomerSortField, optional): Indicates how customers
should be sorted. The default value is `DEFAULT`.
sort_order (SortOrder, optional): Indicates whether customers
should be sorted in ascending (`ASC`) or descending (`DESC`)
order. The default value is `ASC`.
count (bool, optional): Indicates whether to return the total
count of customers in the `count` field of the response. The
default value is `false`.
Returns:
ApiResponse: An object with the response value as well as other
useful information such as status codes and headers. Success
Raises:
APIException: When an error occurs while fetching the data from
the remote API. This exception includes the HTTP Response
code, an error message, and the HTTP body that was received in
the request.
"""
return super().new_api_call_builder.request(
RequestBuilder().server('default')
.path('/v2/customers')
.http_method(HttpMethodEnum.GET)
.query_param(Parameter()
.key('cursor')
.value(cursor))
.query_param(Parameter()
.key('limit')
.value(limit))
.query_param(Parameter()
.key('sort_field')
.value(sort_field))
.query_param(Parameter()
.key('sort_order')
.value(sort_order))
.query_param(Parameter()
.key('count')
.value(count))
.header_param(Parameter()
.key('accept')
.value('application/json'))
.auth(Single('global'))
).response(
ResponseHandler()
.deserializer(APIHelper.json_deserialize)
.is_api_response(True)
.convertor(ApiResponse.create)
).execute()
def create_customer(self,
body):
"""Does a POST request to /v2/customers.
Creates a new customer for a business.
You must provide at least one of the following values in your request
to this
endpoint:
- `given_name`
- `family_name`
- `company_name`
- `email_address`
- `phone_number`
Args:
body (CreateCustomerRequest): An object containing the fields to
POST for the request. See the corresponding object definition
for field details.
Returns:
ApiResponse: An object with the response value as well as other
useful information such as status codes and headers. Success
Raises:
APIException: When an error occurs while fetching the data from
the remote API. This exception includes the HTTP Response
code, an error message, and the HTTP body that was received in
the request.
"""
return super().new_api_call_builder.request(
RequestBuilder().server('default')
.path('/v2/customers')
.http_method(HttpMethodEnum.POST)
.header_param(Parameter()
.key('Content-Type')
.value('application/json'))
.body_param(Parameter()
.value(body))
.header_param(Parameter()
.key('accept')
.value('application/json'))
.body_serializer(APIHelper.json_serialize)
.auth(Single('global'))
).response(
ResponseHandler()
.deserializer(APIHelper.json_deserialize)
.is_api_response(True)
.convertor(ApiResponse.create)
).execute()
def bulk_create_customers(self,
body):
"""Does a POST request to /v2/customers/bulk-create.
Creates multiple [customer profiles]($m/Customer) for a business.
This endpoint takes a map of individual create requests and returns a
map of responses.
You must provide at least one of the following values in each create
request:
- `given_name`
- `family_name`
- `company_name`
- `email_address`
- `phone_number`
Args:
body (BulkCreateCustomersRequest): An object containing the fields
to POST for the request. See the corresponding object
definition for field details.
Returns:
ApiResponse: An object with the response value as well as other
useful information such as status codes and headers. Success
Raises:
APIException: When an error occurs while fetching the data from
the remote API. This exception includes the HTTP Response
code, an error message, and the HTTP body that was received in
the request.
"""
return super().new_api_call_builder.request(
RequestBuilder().server('default')
.path('/v2/customers/bulk-create')
.http_method(HttpMethodEnum.POST)
.header_param(Parameter()
.key('Content-Type')
.value('application/json'))
.body_param(Parameter()
.value(body))
.header_param(Parameter()
.key('accept')
.value('application/json'))
.body_serializer(APIHelper.json_serialize)
.auth(Single('global'))
).response(
ResponseHandler()
.deserializer(APIHelper.json_deserialize)
.is_api_response(True)
.convertor(ApiResponse.create)
).execute()
def bulk_delete_customers(self,
body):
"""Does a POST request to /v2/customers/bulk-delete.
Deletes multiple customer profiles.
The endpoint takes a list of customer IDs and returns a map of
responses.
Args:
body (BulkDeleteCustomersRequest): An object containing the fields
to POST for the request. See the corresponding object
definition for field details.
Returns:
ApiResponse: An object with the response value as well as other
useful information such as status codes and headers. Success
Raises:
APIException: When an error occurs while fetching the data from
the remote API. This exception includes the HTTP Response
code, an error message, and the HTTP body that was received in
the request.
"""
return super().new_api_call_builder.request(
RequestBuilder().server('default')
.path('/v2/customers/bulk-delete')
.http_method(HttpMethodEnum.POST)
.header_param(Parameter()
.key('Content-Type')
.value('application/json'))
.body_param(Parameter()
.value(body))
.header_param(Parameter()
.key('accept')
.value('application/json'))
.body_serializer(APIHelper.json_serialize)
.auth(Single('global'))
).response(
ResponseHandler()
.deserializer(APIHelper.json_deserialize)
.is_api_response(True)
.convertor(ApiResponse.create)
).execute()
def bulk_retrieve_customers(self,
body):
"""Does a POST request to /v2/customers/bulk-retrieve.
Retrieves multiple customer profiles.
This endpoint takes a list of customer IDs and returns a map of
responses.
Args:
body (BulkRetrieveCustomersRequest): An object containing the
fields to POST for the request. See the corresponding object
definition for field details.
Returns:
ApiResponse: An object with the response value as well as other
useful information such as status codes and headers. Success
Raises:
APIException: When an error occurs while fetching the data from
the remote API. This exception includes the HTTP Response
code, an error message, and the HTTP body that was received in
the request.
"""
return super().new_api_call_builder.request(
RequestBuilder().server('default')
.path('/v2/customers/bulk-retrieve')
.http_method(HttpMethodEnum.POST)
.header_param(Parameter()
.key('Content-Type')
.value('application/json'))
.body_param(Parameter()
.value(body))
.header_param(Parameter()
.key('accept')
.value('application/json'))
.body_serializer(APIHelper.json_serialize)
.auth(Single('global'))
).response(
ResponseHandler()
.deserializer(APIHelper.json_deserialize)
.is_api_response(True)
.convertor(ApiResponse.create)
).execute()
def bulk_update_customers(self,
body):
"""Does a POST request to /v2/customers/bulk-update.
Updates multiple customer profiles.
This endpoint takes a map of individual update requests and returns a
map of responses.
You cannot use this endpoint to change cards on file. To make changes,
use the [Cards API]($e/Cards) or [Gift Cards API]($e/GiftCards).
Args:
body (BulkUpdateCustomersRequest): An object containing the fields
to POST for the request. See the corresponding object
definition for field details.
Returns:
ApiResponse: An object with the response value as well as other
useful information such as status codes and headers. Success
Raises:
APIException: When an error occurs while fetching the data from
the remote API. This exception includes the HTTP Response
code, an error message, and the HTTP body that was received in
the request.
"""
return super().new_api_call_builder.request(
RequestBuilder().server('default')
.path('/v2/customers/bulk-update')
.http_method(HttpMethodEnum.POST)
.header_param(Parameter()
.key('Content-Type')
.value('application/json'))
.body_param(Parameter()
.value(body))
.header_param(Parameter()
.key('accept')
.value('application/json'))
.body_serializer(APIHelper.json_serialize)
.auth(Single('global'))
).response(
ResponseHandler()
.deserializer(APIHelper.json_deserialize)
.is_api_response(True)
.convertor(ApiResponse.create)
).execute()
def search_customers(self,
body):
"""Does a POST request to /v2/customers/search.
Searches the customer profiles associated with a Square account using
one or more supported query filters.
Calling `SearchCustomers` without any explicit query filter returns
all
customer profiles ordered alphabetically based on `given_name` and
`family_name`.
Under normal operating conditions, newly created or updated customer
profiles become available
for the search operation in well under 30 seconds. Occasionally,
propagation of the new or updated
profiles can take closer to one minute or longer, especially during
network incidents and outages.
Args:
body (SearchCustomersRequest): An object containing the fields to
POST for the request. See the corresponding object definition
for field details.
Returns:
ApiResponse: An object with the response value as well as other
useful information such as status codes and headers. Success
Raises:
APIException: When an error occurs while fetching the data from
the remote API. This exception includes the HTTP Response
code, an error message, and the HTTP body that was received in
the request.
"""
return super().new_api_call_builder.request(
RequestBuilder().server('default')
.path('/v2/customers/search')
.http_method(HttpMethodEnum.POST)
.header_param(Parameter()
.key('Content-Type')
.value('application/json'))
.body_param(Parameter()
.value(body))
.header_param(Parameter()
.key('accept')
.value('application/json'))
.body_serializer(APIHelper.json_serialize)
.auth(Single('global'))
).response(
ResponseHandler()
.deserializer(APIHelper.json_deserialize)
.is_api_response(True)
.convertor(ApiResponse.create)
).execute()
def delete_customer(self,
customer_id,
version=None):
"""Does a DELETE request to /v2/customers/{customer_id}.
Deletes a customer profile from a business. This operation also
unlinks any associated cards on file.
To delete a customer profile that was created by merging existing
profiles, you must use the ID of the newly created profile.
Args:
customer_id (str): The ID of the customer to delete.
version (long|int, optional): The current version of the customer
profile. As a best practice, you should include this
parameter to enable [optimistic
concurrency](https://developer.squareup.com/docs/build-basics/c
ommon-api-patterns/optimistic-concurrency) control. For more
information, see [Delete a customer
profile](https://developer.squareup.com/docs/customers-api/use-
the-api/keep-records#delete-customer-profile).
Returns:
ApiResponse: An object with the response value as well as other
useful information such as status codes and headers. Success
Raises:
APIException: When an error occurs while fetching the data from
the remote API. This exception includes the HTTP Response
code, an error message, and the HTTP body that was received in
the request.
"""
return super().new_api_call_builder.request(
RequestBuilder().server('default')
.path('/v2/customers/{customer_id}')
.http_method(HttpMethodEnum.DELETE)
.template_param(Parameter()
.key('customer_id')
.value(customer_id)
.should_encode(True))
.query_param(Parameter()
.key('version')
.value(version))
.header_param(Parameter()
.key('accept')
.value('application/json'))
.auth(Single('global'))
).response(
ResponseHandler()
.deserializer(APIHelper.json_deserialize)
.is_api_response(True)
.convertor(ApiResponse.create)
).execute()
def retrieve_customer(self,
customer_id):
"""Does a GET request to /v2/customers/{customer_id}.
Returns details for a single customer.
Args:
customer_id (str): The ID of the customer to retrieve.
Returns:
ApiResponse: An object with the response value as well as other
useful information such as status codes and headers. Success
Raises:
APIException: When an error occurs while fetching the data from
the remote API. This exception includes the HTTP Response
code, an error message, and the HTTP body that was received in
the request.
"""
return super().new_api_call_builder.request(
RequestBuilder().server('default')
.path('/v2/customers/{customer_id}')
.http_method(HttpMethodEnum.GET)
.template_param(Parameter()
.key('customer_id')
.value(customer_id)
.should_encode(True))
.header_param(Parameter()
.key('accept')
.value('application/json'))
.auth(Single('global'))
).response(
ResponseHandler()
.deserializer(APIHelper.json_deserialize)
.is_api_response(True)
.convertor(ApiResponse.create)
).execute()
def update_customer(self,
customer_id,
body):
"""Does a PUT request to /v2/customers/{customer_id}.
Updates a customer profile. This endpoint supports sparse updates, so
only new or changed fields are required in the request.
To add or update a field, specify the new value. To remove a field,
specify `null`.
To update a customer profile that was created by merging existing
profiles, you must use the ID of the newly created profile.
You cannot use this endpoint to change cards on file. To make changes,
use the [Cards API]($e/Cards) or [Gift Cards API]($e/GiftCards).
Args:
customer_id (str): The ID of the customer to update.
body (UpdateCustomerRequest): An object containing the fields to
POST for the request. See the corresponding object definition
for field details.
Returns:
ApiResponse: An object with the response value as well as other
useful information such as status codes and headers. Success
Raises:
APIException: When an error occurs while fetching the data from
the remote API. This exception includes the HTTP Response
code, an error message, and the HTTP body that was received in
the request.
"""
return super().new_api_call_builder.request(
RequestBuilder().server('default')
.path('/v2/customers/{customer_id}')
.http_method(HttpMethodEnum.PUT)
.template_param(Parameter()
.key('customer_id')
.value(customer_id)
.should_encode(True))
.header_param(Parameter()
.key('Content-Type')
.value('application/json'))
.body_param(Parameter()
.value(body))
.header_param(Parameter()
.key('accept')
.value('application/json'))
.body_serializer(APIHelper.json_serialize)
.auth(Single('global'))
).response(
ResponseHandler()
.deserializer(APIHelper.json_deserialize)
.is_api_response(True)
.convertor(ApiResponse.create)
).execute()
@deprecated()
def create_customer_card(self,
customer_id,
body):
"""Does a POST request to /v2/customers/{customer_id}/cards.
Adds a card on file to an existing customer.
As with charges, calls to `CreateCustomerCard` are idempotent.
Multiple
calls with the same card nonce return the same card record that was
created
with the provided nonce during the _first_ call.
Args:
customer_id (str): The Square ID of the customer profile the card
is linked to.
body (CreateCustomerCardRequest): An object containing the fields
to POST for the request. See the corresponding object
definition for field details.
Returns:
ApiResponse: An object with the response value as well as other
useful information such as status codes and headers. Success
Raises:
APIException: When an error occurs while fetching the data from
the remote API. This exception includes the HTTP Response
code, an error message, and the HTTP body that was received in
the request.
"""
return super().new_api_call_builder.request(
RequestBuilder().server('default')
.path('/v2/customers/{customer_id}/cards')
.http_method(HttpMethodEnum.POST)
.template_param(Parameter()
.key('customer_id')
.value(customer_id)
.should_encode(True))
.header_param(Parameter()
.key('Content-Type')
.value('application/json'))
.body_param(Parameter()
.value(body))
.header_param(Parameter()
.key('accept')
.value('application/json'))
.body_serializer(APIHelper.json_serialize)
.auth(Single('global'))
).response(
ResponseHandler()
.deserializer(APIHelper.json_deserialize)
.is_api_response(True)
.convertor(ApiResponse.create)
).execute()
@deprecated()
def delete_customer_card(self,
customer_id,
card_id):
"""Does a DELETE request to /v2/customers/{customer_id}/cards/{card_id}.
Removes a card on file from a customer.
Args:
customer_id (str): The ID of the customer that the card on file
belongs to.
card_id (str): The ID of the card on file to delete.
Returns:
ApiResponse: An object with the response value as well as other
useful information such as status codes and headers. Success
Raises:
APIException: When an error occurs while fetching the data from
the remote API. This exception includes the HTTP Response
code, an error message, and the HTTP body that was received in
the request.
"""
return super().new_api_call_builder.request(
RequestBuilder().server('default')
.path('/v2/customers/{customer_id}/cards/{card_id}')
.http_method(HttpMethodEnum.DELETE)
.template_param(Parameter()
.key('customer_id')
.value(customer_id)
.should_encode(True))
.template_param(Parameter()
.key('card_id')
.value(card_id)
.should_encode(True))
.header_param(Parameter()
.key('accept')
.value('application/json'))
.auth(Single('global'))
).response(
ResponseHandler()
.deserializer(APIHelper.json_deserialize)
.is_api_response(True)
.convertor(ApiResponse.create)
).execute()
def remove_group_from_customer(self,
customer_id,
group_id):
"""Does a DELETE request to /v2/customers/{customer_id}/groups/{group_id}.
Removes a group membership from a customer.
The customer is identified by the `customer_id` value
and the customer group is identified by the `group_id` value.
Args:
customer_id (str): The ID of the customer to remove from the
group.
group_id (str): The ID of the customer group to remove the
customer from.
Returns:
ApiResponse: An object with the response value as well as other
useful information such as status codes and headers. Success
Raises:
APIException: When an error occurs while fetching the data from
the remote API. This exception includes the HTTP Response
code, an error message, and the HTTP body that was received in
the request.
"""
return super().new_api_call_builder.request(
RequestBuilder().server('default')
.path('/v2/customers/{customer_id}/groups/{group_id}')
.http_method(HttpMethodEnum.DELETE)
.template_param(Parameter()
.key('customer_id')
.value(customer_id)
.should_encode(True))
.template_param(Parameter()
.key('group_id')
.value(group_id)
.should_encode(True))
.header_param(Parameter()
.key('accept')
.value('application/json'))
.auth(Single('global'))
).response(
ResponseHandler()
.deserializer(APIHelper.json_deserialize)
.is_api_response(True)
.convertor(ApiResponse.create)
).execute()
def add_group_to_customer(self,
customer_id,
group_id):
"""Does a PUT request to /v2/customers/{customer_id}/groups/{group_id}.
Adds a group membership to a customer.
The customer is identified by the `customer_id` value
and the customer group is identified by the `group_id` value.
Args:
customer_id (str): The ID of the customer to add to a group.
group_id (str): The ID of the customer group to add the customer
to.
Returns:
ApiResponse: An object with the response value as well as other
useful information such as status codes and headers. Success
Raises:
APIException: When an error occurs while fetching the data from
the remote API. This exception includes the HTTP Response
code, an error message, and the HTTP body that was received in
the request.
"""
return super().new_api_call_builder.request(
RequestBuilder().server('default')
.path('/v2/customers/{customer_id}/groups/{group_id}')
.http_method(HttpMethodEnum.PUT)
.template_param(Parameter()
.key('customer_id')
.value(customer_id)
.should_encode(True))
.template_param(Parameter()
.key('group_id')
.value(group_id)
.should_encode(True))
.header_param(Parameter()
.key('accept')
.value('application/json'))
.auth(Single('global'))
).response(
ResponseHandler()
.deserializer(APIHelper.json_deserialize)
.is_api_response(True)
.convertor(ApiResponse.create)
).execute()