forked from X-Financial-Technologies/Library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
api-endpoints.html
61 lines (32 loc) · 2.95 KB
/
api-endpoints.html
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
<div style="font-family: Arial; font-size: 14px;">
<p><strong>GET /v1/businessAccount/balances</strong>: Retrieve available business account balances.</p>
<p><strong>POST /v1/businessAccount/payouts</strong>: Create a new payout.</p>
<p><strong>GET /v1/businessAccount/payouts</strong>: List all payouts.</p>
<p><strong>GET /v1/businessAccount/payouts/{id}</strong>: Get details of a specific payout.</p>
<p><strong>POST /v1/businessAccount/banks/wires</strong>: Create a wire bank account.</p>
<p><strong>GET /v1/businessAccount/banks/wires</strong>: List wire bank accounts.</p>
<p><strong>GET /v1/businessAccount/banks/wires/{id}</strong>: Get details of a specific wire bank account.</p>
<p><strong>GET /v1/businessAccount/banks/wires/{id}/instructions</strong>: Get wire transfer instructions.</p>
<p><strong>POST /v1/mocks/payments/wire</strong>: Create a mock wire payment (sandbox).</p>
<p><strong>POST /v1/businessAccount/banks/cbit</strong>: Create a CBIT bank account.</p>
<p><strong>GET /v1/businessAccount/banks/cbit</strong>: List CBIT bank accounts.</p>
<p><strong>GET /v1/businessAccount/banks/cbit/{id}</strong>: Get a specific CBIT bank account.</p>
<p><strong>GET /v1/businessAccount/banks/cbit/{id}/instructions</strong>: Get CBIT transfer instructions.</p>
<p><strong>POST /v1/businessAccount/banks/cubix</strong>: Create a CUBIX bank account.</p>
<p><strong>GET /v1/businessAccount/banks/cubix</strong>: List CUBIX bank accounts.</p>
<p><strong>GET /v1/businessAccount/banks/cubix/{id}</strong>: Get a specific CUBIX bank account.</p>
<p><strong>GET /v1/businessAccount/banks/cubix/{id}/instructions</strong>: Get CUBIX transfer instructions.</p>
<p><strong>POST /v1/businessAccount/transfers</strong>: Create a transfer to a blockchain address.</p>
<p><strong>GET /v1/businessAccount/transfers</strong>: List all transfers.</p>
<p><strong>GET /v1/businessAccount/transfers/{id}</strong>: Get details of a specific transfer.</p>
<p><strong>POST /v1/businessAccount/wallets/addresses/deposit</strong>: Generate a new deposit address.</p>
<p><strong>GET /v1/businessAccount/wallets/addresses/deposit</strong>: List deposit addresses.</p>
<p><strong>POST /v1/businessAccount/wallets/addresses/recipient</strong>: Create a recipient address.</p>
<p><strong>GET /v1/businessAccount/wallets/addresses/recipient</strong>: List all recipient addresses.</p>
<p><strong>DELETE /v1/businessAccount/wallets/addresses/recipient/{id}</strong>: Delete a recipient address.</p>
<p><strong>GET /v1/businessAccount/deposits</strong>: List all deposits.</p>
<p><strong>POST /v1/businessAccount/banks/pix</strong>: Create a PIX bank account.</p>
<p><strong>GET /v1/businessAccount/banks/pix</strong>: List PIX bank accounts.</p>
<p><strong>GET /v1/businessAccount/banks/pix/{id}</strong>: Get a PIX bank account.</p>
<p><strong>GET /v1/businessAccount/banks/pix/{id}/instructions</strong>: Get PIX transfer instructions.</p>
</div>