-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathClient.php
353 lines (330 loc) · 9.96 KB
/
Client.php
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
<?php
namespace TaxJar;
class Client extends TaxJar
{
public static function withApiKey($key)
{
return new Client($key);
}
/**
* Get tax categories
* https://developers.taxjar.com/api/reference/?php#get-list-tax-categories
*
* @return object Collection of tax categories.
*/
public function categories()
{
$response = $this->client->get('categories');
return json_decode($response->getBody())->categories;
}
/**
* Get tax rates for a location
* https://developers.taxjar.com/api/?php#show-tax-rates-for-a-location
*
* @param int $zip
* @param array $parameters
*
* @return object Detailed rates for a specific location.
*/
public function ratesForLocation($zip, $parameters = [])
{
$response = $this->client->get('rates/' . $zip, [
'query' => $parameters,
]);
return json_decode($response->getBody())->rate;
}
/**
* Get sales tax for an order
* https://developers.taxjar.com/api/reference/?php#post-calculate-sales-tax-for-an-order
*
* @param array $parameters
*
* @return object Detailed sales tax breakdown for an order.
*/
public function taxForOrder($parameters = [])
{
$response = $this->client->post('taxes', [
'json' => $parameters,
]);
return json_decode($response->getBody())->tax;
}
/**
* List order transactions
* https://developers.taxjar.com/api/reference/?php#get-list-order-transactions
*
* @param array $parameters
*
* @return object Order collection.
*/
public function listOrders($parameters = [])
{
$response = $this->client->get('transactions/orders', [
'query' => $parameters,
]);
return json_decode($response->getBody())->orders;
}
/**
* Show order transaction
* https://developers.taxjar.com/api/reference/?php#get-show-an-order-transaction
*
* @param string $transaction_id
* @param array $parameters
*
* @return object Order object.
*/
public function showOrder($transaction_id, $parameters = [])
{
$response = $this->client->get('transactions/orders/' . $transaction_id, [
'query' => $parameters,
]);
return json_decode($response->getBody())->order;
}
/**
* Create a new order transaction
* https://developers.taxjar.com/api/reference/?php#post-create-an-order-transaction
*
* @param array $parameters
*
* @return object Order object.
*/
public function createOrder($parameters = [])
{
$response = $this->client->post('transactions/orders', [
'json' => $parameters,
]);
return json_decode($response->getBody())->order;
}
/**
* Update an existing order transaction
* https://developers.taxjar.com/api/reference/?php#put-update-an-order-transaction
*
* @param string @transaction_id
* @param array $parameters
*
* @return object Order object.
*/
public function updateOrder($parameters = [])
{
$response = $this->client->put('transactions/orders/' . $parameters['transaction_id'], [
'json' => $parameters,
]);
return json_decode($response->getBody())->order;
}
/**
* Delete an existing order transaction
* https://developers.taxjar.com/api/reference/?php#delete-delete-an-order-transaction
*
* @param string $transaction_id
* @param array $parameters
*
* @return object Order object.
*/
public function deleteOrder($transaction_id, $parameters = [])
{
$response = $this->client->delete('transactions/orders/' . $transaction_id, [
'query' => $parameters,
]);
return json_decode($response->getBody())->order;
}
/**
* List refund transactions
* https://developers.taxjar.com/api/reference/?php#get-list-refund-transactions
*
* @param array $parameters
*
* @return object Refund collection.
*/
public function listRefunds($parameters = [])
{
$response = $this->client->get('transactions/refunds', [
'query' => $parameters,
]);
return json_decode($response->getBody())->refunds;
}
/**
* Show refund transaction
* https://developers.taxjar.com/api/reference/?php#get-show-a-refund-transaction
*
* @param string $transaction_id
* @param array $parameters
*
* @return object Refund object.
*/
public function showRefund($transaction_id, $parameters = [])
{
$response = $this->client->get('transactions/refunds/' . $transaction_id, [
'query' => $parameters,
]);
return json_decode($response->getBody())->refund;
}
/**
* Create a new refund transaction
* https://developers.taxjar.com/api/reference/?php#post-create-a-refund-transaction
*
* @param array $parameters
*
* @return object Order object.
*/
public function createRefund($parameters = [])
{
$response = $this->client->post('transactions/refunds', [
'json' => $parameters,
]);
return json_decode($response->getBody())->refund;
}
/**
* Update an order transaction
* https://developers.taxjar.com/api/reference/?php#put-update-a-refund-transaction
*
* @param array $parameters
*
* @return object Order object.
*/
public function updateRefund($parameters = [])
{
$response = $this->client->put('transactions/refunds/' . $parameters['transaction_id'], [
'json' => $parameters,
]);
return json_decode($response->getBody())->refund;
}
/**
* Delete an existing refund transaction
* https://developers.taxjar.com/api/reference/?php#delete-delete-a-refund-transaction
*
* @param string $transaction_id
* @param array $parameters
*
* @return object Refund object.
*/
public function deleteRefund($transaction_id, $parameters = [])
{
$response = $this->client->delete('transactions/refunds/' . $transaction_id, [
'query' => $parameters,
]);
return json_decode($response->getBody())->refund;
}
/**
* List customers
* https://developers.taxjar.com/api/reference/?php#get-list-customers
*
* @param array $parameters
*
* @return object Customer collection.
*/
public function listCustomers($parameters = [])
{
$response = $this->client->get('customers', [
'query' => $parameters,
]);
return json_decode($response->getBody())->customers;
}
/**
* Show customer
* https://developers.taxjar.com/api/reference/?php#get-show-a-customer
*
* @param integer $customer_id
*
* @return object Customer object.
*/
public function showCustomer($customer_id)
{
$response = $this->client->get('customers/' . $customer_id);
return json_decode($response->getBody())->customer;
}
/**
* Create a new customer
* https://developers.taxjar.com/api/reference/?php#post-create-a-customer
*
* @param array $parameters
*
* @return object Customer object.
*/
public function createCustomer($parameters = [])
{
$response = $this->client->post('customers', [
'json' => $parameters,
]);
return json_decode($response->getBody())->customer;
}
/**
* Update a customer
* https://developers.taxjar.com/api/reference/?php#put-update-a-customer
*
* @param integer @customer_id
* @param array $parameters
*
* @return object Customer object.
*/
public function updateCustomer($parameters = [])
{
$response = $this->client->put('customers/' . $parameters['customer_id'], [
'json' => $parameters,
]);
return json_decode($response->getBody())->customer;
}
/**
* Delete a customer
* https://developers.taxjar.com/api/reference/?php#delete-delete-a-customer
*
* @param integer $customer_id
*
* @return object Customer object.
*/
public function deleteCustomer($customer_id)
{
$response = $this->client->delete('customers/' . $customer_id);
return json_decode($response->getBody())->customer;
}
/**
* Get nexus regions
* https://developers.taxjar.com/api/reference/?php#get-list-nexus-regions
*
* @return object Collection of nexus regions.
*/
public function nexusRegions()
{
$response = $this->client->get('nexus/regions');
return json_decode($response->getBody())->regions;
}
/**
* Validate an address
* https://developers.taxjar.com/api/reference/?php#post-validate-an-address
*
* @param array $parameters
*
* @return object Validation object.
*/
public function validateAddress($parameters = [])
{
$response = $this->client->post('addresses/validate', [
'json' => $parameters,
]);
return json_decode($response->getBody())->addresses;
}
/**
* Validate a VAT number
* https://developers.taxjar.com/api/reference/?php#get-validate-a-vat-number
*
* @param array $parameters
*
* @return object Validation object.
*/
public function validate($parameters = [])
{
$response = $this->client->get('validation', [
'query' => $parameters,
]);
return json_decode($response->getBody())->validation;
}
/**
* Summarize tax rates for all regions
* https://developers.taxjar.com/api/reference/?php#get-summarize-tax-rates-for-all-regions
*
* @return object Collection of summarized rates.
*/
public function summaryRates()
{
$response = $this->client->get('summary_rates');
return json_decode($response->getBody())->summary_rates;
}
}