-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflutterwave-banks-api.opencollection.json
More file actions
114 lines (114 loc) · 2.65 KB
/
Copy pathflutterwave-banks-api.opencollection.json
File metadata and controls
114 lines (114 loc) · 2.65 KB
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
{
"opencollection": "1.0.0",
"info": {
"name": "Flutterwave Banks API",
"version": "4.0.0"
},
"request": {
"auth": {
"type": "oauth2",
"flow": "client_credentials",
"accessTokenUrl": "https://idp.flutterwave.com/realms/flutterwave/protocol/openid-connect/token",
"credentials": {
"clientId": "{{clientId}}",
"clientSecret": "{{clientSecret}}"
}
}
},
"items": [
{
"info": {
"name": "Banks",
"type": "folder"
},
"items": [
{
"info": {
"name": "Retrieve Banks",
"type": "http"
},
"http": {
"method": "GET",
"url": "https://api.flutterwave.cloud/f4b/production/banks",
"params": [
{
"name": "country",
"value": "",
"type": "query"
}
]
},
"docs": "Retrieve supported banks by country."
},
{
"info": {
"name": "Retrieve Bank Branches",
"type": "http"
},
"http": {
"method": "GET",
"url": "https://api.flutterwave.cloud/f4b/production/banks/:id/branches",
"params": [
{
"name": "id",
"value": "",
"type": "path"
}
]
},
"docs": "Retrieve Bank Branches"
}
]
},
{
"info": {
"name": "AccountResolution",
"type": "folder"
},
"items": [
{
"info": {
"name": "Bank Account Look Up",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://api.flutterwave.cloud/f4b/production/bank-account/resolve",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Resolve a customer's bank account information."
}
]
},
{
"info": {
"name": "MobileNetworks",
"type": "folder"
},
"items": [
{
"info": {
"name": "Retrieve Mobile Networks",
"type": "http"
},
"http": {
"method": "GET",
"url": "https://api.flutterwave.cloud/f4b/production/mobile-networks",
"params": [
{
"name": "country",
"value": "",
"type": "query"
}
]
},
"docs": "Retrieve supported mobile networks by country."
}
]
}
],
"bundled": true
}