square_connect 2.0.2.69 → 2.1.0.beta

Sign up to get free protection for your applications and to get access to all the features.
Files changed (231) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +133 -21
  3. data/docs/ChargeRequest.md +1 -1
  4. data/docs/CheckoutApi.md +8 -6
  5. data/docs/CustomersApi.md +389 -0
  6. data/docs/Device.md +11 -0
  7. data/docs/LocationsApi.md +55 -0
  8. data/docs/TransactionsApi.md +417 -0
  9. data/docs/V1AdjustInventoryRequest.md +12 -0
  10. data/docs/V1BankAccount.md +17 -0
  11. data/docs/V1CashDrawerEvent.md +15 -0
  12. data/docs/V1CashDrawerShift.md +28 -0
  13. data/docs/V1Category.md +11 -0
  14. data/docs/V1CreateRefundRequest.md +14 -0
  15. data/docs/V1Discount.md +16 -0
  16. data/docs/V1Employee.md +21 -0
  17. data/docs/V1EmployeeRole.md +15 -0
  18. data/docs/V1EmployeesApi.md +915 -0
  19. data/docs/V1Fee.md +18 -0
  20. data/docs/V1InventoryEntry.md +11 -0
  21. data/docs/V1Item.md +23 -0
  22. data/docs/V1ItemImage.md +11 -0
  23. data/docs/V1ItemsApi.md +2297 -0
  24. data/docs/V1LocationApi.md +102 -0
  25. data/docs/V1LocationsApi.md +102 -0
  26. data/docs/V1Merchant.md +26 -0
  27. data/docs/V1MerchantLocationDetails.md +12 -0
  28. data/docs/V1ModifierList.md +13 -0
  29. data/docs/V1ModifierOption.md +15 -0
  30. data/docs/V1Money.md +13 -0
  31. data/docs/V1Order.md +34 -0
  32. data/docs/V1OrderHistoryEntry.md +11 -0
  33. data/docs/V1Page.md +13 -0
  34. data/docs/V1PageCell.md +15 -0
  35. data/docs/V1Payment.md +33 -0
  36. data/docs/V1PaymentDiscount.md +12 -0
  37. data/docs/V1PaymentItemDetail.md +13 -0
  38. data/docs/V1PaymentItemization.md +23 -0
  39. data/docs/V1PaymentModifier.md +12 -0
  40. data/docs/V1PaymentTax.md +15 -0
  41. data/docs/V1PhoneNumber.md +13 -0
  42. data/docs/V1Refund.md +16 -0
  43. data/docs/V1Settlement.md +15 -0
  44. data/docs/V1SettlementEntry.md +13 -0
  45. data/docs/V1Tender.md +22 -0
  46. data/docs/V1Timecard.md +20 -0
  47. data/docs/V1TimecardEvent.md +14 -0
  48. data/docs/V1TransactionsApi.md +650 -0
  49. data/docs/V1UpdateModifierListRequest.md +11 -0
  50. data/docs/V1UpdateOrderRequest.md +14 -0
  51. data/docs/V1Variation.md +20 -0
  52. data/lib/.DS_Store +0 -0
  53. data/lib/square_connect.rb +46 -5
  54. data/lib/square_connect/.DS_Store +0 -0
  55. data/lib/square_connect/api/checkout_api.rb +4 -9
  56. data/lib/square_connect/api/{customer_api.rb → customers_api.rb} +150 -61
  57. data/lib/square_connect/api/{location_api.rb → locations_api.rb} +7 -12
  58. data/lib/square_connect/api/{transaction_api.rb → transactions_api.rb} +169 -65
  59. data/lib/square_connect/api/v1_employees_api.rb +974 -0
  60. data/lib/square_connect/api/v1_items_api.rb +2365 -0
  61. data/lib/square_connect/api/v1_locations_api.rb +118 -0
  62. data/lib/square_connect/api/v1_transactions_api.rb +707 -0
  63. data/lib/square_connect/api_client.rb +1 -1
  64. data/lib/square_connect/models/charge_request.rb +1 -1
  65. data/lib/square_connect/models/device.rb +196 -0
  66. data/lib/square_connect/models/v1_adjust_inventory_request.rb +206 -0
  67. data/lib/square_connect/models/v1_bank_account.rb +289 -0
  68. data/lib/square_connect/models/v1_cash_drawer_event.rb +269 -0
  69. data/lib/square_connect/models/v1_cash_drawer_shift.rb +403 -0
  70. data/lib/square_connect/models/v1_category.rb +196 -0
  71. data/lib/square_connect/models/v1_create_refund_request.rb +274 -0
  72. data/lib/square_connect/models/v1_discount.rb +291 -0
  73. data/lib/square_connect/models/v1_employee.rb +323 -0
  74. data/lib/square_connect/models/v1_employee_role.rb +269 -0
  75. data/lib/square_connect/models/v1_fee.rb +335 -0
  76. data/lib/square_connect/models/v1_inventory_entry.rb +196 -0
  77. data/lib/square_connect/models/v1_item.rb +379 -0
  78. data/lib/square_connect/models/v1_item_image.rb +196 -0
  79. data/lib/square_connect/models/v1_merchant.rb +372 -0
  80. data/lib/square_connect/models/v1_merchant_location_details.rb +186 -0
  81. data/lib/square_connect/models/v1_modifier_list.rb +251 -0
  82. data/lib/square_connect/models/v1_modifier_option.rb +236 -0
  83. data/lib/square_connect/models/v1_money.rb +229 -0
  84. data/lib/square_connect/models/v1_order.rb +463 -0
  85. data/lib/square_connect/models/v1_order_history_entry.rb +229 -0
  86. data/lib/square_connect/models/v1_page.rb +218 -0
  87. data/lib/square_connect/models/v1_page_cell.rb +261 -0
  88. data/lib/square_connect/models/v1_payment.rb +423 -0
  89. data/lib/square_connect/models/v1_payment_discount.rb +206 -0
  90. data/lib/square_connect/models/v1_payment_item_detail.rb +216 -0
  91. data/lib/square_connect/models/v1_payment_itemization.rb +355 -0
  92. data/lib/square_connect/models/v1_payment_modifier.rb +206 -0
  93. data/lib/square_connect/models/v1_payment_tax.rb +271 -0
  94. data/lib/square_connect/models/v1_phone_number.rb +206 -0
  95. data/lib/square_connect/models/v1_refund.rb +279 -0
  96. data/lib/square_connect/models/v1_settlement.rb +271 -0
  97. data/lib/square_connect/models/v1_settlement_entry.rb +249 -0
  98. data/lib/square_connect/models/v1_tender.rb +363 -0
  99. data/lib/square_connect/models/v1_timecard.rb +271 -0
  100. data/lib/square_connect/models/v1_timecard_event.rb +259 -0
  101. data/lib/square_connect/models/v1_update_modifier_list_request.rb +229 -0
  102. data/lib/square_connect/models/v1_update_order_request.rb +264 -0
  103. data/lib/square_connect/models/v1_variation.rb +331 -0
  104. data/lib/square_connect/version.rb +1 -1
  105. data/spec/.DS_Store +0 -0
  106. data/spec/api/checkout_api_spec.rb +4 -12
  107. data/spec/api/{customer_api_spec.rb → customers_api_spec.rb} +39 -41
  108. data/spec/api/{location_api_spec.rb → locations_api_spec.rb} +9 -15
  109. data/spec/api/{transaction_api_spec.rb → transactions_api_spec.rb} +43 -41
  110. data/spec/api/v1_employees_api_spec.rb +250 -0
  111. data/spec/api/v1_items_api_spec.rb +568 -0
  112. data/spec/api/v1_locations_api_spec.rb +54 -0
  113. data/spec/api/v1_transactions_api_spec.rb +186 -0
  114. data/spec/models/address_spec.rb +22 -81
  115. data/spec/models/capture_transaction_request_spec.rb +3 -6
  116. data/spec/models/capture_transaction_response_spec.rb +4 -11
  117. data/spec/models/card_brand_spec.rb +3 -6
  118. data/spec/models/card_spec.rb +14 -41
  119. data/spec/models/charge_request_spec.rb +14 -61
  120. data/spec/models/charge_response_spec.rb +5 -16
  121. data/spec/models/checkout_spec.rb +12 -51
  122. data/spec/models/country_spec.rb +3 -6
  123. data/spec/models/create_checkout_request_spec.rb +10 -41
  124. data/spec/models/create_checkout_response_spec.rb +5 -16
  125. data/spec/models/create_customer_card_request_spec.rb +6 -21
  126. data/spec/models/create_customer_card_response_spec.rb +5 -16
  127. data/spec/models/create_customer_request_spec.rb +12 -51
  128. data/spec/models/create_customer_response_spec.rb +5 -16
  129. data/spec/models/create_order_request_line_item_spec.rb +6 -21
  130. data/spec/models/create_order_request_order_spec.rb +5 -16
  131. data/spec/models/create_order_request_spec.rb +5 -16
  132. data/spec/models/create_refund_request_spec.rb +7 -26
  133. data/spec/models/create_refund_response_spec.rb +5 -16
  134. data/spec/models/currency_spec.rb +3 -6
  135. data/spec/models/customer_group_info_spec.rb +5 -16
  136. data/spec/models/customer_preferences_spec.rb +4 -11
  137. data/spec/models/customer_spec.rb +18 -81
  138. data/spec/models/delete_customer_card_request_spec.rb +3 -6
  139. data/spec/models/delete_customer_card_response_spec.rb +4 -11
  140. data/spec/models/delete_customer_request_spec.rb +3 -6
  141. data/spec/models/delete_customer_response_spec.rb +4 -11
  142. data/spec/models/device_spec.rb +45 -0
  143. data/spec/models/error_category_spec.rb +3 -6
  144. data/spec/models/error_code_spec.rb +3 -6
  145. data/spec/models/error_spec.rb +15 -26
  146. data/spec/models/list_customers_request_spec.rb +4 -11
  147. data/spec/models/list_customers_response_spec.rb +6 -21
  148. data/spec/models/list_locations_request_spec.rb +3 -6
  149. data/spec/models/list_locations_response_spec.rb +5 -16
  150. data/spec/models/list_refunds_request_spec.rb +11 -26
  151. data/spec/models/list_refunds_response_spec.rb +6 -21
  152. data/spec/models/list_transactions_request_spec.rb +11 -26
  153. data/spec/models/list_transactions_response_spec.rb +6 -21
  154. data/spec/models/location_capability_spec.rb +3 -6
  155. data/spec/models/location_spec.rb +12 -31
  156. data/spec/models/money_spec.rb +9 -16
  157. data/spec/models/order_line_item_spec.rb +8 -31
  158. data/spec/models/order_spec.rb +8 -31
  159. data/spec/models/refund_spec.rb +16 -51
  160. data/spec/models/refund_status_spec.rb +3 -6
  161. data/spec/models/retrieve_customer_request_spec.rb +3 -6
  162. data/spec/models/retrieve_customer_response_spec.rb +5 -16
  163. data/spec/models/retrieve_transaction_request_spec.rb +3 -6
  164. data/spec/models/retrieve_transaction_response_spec.rb +5 -16
  165. data/spec/models/sort_order_spec.rb +3 -6
  166. data/spec/models/tender_card_details_entry_method_spec.rb +3 -6
  167. data/spec/models/tender_card_details_spec.rb +14 -21
  168. data/spec/models/tender_card_details_status_spec.rb +3 -6
  169. data/spec/models/tender_cash_details_spec.rb +5 -16
  170. data/spec/models/tender_spec.rb +18 -61
  171. data/spec/models/tender_type_spec.rb +3 -6
  172. data/spec/models/transaction_product_spec.rb +3 -6
  173. data/spec/models/transaction_spec.rb +17 -56
  174. data/spec/models/update_customer_request_spec.rb +12 -51
  175. data/spec/models/update_customer_response_spec.rb +5 -16
  176. data/spec/models/v1_adjust_inventory_request_spec.rb +51 -0
  177. data/spec/models/v1_bank_account_spec.rb +85 -0
  178. data/spec/models/v1_cash_drawer_event_spec.rb +73 -0
  179. data/spec/models/v1_cash_drawer_shift_spec.rb +151 -0
  180. data/spec/models/v1_category_spec.rb +45 -0
  181. data/spec/models/v1_create_refund_request_spec.rb +67 -0
  182. data/spec/models/v1_discount_spec.rb +83 -0
  183. data/spec/models/v1_employee_role_spec.rb +73 -0
  184. data/spec/models/v1_employee_spec.rb +97 -0
  185. data/spec/models/v1_fee_spec.rb +103 -0
  186. data/spec/models/v1_inventory_entry_spec.rb +45 -0
  187. data/spec/models/v1_item_image_spec.rb +45 -0
  188. data/spec/models/v1_item_spec.rb +129 -0
  189. data/spec/models/v1_merchant_location_details_spec.rb +39 -0
  190. data/spec/models/v1_merchant_spec.rb +131 -0
  191. data/spec/models/v1_modifier_list_spec.rb +61 -0
  192. data/spec/models/v1_modifier_option_spec.rb +69 -0
  193. data/spec/models/v1_money_spec.rb +49 -0
  194. data/spec/models/v1_order_history_entry_spec.rb +49 -0
  195. data/spec/models/v1_order_spec.rb +187 -0
  196. data/spec/models/v1_page_cell_spec.rb +77 -0
  197. data/spec/models/v1_page_spec.rb +57 -0
  198. data/spec/models/v1_payment_discount_spec.rb +51 -0
  199. data/spec/models/v1_payment_item_detail_spec.rb +57 -0
  200. data/spec/models/v1_payment_itemization_spec.rb +121 -0
  201. data/spec/models/v1_payment_modifier_spec.rb +51 -0
  202. data/spec/models/v1_payment_spec.rb +177 -0
  203. data/spec/models/v1_payment_tax_spec.rb +73 -0
  204. data/spec/models/v1_phone_number_spec.rb +45 -0
  205. data/spec/models/v1_refund_spec.rb +79 -0
  206. data/spec/models/v1_settlement_entry_spec.rb +61 -0
  207. data/spec/models/v1_settlement_spec.rb +73 -0
  208. data/spec/models/v1_tender_spec.rb +123 -0
  209. data/spec/models/v1_timecard_event_spec.rb +67 -0
  210. data/spec/models/v1_timecard_spec.rb +87 -0
  211. data/spec/models/v1_update_modifier_list_request_spec.rb +49 -0
  212. data/spec/models/v1_update_order_request_spec.rb +67 -0
  213. data/spec/models/v1_variation_spec.rb +107 -0
  214. data/spec/models/void_transaction_request_spec.rb +3 -6
  215. data/spec/models/void_transaction_response_spec.rb +4 -11
  216. data/spec/spec_helper.rb +10 -0
  217. data/square_connect-2.0.2.gem +0 -0
  218. data/square_connect-2.1.0.gem +0 -0
  219. data/square_connect-2.1.0beta.gem +0 -0
  220. data/square_connect.gemspec +1 -1
  221. data/travis-ci/accounts.enc +0 -0
  222. metadata +197 -26
  223. data/docs/CustomerApi.md +0 -267
  224. data/docs/CustomerCardApi.md +0 -116
  225. data/docs/LocationApi.md +0 -56
  226. data/docs/RefundApi.md +0 -126
  227. data/docs/TransactionApi.md +0 -285
  228. data/lib/square_connect/api/customer_card_api.rb +0 -144
  229. data/lib/square_connect/api/refund_api.rb +0 -159
  230. data/spec/api/customer_card_api_spec.rb +0 -71
  231. data/spec/api/refund_api_spec.rb +0 -75
