-
Notifications
You must be signed in to change notification settings - Fork 0
/
asaas.php
378 lines (342 loc) · 15.1 KB
/
asaas.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
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
<?php
// error_reporting(E_ALL);
// ini_set('display_errors', 1);
// Inclua a classe AsaasAPI
require_once 'api.php';
include 'variaveis_ambiente.php';
// Instancie a classe passando a chave de acesso do Asaas
$asaas = new AsaasAPI($api_key);
$param = $_GET['param'];
switch ($param) {
// #################################################################
// ################ MÉTODOS PARA CLIENTES ##########################
// #################################################################
case '1': // CRIAR UM CLIENTE ----------------------------------------
$name = 'Gabriel L Gomes'; // Obrigatório
$email = '';
$phone = '';
$mobilePhone = '51992049874'; // Obrigatório
$cpfCnpj = '83029052087'; // Obrigatório
$postalCode = '';
$address = '';
$addressNumber = '';
$complement = '';
$province = '';
$externalReference = '';
$notificationDisabled = '';
$additionalEmails = '';
$municipalInscription = '';
$stateInscription = '';
$observations = '';
// Exemplo de uso do método createCustomer
$response = $asaas->createCustomer($name, $email, $phone, $mobilePhone, $cpfCnpj, $postalCode, $address, $addressNumber, $complement, $province, $externalReference, $notificationDisabled, $additionalEmails, $municipalInscription, $stateInscription, $observations);
// Verifique a resposta e trate os erros, se necessário
if (isset($response['errors'])) {
echo 'Ocorreu um erro: ' . $response['errors'][0]['description'];
} else {
echo 'Cliente criado com sucesso! ID: ' . $response['id'];
// Salve o ID do cliente em seu banco de dados, para futuras cobranças
}
break;
case '2': // ATUALIZAR UM CLIENTE ------------------------------------
$customerID = '';
$name = '';
$email = '';
$phone = '';
$mobilePhone = '';
$cpfCnpj = '';
$postalCode = '';
$address = '';
$addressNumber = '';
$complement = '';
$province = '';
$externalReference = '';
$notificationDisabled = '';
$additionalEmails = '';
$municipalInscription = '';
$stateInscription = '';
$response = $asaas->updateCustomer($customerID, $name, $email, $phone, $mobilePhone, $cpfCnpj, $postalCode, $address, $addressNumber, $complement, $province, $externalReference, $notificationDisabled, $additionalEmails, $municipalInscription, $stateInscription);
// Verifique a resposta e trate os erros, se necessário
if (isset($response['errors'])) {
echo 'Erro: ' . $response['errors'][0]['description'];
} else {
echo 'Cliente atualizado com sucesso!';
}
break;
case '3': // BUSCAR UM CLIENTE ----------------------------------------
$customerID = '';
$response = $asaas->getCustomer($customerID);
if (isset($response['errors'])) {
echo 'Erro: ' . $response['errors'][0]['description'];
} else {
echo 'Informações do cliente:';
echo 'Nome: ' . $response['name'];
echo 'CPF/CNPJ: ' . $response['cpfCnpj'];
echo 'Celular: ' . $response['mobilePhone'];
}
break;
case '4': // LISTAR TODOS OS CLIENTES ---------------------------------
$response = $asaas->listCustomers();
if (isset($response['errors'])) {
echo 'Erro: ' . $response['errors'][0]['description'];
} else {
echo 'Clientes:';
foreach ($response['data'] as $customer) {
echo 'ID: ' . $customer['id'];
echo 'Nome: ' . $customer['name'];
echo 'Email: ' . $customer['email'];
echo 'CPF/CNPJ: ' . $customer['cpfCnpj'];
echo 'Telefone: ' . $customer['phone'];
echo 'Celular: ' . $customer['mobilePhone'];
echo '-----------------------------------';
}
}
break;
case '5': // RESTAURAR UM CLIENTE -------------------------------------
$customerID = '';
$response = $asaas->restoreCustomer($customerID);
// Verifique a resposta e trate os erros, se necessário
if (isset($response['errors'])) {
echo 'Erro: ' . $response['errors'][0]['description'];
} else {
echo 'Cliente restaurado com sucesso!';
}
break;
case '6': // EXCLUIR UM CLIENTE ---------------------------------------
$customerID = '';
$response = $asaas->deleteCustomer($customerID);
// Verifique a resposta e trate os erros, se necessário
if (isset($response['errors'])) {
echo 'Erro: ' . $response['errors'][0]['description'];
} else {
echo 'Cliente excluído com sucesso!';
}
break;
// #################################################################
// ################ MÉTODOS PARA COBRANÇAS #########################
// #################################################################
case '7': // CRIAR UMA COBRANÇA --------------------------------------
$customerID = 'cus_000055948355'; // Obrigatório
$dueDate = '2023-06-05'; // Obrigatório
$value = '10.00'; // Obrigatório
$cpfCnpj = '83029052087'; // Obrigatório
$description = '';
$externalReference = '';
$canBePaidAfterDueDate = false; // Obrigatório
$discountValue = '0'; // Obrigatório
$discountDueDateLimit = '0'; // Obrigatório
$fineValue = '0'; // Obrigatório
$interestValue = '0'; // Obrigatório
$postalService = false;
$response = $asaas->createCharge($customerID, $dueDate, $value, $description, $externalReference, $canBePaidAfterDueDate, $discountValue, $discountDueDateLimit, $fineValue, $interestValue, $postalService);
if (isset($response['errors'])) {
echo 'Erro: ' . $response['errors'][0]['description'];
} else {
echo 'Cobrança criada com sucesso! ID: ' . $response['id'];
// Salve o ID da cobrança em seu banco de dados, para futuras consultas
}
break;
case '8': // CRIAR UMA COBRANÇA COM CARTÃO DE CRÉDITO -----------------
$customerID = ''; // Obrigatório
$dueDate = ''; // Obrigatório
$value = ''; // Obrigatório
$description = '';
$externalReference = '';
$holderName = ''; // Obrigatório
$number = ''; // Obrigatório
$expiryMonth = ''; // Obrigatório
$expiryYear = ''; // Obrigatório
$ccv = ''; // Obrigatório
$name = ''; // Obrigatório
$email = ''; // Obrigatório
$cpfCnpj = ''; // Obrigatório
$postalCode = ''; // Obrigatório
$addressNumber = ''; // Obrigatório
$addressComplement = '';
$phone = ''; // Obrigatório
$mobilePhone = '';
$creditCardToken = ''; // Obrigatório
$remoteIp = ''; // Obrigatório
$response = $asaas->createCreditCardCharge($customerID, $dueDate, $value, $description, $externalReference, $holderName, $number, $expiryMonth, $expiryYear, $ccv, $name, $email, $cpfCnpj, $postalCode, $addressNumber, $addressComplement, $phone, $mobilePhone, $creditCardToken, $remoteIp);
// Verifique a resposta e trate os erros, se necessário
if (isset($response['errors'])) {
echo 'Erro: ' . $response['errors'][0]['description'];
} else {
echo 'Cobrança com cartão de crédito criada com sucesso! ID: ' . $response['id'];
}
break;
case '9': // CRIAR COBRANÇA PARCELADA ---------------------------------
$customerID = ''; // Obrigatório
$dueDate = ''; // Obrigatório
$value = '';
$billingType = ''; // CREDIT_CARD OU BOLETO
$description = '';
$externalReference = '';
$installmentCount = ''; // Obrigatório
$installmentValue = ''; // Obrigatório ou totalValue
$totalValue = ''; // Obrigatório ou installmentValue
$canBePaidAfterDueDate = false;
$discountValue = '0';
$discountDueDateLimit = '0';
$fineValue = '0';
$interestValue = '0';
$postalService = false;
$response = $asaas->createInstallmentCharge($customerID, $dueDate, $value, $billingType, $description, $externalReference, $installmentCount, $installmentValue, $totalValue, $canBePaidAfterDueDate, $discountValue, $discountDueDateLimit, $fineValue, $interestValue, $postalService);
if (isset($response['errors'])) {
echo 'Erro: ' . $response['errors'][0]['description'];
} else {
echo 'Cobrança parcelada criada com sucesso! ID: ' . $response['id'];
}
break;
case '10': // RECUPERAR COBRANÇA ÚNICA -------------------------------
$chargeID = 'pay_1788179071737256'; // Obrigatório
$response = $asaas->getCharge($chargeID);
// Verifique a resposta e trate os erros, se necessário
if (isset($response['errors'])) {
echo 'Erro: ' . $response['errors'][0]['description'];
} else {
// Salve os dados da cobrança em seu banco de dados, para futuras consultas
echo 'Cobrança recuperada com sucesso!';
echo $response['id'];
}
break;
case '11': // LISTAR COBRANÇAS ----------------------------------------
$response = $asaas->listCharges();
// Verifique a resposta e trate os erros, se necessário
if (isset($response['errors'])) {
echo 'Erro: ' . $response['errors'][0]['description'];
} else {
// Salve os dados das cobranças em seu banco de dados, para futuras consultas
echo 'Cobranças listadas com sucesso!<br>';
foreach ($response['data'] as $charge) {
echo $charge['id'] . "<br>";
}
}
break;
case '12': // ATUALIZAR COBRANÇA EXISTENTE ---------------------------
$chargeID = ''; // Obrigatório
$billingType = ''; // Obrigatório
$dueDate = ''; // Obrigatório
$value = ''; // Obrigatório
$description = '';
$externalReference = '';
$canBePaidAfterDueDate = false;
$discountValue = '0';
$discountDueDateLimit = '0';
$fineValue = '0';
$interestValue = '0';
$postalService = false;
$response = $asaas->updateCharge($chargeID, $billingType, $dueDate, $value, $description, $externalReference, $canBePaidAfterDueDate, $discountValue, $discountDueDateLimit, $fineValue, $interestValue, $postalService);
// Verifique a resposta e trate os erros, se necessário
if (isset($response['errors'])) {
echo 'Erro: ' . $response['errors'][0]['description'];
} else {
echo 'Cobrança atualizada com sucesso!';
}
break;
case '13': // REMOVER COBRANÇA ----------------------------------------
$chargeID = ''; // Obrigatório
$response = $asaas->deleteCharge($chargeID);
// Verifique a resposta e trate os erros, se necessário
if (isset($response['errors'])) {
echo 'Erro: ' . $response['errors'][0]['description'];
} else {
echo 'Cobrança removida com sucesso!';
}
break;
case '14': // RESTAURAR COBRANÇA REMOVIDA ----------------------------
$chargeID = ''; // Obrigatório
$response = $asaas->restoreCharge($chargeID);
// Verifique a resposta e trate os erros, se necessário
if (isset($response['errors'])) {
echo 'Erro: ' . $response['errors'][0]['description'];
} else {
echo 'Cobrança restaurada com sucesso!';
}
break;
case '15': // ESTORNAR COBRANÇA ---------------------------------------
$chargeID = ''; // Obrigatório
$value = ''; // Obrigatório
$description = '';
$response = $asaas->refundCharge($chargeID, $value, $description);
// Verifique a resposta e trate os erros, se necessário
if (isset($response['errors'])) {
echo 'Erro: ' . $response['errors'][0]['description'];
} else {
echo 'Cobrança estornada com sucesso!';
}
break;
case '16': // OBTER QR CODE PARA PAGAMENTO PIX -------------------------
$chargeID = ''; // Obrigatório
$response = $asaas->getQRCode($chargeID);
// Verifique a resposta e trate os erros, se necessário
if (isset($response['errors'])) {
echo 'Erro: ' . $response['errors'][0]['description'];
} else {
// Salve os dados do QR Code em seu banco de dados, para futuras consultas
echo 'QR Code obtido com sucesso!<br>';
echo $response['encodedImage'] . "<br>";
echo $response['payload'] . "<br>";
echo $response['expirationDate'] . "<br>";
}
break;
case '17': // OBTER LINHA DIGITÁVEL -------------------------------------
$chargeID = 'pay_5954759860264569'; // Obrigatório
$response = $asaas->getDigitableLine($chargeID);
// Verifique a resposta e trate os erros, se necessário
if (isset($response['errors'])) {
echo 'Erro: ' . $response['errors'][0]['description'];
} else {
// Salve os dados da linha digitável em seu banco de dados, para futuras consultas
echo 'Linha digitável obtida com sucesso!<br>';
echo $response['identificationField'] . "<br>"; // linha digitável
echo $response['barCode'] . "<br>"; // código de barras
}
break;
default:
echo 'Valor inválido para o parâmetro "param"';
break;
}
// pay_5954759860264569
// MODELO DO RETORNO DA COBRANÇA POR CARTÃO DE CRÉDITO
// {
// "object": "payment",
// "id": "pay_6249395324297088",
// "dateCreated": "2023-06-01",
// "customer": "cus_000055909237",
// "paymentLink": null,
// "value": 5,
// "netValue": 4.37,
// "originalValue": null,
// "interestValue": null,
// "description": "",
// "billingType": "CREDIT_CARD",
// "confirmedDate": "2023-06-01",
// "creditCard": {
// "creditCardNumber": "1701",
// "creditCardBrand": "MASTERCARD"
// },
// "pixTransaction": null,
// "status": "CONFIRMED",
// "dueDate": "2023-07-01",
// "originalDueDate": "2023-07-01",
// "paymentDate": null,
// "clientPaymentDate": "2023-06-01",
// "installmentNumber": null,
// "invoiceUrl": "https://www.asaas.com/i/6249395324297088",
// "invoiceNumber": "209094394",
// "externalReference": null,
// "deleted": false,
// "anticipated": false,
// "anticipable": false,
// "creditDate": "2023-07-03",
// "estimatedCreditDate": "2023-07-03",
// "transactionReceiptUrl": "https://www.asaas.com/comprovantes/8380758150507516",
// "nossoNumero": null,
// "bankSlipUrl": null,
// "lastInvoiceViewedDate": null,
// "lastBankSlipViewedDate": null,
// "postalService": false,
// "custody": null,
// "refunds": null
// }