-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp.json
More file actions
37 lines (37 loc) 路 1.62 KB
/
Copy pathapp.json
File metadata and controls
37 lines (37 loc) 路 1.62 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
{
"name": "TrueLayer Payments Quickstart",
"description": "Setup test backend server for TrueLayer Payments v3 API",
"repository": "https://github.com/TrueLayer/payments-quickstart",
"keywords": [ "web", "android", "ios", "truelayer"],
"env": {
"CLIENT_ID": {
"description": "Your sandbox `client_id` i.e. `sandbox-****` found 馃憠 https://console.truelayer.com/settings/",
"required": true
},
"CLIENT_SECRET": {
"description": "Your sandbox `client_secret` found 馃憠 https://console.truelayer.com/settings/",
"required": true
},
"BENEFICIARY_NAME": {
"description": "Your sandbox bank `beneficiary_name` or a default will be used.",
"required": false
},
"SORT_CODE": {
"description": "Your sandbox bank `sort_code` or a default will be used.",
"required": false
},
"ACCOUNT_NUMBER": {
"description": "Your sandbox bank `account_number` or a default will be used.",
"required": false
},
"WEBHOOK_URI": {
"description": "Register a webhook to listen to payment events. Uri must be registered to `Allowed redirect URIs` found 馃憠 https://console.truelayer.com/settings/.",
"required": false
},
"REDIRECT_URI": {
"description": "URI that is used to return the user to after authorising the payment. Uri must be registered to `Allowed redirect URIs` found 馃憠 https://console.truelayer.com/settings/.",
"required": false
}
},
"stack": "heroku-18"
}