data/docs/CustomerApi.md DELETED
@@ -1,267 +0,0 @@
1
- # SquareConnect::CustomerApi
2
-
3
- All URIs are relative to *https://connect.squareup.com*
4
-
5
- Method | HTTP request | Description
6
- ------------- | ------------- | -------------
7
- [**create_customer**](CustomerApi.md#create_customer) | **POST** /v2/customers | CreateCustomer
8
- [**delete_customer**](CustomerApi.md#delete_customer) | **DELETE** /v2/customers/{customer_id} | DeleteCustomer
9
- [**list_customers**](CustomerApi.md#list_customers) | **GET** /v2/customers | ListCustomers
10
- [**retrieve_customer**](CustomerApi.md#retrieve_customer) | **GET** /v2/customers/{customer_id} | RetrieveCustomer
11
- [**update_customer**](CustomerApi.md#update_customer) | **PUT** /v2/customers/{customer_id} | UpdateCustomer
12
-
13
-
14
- # **create_customer**
15
- > CreateCustomerResponse create_customer(authorization, body)
16
-
17
- CreateCustomer
18
-
19
- Creates a new customer for a business, which can have associated cards on file. 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` This endpoint does not accept an idempotency key. If you accidentally create a duplicate customer, you can delete it with the [DeleteCustomer](#endpoint-deletecustomer) endpoint.
20
-
21
- ### Example
22
- ```ruby
23
- # load the gem
24
- require 'square_connect'
25
-
26
- api_instance = SquareConnect::CustomerApi.new
27
-
28
- authorization = "authorization_example" # String | The value to provide in the Authorization header of your request. This value should follow the format `Bearer YOUR_ACCESS_TOKEN_HERE`.
29
-
30
- body = SquareConnect::CreateCustomerRequest.new # CreateCustomerRequest | An object containing the fields to POST for the request. See the corresponding object definition for field details.
31
-
32
-
33
- begin
34
- #CreateCustomer
35
- result = api_instance.create_customer(authorization, body)
36
- p result
37
- rescue SquareConnect::ApiError => e
38
- puts "Exception when calling CustomerApi->create_customer: #{e}"
39
- end
40
- ```
41
-
42
- ### Parameters
43
-
44
- Name | Type | Description | Notes
45
- ------------- | ------------- | ------------- | -------------
46
- **authorization** | **String**| The value to provide in the Authorization header of your request. This value should follow the format `Bearer YOUR_ACCESS_TOKEN_HERE`. |
47
- **body** | [**CreateCustomerRequest**](CreateCustomerRequest.md)| An object containing the fields to POST for the request. See the corresponding object definition for field details. |
48
-
49
- ### Return type
50
-
51
- [**CreateCustomerResponse**](CreateCustomerResponse.md)
52
-
53
- ### Authorization
54
-
55
- No authorization required
56
-
57
- ### HTTP request headers
58
-
59
- - **Content-Type**: application/json
60
- - **Accept**: application/json
61
-
62
-
63
-
64
- # **delete_customer**
65
- > DeleteCustomerResponse delete_customer(authorization, customer_id)
66
-
67
- DeleteCustomer
68
-
69
- Deletes a customer from a business, along with any linked cards on file.
70
-
71
- ### Example
72
- ```ruby
73
- # load the gem
74
- require 'square_connect'
75
-
76
- api_instance = SquareConnect::CustomerApi.new
77
-
78
- authorization = "authorization_example" # String | The value to provide in the Authorization header of your request. This value should follow the format `Bearer YOUR_ACCESS_TOKEN_HERE`.
79
-
80
- customer_id = "customer_id_example" # String | The ID of the customer to delete.
81
-
82
-
83
- begin
84
- #DeleteCustomer
85
- result = api_instance.delete_customer(authorization, customer_id)
86
- p result
87
- rescue SquareConnect::ApiError => e
88
- puts "Exception when calling CustomerApi->delete_customer: #{e}"
89
- end
90
- ```
91
-
92
- ### Parameters
93
-
94
- Name | Type | Description | Notes
95
- ------------- | ------------- | ------------- | -------------
96
- **authorization** | **String**| The value to provide in the Authorization header of your request. This value should follow the format `Bearer YOUR_ACCESS_TOKEN_HERE`. |
97
- **customer_id** | **String**| The ID of the customer to delete. |
98
-
99
- ### Return type
100
-
101
- [**DeleteCustomerResponse**](DeleteCustomerResponse.md)
102
-
103
- ### Authorization
104
-
105
- No authorization required
106
-
107
- ### HTTP request headers
108
-
109
- - **Content-Type**: application/json
110
- - **Accept**: application/json
111
-
112
-
113
-
114
- # **list_customers**
115
- > ListCustomersResponse list_customers(authorization, opts)
116
-
117
- ListCustomers
118
-
119
- Lists a business's customers.
120
-
121
- ### Example
122
- ```ruby
123
- # load the gem
124
- require 'square_connect'
125
-
126
- api_instance = SquareConnect::CustomerApi.new
127
-
128
- authorization = "authorization_example" # String | The value to provide in the Authorization header of your request. This value should follow the format `Bearer YOUR_ACCESS_TOKEN_HERE`.
129
-
130
- opts = {
131
- 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.
132
- }
133
-
134
- begin
135
- #ListCustomers
136
- result = api_instance.list_customers(authorization, opts)
137
- p result
138
- rescue SquareConnect::ApiError => e
139
- puts "Exception when calling CustomerApi->list_customers: #{e}"
140
- end
141
- ```
142
-
143
- ### Parameters
144
-
145
- Name | Type | Description | Notes
146
- ------------- | ------------- | ------------- | -------------
147
- **authorization** | **String**| The value to provide in the Authorization header of your request. This value should follow the format `Bearer YOUR_ACCESS_TOKEN_HERE`. |
148
- **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]
149
-
150
- ### Return type
151
-
152
- [**ListCustomersResponse**](ListCustomersResponse.md)
153
-
154
- ### Authorization
155
-
156
- No authorization required
157
-
158
- ### HTTP request headers
159
-
160
- - **Content-Type**: application/json
161
- - **Accept**: application/json
162
-
163
-
164
-
165
- # **retrieve_customer**
166
- > RetrieveCustomerResponse retrieve_customer(authorization, customer_id)
167
-
168
- RetrieveCustomer
169
-
170
- Returns details for a single customer.
171
-
172
- ### Example
173
- ```ruby
174
- # load the gem
175
- require 'square_connect'
176
-
177
- api_instance = SquareConnect::CustomerApi.new
178
-
179
- authorization = "authorization_example" # String | The value to provide in the Authorization header of your request. This value should follow the format `Bearer YOUR_ACCESS_TOKEN_HERE`.
180
-
181
- customer_id = "customer_id_example" # String | The ID of the customer to retrieve.
182
-
183
-
184
- begin
185
- #RetrieveCustomer
186
- result = api_instance.retrieve_customer(authorization, customer_id)
187
- p result
188
- rescue SquareConnect::ApiError => e
189
- puts "Exception when calling CustomerApi->retrieve_customer: #{e}"
190
- end
191
- ```
192
-
193
- ### Parameters
194
-
195
- Name | Type | Description | Notes
196
- ------------- | ------------- | ------------- | -------------
197
- **authorization** | **String**| The value to provide in the Authorization header of your request. This value should follow the format `Bearer YOUR_ACCESS_TOKEN_HERE`. |
198
- **customer_id** | **String**| The ID of the customer to retrieve. |
199
-
200
- ### Return type
201
-
202
- [**RetrieveCustomerResponse**](RetrieveCustomerResponse.md)
203
-
204
- ### Authorization
205
-
206
- No authorization required
207
-
208
- ### HTTP request headers
209
-
210
- - **Content-Type**: application/json
211
- - **Accept**: application/json
212
-
213
-
214
-
215
- # **update_customer**
216
- > UpdateCustomerResponse update_customer(authorization, customer_id, body)
217
-
218
- UpdateCustomer
219
-
220
- Updates the details of an existing customer. You cannot edit a customer's cards on file with this endpoint. To make changes to a card on file, you must delete the existing card on file with the [DeleteCustomerCard](#endpoint-deletecustomercard) endpoint, then create a new one with the [CreateCustomerCard](#endpoint-createcustomercard) endpoint.
221
-
222
- ### Example
223
- ```ruby
224
- # load the gem
225
- require 'square_connect'
226
-
227
- api_instance = SquareConnect::CustomerApi.new
228
-
229
- authorization = "authorization_example" # String | The value to provide in the Authorization header of your request. This value should follow the format `Bearer YOUR_ACCESS_TOKEN_HERE`.
230
-
231
- customer_id = "customer_id_example" # String | The ID of the customer to update.
232
-
233
- body = SquareConnect::UpdateCustomerRequest.new # UpdateCustomerRequest | An object containing the fields to POST for the request. See the corresponding object definition for field details.
234
-
235
-
236
- begin
237
- #UpdateCustomer
238
- result = api_instance.update_customer(authorization, customer_id, body)
239
- p result
240
- rescue SquareConnect::ApiError => e
241
- puts "Exception when calling CustomerApi->update_customer: #{e}"
242
- end
243
- ```
244
-
245
- ### Parameters
246
-
247
- Name | Type | Description | Notes
248
- ------------- | ------------- | ------------- | -------------
249
- **authorization** | **String**| The value to provide in the Authorization header of your request. This value should follow the format `Bearer YOUR_ACCESS_TOKEN_HERE`. |
250
- **customer_id** | **String**| The ID of the customer to update. |
251
- **body** | [**UpdateCustomerRequest**](UpdateCustomerRequest.md)| An object containing the fields to POST for the request. See the corresponding object definition for field details. |
252
-
253
- ### Return type
254
-
255
- [**UpdateCustomerResponse**](UpdateCustomerResponse.md)
256
-
257
- ### Authorization
258
-
259
- No authorization required
260
-
261
- ### HTTP request headers
262
-
263
- - **Content-Type**: application/json
264
- - **Accept**: application/json
265
-
266
-
267
-
@@ -1,116 +0,0 @@
1
- # SquareConnect::CustomerCardApi
2
-
3
- All URIs are relative to *https://connect.squareup.com*
4
-
5
- Method | HTTP request | Description
6
- ------------- | ------------- | -------------
7
- [**create_customer_card**](CustomerCardApi.md#create_customer_card) | **POST** /v2/customers/{customer_id}/cards | CreateCustomerCard
8
- [**delete_customer_card**](CustomerCardApi.md#delete_customer_card) | **DELETE** /v2/customers/{customer_id}/cards/{card_id} | DeleteCustomerCard
9
-
10
-
11
- # **create_customer_card**
12
- > CreateCustomerCardResponse create_customer_card(authorization, customer_id, body)
13
-
14
- CreateCustomerCard
15
-
16
- Adds a card on file to an existing customer.
17
-
18
- ### Example
19
- ```ruby
20
- # load the gem
21
- require 'square_connect'
22
-
23
- api_instance = SquareConnect::CustomerCardApi.new
24
-
25
- authorization = "authorization_example" # String | The value to provide in the Authorization header of your request. This value should follow the format `Bearer YOUR_ACCESS_TOKEN_HERE`.
26
-
27
- customer_id = "customer_id_example" # String | The ID of the customer to link the card on file to.
28
-
29
- body = SquareConnect::CreateCustomerCardRequest.new # CreateCustomerCardRequest | An object containing the fields to POST for the request. See the corresponding object definition for field details.
30
-
31
-
32
- begin
33
- #CreateCustomerCard
34
- result = api_instance.create_customer_card(authorization, customer_id, body)
35
- p result
36
- rescue SquareConnect::ApiError => e
37
- puts "Exception when calling CustomerCardApi->create_customer_card: #{e}"
38
- end
39
- ```
40
-
41
- ### Parameters
42
-
43
- Name | Type | Description | Notes
44
- ------------- | ------------- | ------------- | -------------
45
- **authorization** | **String**| The value to provide in the Authorization header of your request. This value should follow the format `Bearer YOUR_ACCESS_TOKEN_HERE`. |
46
- **customer_id** | **String**| The ID of the customer to link the card on file to. |
47
- **body** | [**CreateCustomerCardRequest**](CreateCustomerCardRequest.md)| An object containing the fields to POST for the request. See the corresponding object definition for field details. |
48
-
49
- ### Return type
50
-
51
- [**CreateCustomerCardResponse**](CreateCustomerCardResponse.md)
52
-
53
- ### Authorization
54
-
55
- No authorization required
56
-
57
- ### HTTP request headers
58
-
59
- - **Content-Type**: application/json
60
- - **Accept**: application/json
61
-
62
-
63
-
64
- # **delete_customer_card**
65
- > DeleteCustomerCardResponse delete_customer_card(authorization, customer_id, card_id)
66
-
67
- DeleteCustomerCard
68
-
69
- Removes a card on file from a customer.
70
-
71
- ### Example
72
- ```ruby
73
- # load the gem
74
- require 'square_connect'
75
-
76
- api_instance = SquareConnect::CustomerCardApi.new
77
-
78
- authorization = "authorization_example" # String | The value to provide in the Authorization header of your request. This value should follow the format `Bearer YOUR_ACCESS_TOKEN_HERE`.
79
-
80
- customer_id = "customer_id_example" # String | The ID of the customer that the card on file belongs to.
81
-
82
- card_id = "card_id_example" # String | The ID of the card on file to delete.
83
-
84
-
85
- begin
86
- #DeleteCustomerCard
87
- result = api_instance.delete_customer_card(authorization, customer_id, card_id)
88
- p result
89
- rescue SquareConnect::ApiError => e
90
- puts "Exception when calling CustomerCardApi->delete_customer_card: #{e}"
91
- end
92
- ```
93
-
94
- ### Parameters
95
-
96
- Name | Type | Description | Notes
97
- ------------- | ------------- | ------------- | -------------
98
- **authorization** | **String**| The value to provide in the Authorization header of your request. This value should follow the format `Bearer YOUR_ACCESS_TOKEN_HERE`. |
99
- **customer_id** | **String**| The ID of the customer that the card on file belongs to. |
100
- **card_id** | **String**| The ID of the card on file to delete. |
101
-
102
- ### Return type
103
-
104
- [**DeleteCustomerCardResponse**](DeleteCustomerCardResponse.md)
105
-
106
- ### Authorization
107
-
108
- No authorization required
109
-
110
- ### HTTP request headers
111
-
112
- - **Content-Type**: application/json
113
- - **Accept**: application/json
114
-
115
-
116
-
data/docs/LocationApi.md DELETED
@@ -1,56 +0,0 @@
1
- # SquareConnect::LocationApi
2
-
3
- All URIs are relative to *https://connect.squareup.com*
4
-
5
- Method | HTTP request | Description
6
- ------------- | ------------- | -------------
7
- [**list_locations**](LocationApi.md#list_locations) | **GET** /v2/locations | ListLocations
8
-
9
-
10
- # **list_locations**
11
- > ListLocationsResponse list_locations(authorization)
12
-
13
- ListLocations
14
-
15
- Provides the details for all of a business's locations. Most other Connect API endpoints have a required `location_id` path parameter. The `id` field of the [`Location`](#type-location) objects returned by this endpoint correspond to that `location_id` parameter.
16
-
17
- ### Example
18
- ```ruby
19
- # load the gem
20
- require 'square_connect'
21
-
22
- api_instance = SquareConnect::LocationApi.new
23
-
24
- authorization = "authorization_example" # String | The value to provide in the Authorization header of your request. This value should follow the format `Bearer YOUR_ACCESS_TOKEN_HERE`.
25
-
26
-
27
- begin
28
- #ListLocations
29
- result = api_instance.list_locations(authorization)
30
- p result
31
- rescue SquareConnect::ApiError => e
32
- puts "Exception when calling LocationApi->list_locations: #{e}"
33
- end
34
- ```
35
-
36
- ### Parameters
37
-
38
- Name | Type | Description | Notes
39
- ------------- | ------------- | ------------- | -------------
40
- **authorization** | **String**| The value to provide in the Authorization header of your request. This value should follow the format `Bearer YOUR_ACCESS_TOKEN_HERE`. |
41
-
42
- ### Return type
43
-
44
- [**ListLocationsResponse**](ListLocationsResponse.md)
45
-
46
- ### Authorization
47
-
48
- No authorization required
49
-
50
- ### HTTP request headers
51
-
52
- - **Content-Type**: application/json
53
- - **Accept**: application/json
54
-
55
-
56
-
data/docs/RefundApi.md DELETED
@@ -1,126 +0,0 @@
1
- # SquareConnect::RefundApi
2
-
3
- All URIs are relative to *https://connect.squareup.com*
4
-
5
- Method | HTTP request | Description
6
- ------------- | ------------- | -------------
7
- [**create_refund**](RefundApi.md#create_refund) | **POST** /v2/locations/{location_id}/transactions/{transaction_id}/refund | CreateRefund
8
- [**list_refunds**](RefundApi.md#list_refunds) | **GET** /v2/locations/{location_id}/refunds | ListRefunds
9
-
10
-
11
- # **create_refund**
12
- > CreateRefundResponse create_refund(authorization, location_id, transaction_id, body)
13
-
14
- CreateRefund
15
-
16
- Initiates a refund for a previously charged tender.
17
-
18
- ### Example
19
- ```ruby
20
- # load the gem
21
- require 'square_connect'
22
-
23
- api_instance = SquareConnect::RefundApi.new
24
-
25
- authorization = "authorization_example" # String | The value to provide in the Authorization header of your request. This value should follow the format `Bearer YOUR_ACCESS_TOKEN_HERE`.
26
-
27
- location_id = "location_id_example" # String | The ID of the original transaction's associated location.
28
-
29
- transaction_id = "transaction_id_example" # String | The ID of the original transaction that includes the tender to refund.
30
-
31
- body = SquareConnect::CreateRefundRequest.new # CreateRefundRequest | An object containing the fields to POST for the request. See the corresponding object definition for field details.
32
-
33
-
34
- begin
35
- #CreateRefund
36
- result = api_instance.create_refund(authorization, location_id, transaction_id, body)
37
- p result
38
- rescue SquareConnect::ApiError => e
39
- puts "Exception when calling RefundApi->create_refund: #{e}"
40
- end
41
- ```
42
-
43
- ### Parameters
44
-
45
- Name | Type | Description | Notes
46
- ------------- | ------------- | ------------- | -------------
47
- **authorization** | **String**| The value to provide in the Authorization header of your request. This value should follow the format `Bearer YOUR_ACCESS_TOKEN_HERE`. |
48
- **location_id** | **String**| The ID of the original transaction's associated location. |
49
- **transaction_id** | **String**| The ID of the original transaction that includes the tender to refund. |
50
- **body** | [**CreateRefundRequest**](CreateRefundRequest.md)| An object containing the fields to POST for the request. See the corresponding object definition for field details. |
51
-
52
- ### Return type
53
-
54
- [**CreateRefundResponse**](CreateRefundResponse.md)
55
-
56
- ### Authorization
57
-
58
- No authorization required
59
-
60
- ### HTTP request headers
61
-
62
- - **Content-Type**: application/json
63
- - **Accept**: application/json
64
-
65
-
66
-
67
- # **list_refunds**
68
- > ListRefundsResponse list_refunds(authorization, location_id, opts)
69
-
70
- ListRefunds
71
-
72
- Lists refunds for one of a business's locations. Refunds with a `status` of `PENDING` are not currently included in this endpoint's response. Max results per [page](#paginatingresults): 50
73
-
74
- ### Example
75
- ```ruby
76
- # load the gem
77
- require 'square_connect'
78
-
79
- api_instance = SquareConnect::RefundApi.new
80
-
81
- authorization = "authorization_example" # String | The value to provide in the Authorization header of your request. This value should follow the format `Bearer YOUR_ACCESS_TOKEN_HERE`.
82
-
83
- location_id = "location_id_example" # String | The ID of the location to list refunds for.
84
-
85
- opts = {
86
- begin_time: "begin_time_example", # String | The beginning of the requested reporting period, in RFC 3339 format. See [Date ranges](#dateranges) for details on date inclusivity/exclusivity. Default value: The current time minus one year.
87
- end_time: "end_time_example", # String | The end of the requested reporting period, in RFC 3339 format. See [Date ranges](#dateranges) for details on date inclusivity/exclusivity. Default value: The current time.
88
- sort_order: "sort_order_example", # String | The order in which results are listed in the response (`ASC` for oldest first, `DESC` for newest first). Default value: `DESC`
89
- 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.
90
- }
91
-
92
- begin
93
- #ListRefunds
94
- result = api_instance.list_refunds(authorization, location_id, opts)
95
- p result
96
- rescue SquareConnect::ApiError => e
97
- puts "Exception when calling RefundApi->list_refunds: #{e}"
98
- end
99
- ```
100
-
101
- ### Parameters
102
-
103
- Name | Type | Description | Notes
104
- ------------- | ------------- | ------------- | -------------
105
- **authorization** | **String**| The value to provide in the Authorization header of your request. This value should follow the format `Bearer YOUR_ACCESS_TOKEN_HERE`. |
106
- **location_id** | **String**| The ID of the location to list refunds for. |
107
- **begin_time** | **String**| The beginning of the requested reporting period, in RFC 3339 format. See [Date ranges](#dateranges) for details on date inclusivity/exclusivity. Default value: The current time minus one year. | [optional]
108
- **end_time** | **String**| The end of the requested reporting period, in RFC 3339 format. See [Date ranges](#dateranges) for details on date inclusivity/exclusivity. Default value: The current time. | [optional]
109
- **sort_order** | **String**| The order in which results are listed in the response (`ASC` for oldest first, `DESC` for newest first). Default value: `DESC` | [optional]
110
- **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]
111
-
112
- ### Return type
113
-
114
- [**ListRefundsResponse**](ListRefundsResponse.md)
115
-
116
- ### Authorization
117
-
118
- No authorization required
119
-
120
- ### HTTP request headers
121
-
122
- - **Content-Type**: application/json
123
- - **Accept**: application/json
124
-
125
-
126
-