-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmini-sistem-pembayaran.postman_collection.json
73 lines (73 loc) · 1.57 KB
/
mini-sistem-pembayaran.postman_collection.json
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
{
"info": {
"_postman_id": "378e7ae8-207f-45a0-a029-e8a4e730356a",
"name": "mini-sistem-pembayaran",
"schema": "https://schema.getpostman.com/json/collection/v2.0.0/collection.json",
"_exporter_id": "7177928"
},
"item": [
{
"name": "Laporan Penjualan",
"request": {
"auth": {
"type": "bearer",
"bearer": {
"token": "{{token}}"
}
},
"method": "GET",
"header": [],
"url": "{{host}}/api/{{version}}/laporan-penjualan"
},
"response": []
},
{
"name": "Pembayaran",
"request": {
"auth": {
"type": "bearer",
"bearer": {
"token": "{{token}}"
}
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\r\n \"date\":\"2023-05-31\",\r\n \"marketing_id\":1,\r\n \"jenis\":\"TUNAI\",\r\n \"dp\":\"2000000\",\r\n \"jatuh_tempo\":\"2024-05-31\",\r\n \"bunga\":\"5\",\r\n \"cargo_fee\":\"50000\",\r\n \"total_bayar\":\"20000000\"\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": "{{host}}/api/{{version}}/pembayaran/bayar"
},
"response": []
},
{
"name": "Cicil Angsuran",
"request": {
"auth": {
"type": "bearer",
"bearer": {
"token": "{{token}}"
}
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\r\n \"tanggal_bayar\":\"2023-07-30\"\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": "{{host}}/api/{{version}}/pembayaran/bayar-cicilan/2"
},
"response": []
}
]
}