@zkp2p/providers 7.9.0 → 7.9.1-rc.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. package/.claude/worktrees/paypal-note-optional-redaction/LICENSE +21 -0
  2. package/.claude/worktrees/paypal-note-optional-redaction/README.md +546 -0
  3. package/.claude/worktrees/paypal-note-optional-redaction/alipay/register_alipay.json +58 -0
  4. package/.claude/worktrees/paypal-note-optional-redaction/alipay/transfer_alipay.json +87 -0
  5. package/.claude/worktrees/paypal-note-optional-redaction/bankofamerica/transfer_zelle.json +126 -0
  6. package/.claude/worktrees/paypal-note-optional-redaction/cashapp/transfer_cashapp.json +147 -0
  7. package/.claude/worktrees/paypal-note-optional-redaction/chase/transfer_zelle.json +156 -0
  8. package/.claude/worktrees/paypal-note-optional-redaction/chime/transfer_chime.json +130 -0
  9. package/.claude/worktrees/paypal-note-optional-redaction/citi/transfer_zelle.json +126 -0
  10. package/.claude/worktrees/paypal-note-optional-redaction/idfc/transfer_idfc.json +109 -0
  11. package/.claude/worktrees/paypal-note-optional-redaction/luxon/transfer_luxon.json +119 -0
  12. package/.claude/worktrees/paypal-note-optional-redaction/mercadopago/transfer_mercadopago.json +129 -0
  13. package/.claude/worktrees/paypal-note-optional-redaction/monzo/transfer_monzo.json +130 -0
  14. package/.claude/worktrees/paypal-note-optional-redaction/n26/transfer_n26.json +130 -0
  15. package/.claude/worktrees/paypal-note-optional-redaction/package.json +22 -0
  16. package/.claude/worktrees/paypal-note-optional-redaction/paypal/register_paypal.json +89 -0
  17. package/.claude/worktrees/paypal-note-optional-redaction/paypal/transfer_business_paypal.json +124 -0
  18. package/.claude/worktrees/paypal-note-optional-redaction/paypal/transfer_paypal.json +138 -0
  19. package/.claude/worktrees/paypal-note-optional-redaction/providers.json +23 -0
  20. package/.claude/worktrees/paypal-note-optional-redaction/revolut/transfer_revolut.json +138 -0
  21. package/.claude/worktrees/paypal-note-optional-redaction/royalbankcanada/transfer_interac.json +89 -0
  22. package/.claude/worktrees/paypal-note-optional-redaction/td_bank/transfer_zelle.json +112 -0
  23. package/.claude/worktrees/paypal-note-optional-redaction/usbank/transfer_zelle.json +127 -0
  24. package/.claude/worktrees/paypal-note-optional-redaction/venmo/register_venmo.json +77 -0
  25. package/.claude/worktrees/paypal-note-optional-redaction/venmo/transfer_venmo.json +120 -0
  26. package/.claude/worktrees/paypal-note-optional-redaction/wellsfargo/transfer_zelle.json +137 -0
  27. package/.claude/worktrees/paypal-note-optional-redaction/wise/register_wise.json +81 -0
  28. package/.claude/worktrees/paypal-note-optional-redaction/wise/transfer_wise.json +157 -0
  29. package/package.json +1 -1
  30. package/paypal/transfer_paypal.json +1 -2
@@ -0,0 +1,126 @@
1
+ {
2
+ "actionType": "transfer_zelle",
3
+ "proofEngine": "reclaim",
4
+ "authLink": "https://online.citi.com/US/nga/zelle/transfer",
5
+ "url": "https://online.citi.com/gcgapi/prod/public/v1/p2ppayments/activityTransactionDetails",
6
+ "method": "POST",
7
+ "body": "{\"transactionType\":[\"OUTGOING_PAYMENT\",\"SCHEDULED_PAYMENT\"],\"transactionView\":\"LIST_VIEW\",\"transactionStatus\":[\"ALL\"],\"pageOptions\":{\"pageMode\":\"SLICE\",\"page\":1,\"pageSize\":20},\"fetchBlockInfo\":false}",
8
+ "metadata": {
9
+ "platform": "zelle",
10
+ "metadataUrl": "https://online.citi.com/gcgapi/prod/public/v1/p2ppayments/activityTransactionDetails",
11
+ "metadataUrlMethod": "POST",
12
+ "metadataUrlBody": "{\"transactionType\":[\"OUTGOING_PAYMENT\",\"SCHEDULED_PAYMENT\"],\"transactionView\":\"LIST_VIEW\",\"transactionStatus\":[\"ALL\"],\"pageOptions\":{\"pageMode\":\"SLICE\",\"page\":1,\"pageSize\":20},\"fetchBlockInfo\":false}",
13
+ "urlRegex": "https://online.citi.com/gcgapi/prod/public/v1/p2ppayments/activityTransactionDetails",
14
+ "method": "POST",
15
+ "fallbackUrlRegex": "",
16
+ "fallbackMethod": "",
17
+ "preprocessRegex": "",
18
+ "transactionsExtraction": {
19
+ "transactionJsonPathListSelector": "$.transactionData[0].transactions",
20
+ "transactionJsonPathSelectors": {
21
+ "amount": "$.amount",
22
+ "paymentId": "$.transactionId",
23
+ "recipient": "$.partyToken",
24
+ "date": "$.initiationDate"
25
+ }
26
+ },
27
+ "proofMetadataSelectors": [
28
+ {
29
+ "type": "jsonPath",
30
+ "value": "$.transactionData[0].transactions[{{INDEX}}].amount"
31
+ },
32
+ {
33
+ "type": "jsonPath",
34
+ "value": "$.transactionData[0].transactions[{{INDEX}}].transactionId"
35
+ },
36
+ {
37
+ "type": "jsonPath",
38
+ "value": "$.transactionData[0].transactions[{{INDEX}}].partyToken"
39
+ },
40
+ {
41
+ "type": "jsonPath",
42
+ "value": "$.transactionData[0].transactions[{{INDEX}}].initiationDate"
43
+ }
44
+ ]
45
+ },
46
+ "paramNames": [],
47
+ "paramSelectors": [],
48
+ "skipRequestHeaders": [
49
+ "Cookie",
50
+ "Accept-Encoding",
51
+ "accept-encoding"
52
+ ],
53
+ "secretHeaders": [
54
+ "Cookie"
55
+ ],
56
+ "responseMatches": [
57
+ {
58
+ "type": "regex",
59
+ "value": "\"transactionId\":\"(?<transactionId>[^\"]+)\""
60
+ },
61
+ {
62
+ "type": "regex",
63
+ "value": "\"transactionStatus\":\"(?<transactionStatus>[^\"]+)\""
64
+ },
65
+ {
66
+ "type": "regex",
67
+ "value": "\"initiationDate\":\"(?<initiationDate>[^\"]+)\""
68
+ },
69
+ {
70
+ "type": "regex",
71
+ "value": "\"amount\":(?<amount>[0-9\\.]+)"
72
+ },
73
+ {
74
+ "type": "regex",
75
+ "value": "\"partyToken\":\"(?<partyToken>[^\"]+)\""
76
+ }
77
+ ],
78
+ "responseRedactions": [
79
+ {
80
+ "jsonPath": "$.transactionData[0].transactions[{{INDEX}}].transactionId",
81
+ "xPath": ""
82
+ },
83
+ {
84
+ "jsonPath": "$.transactionData[0].transactions[{{INDEX}}].transactionStatus",
85
+ "xPath": ""
86
+ },
87
+ {
88
+ "jsonPath": "$.transactionData[0].transactions[{{INDEX}}].initiationDate",
89
+ "xPath": ""
90
+ },
91
+ {
92
+ "jsonPath": "$.transactionData[0].transactions[{{INDEX}}].amount",
93
+ "xPath": ""
94
+ },
95
+ {
96
+ "jsonPath": "$.transactionData[0].transactions[{{INDEX}}].partyToken",
97
+ "xPath": ""
98
+ }
99
+ ],
100
+ "additionalClientOptions": {
101
+ "cipherSuites": [
102
+ "TLS_CHACHA20_POLY1305_SHA256",
103
+ "TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256",
104
+ "TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256",
105
+ "TLS_AES_128_GCM_SHA256",
106
+ "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256",
107
+ "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256"
108
+ ]
109
+ },
110
+ "mobile": {
111
+ "includeAdditionalCookieDomains": [],
112
+ "additionalClientOptions": {
113
+ "cipherSuites": [
114
+ "TLS_AES_128_GCM_SHA256",
115
+ "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256",
116
+ "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256"
117
+ ]
118
+ },
119
+ "useExternalAction": true,
120
+ "external": {
121
+ "actionLink": "https://www.citi.com/citi-partner/zelle/login",
122
+ "appStoreLink": "https://apps.apple.com/us/app/citi-mobile/id301724680",
123
+ "playStoreLink": "https://play.google.com/store/apps/details?id=com.citi.citimobile"
124
+ }
125
+ }
126
+ }
@@ -0,0 +1,109 @@
1
+ {
2
+ "actionType": "transfer_idfc",
3
+ "proofEngine": "reclaim",
4
+ "authLink": "https://my.idfcfirstbank.com/pay/history",
5
+ "url": "https://app.my.idfcfirstbank.com/api/pfm/v2/transactions",
6
+ "method": "POST",
7
+ "body": "{\"accountNumbers\":[\"{{SENDER_ID}}\"],\"skip\":0,\"take\":20,\"upiStatus\":[\"SUCCESS\"]}",
8
+ "metadata": {
9
+ "shouldSkipCloseTab": true,
10
+ "shouldReplayRequestInPage": true,
11
+ "platform": "upi",
12
+ "urlRegex": "https://app.my.idfcfirstbank.com/api/pfm/v2/transactions",
13
+ "method": "POST",
14
+ "fallbackUrlRegex": "",
15
+ "fallbackMethod": "",
16
+ "preprocessRegex": "",
17
+ "transactionsExtraction": {
18
+ "transactionJsonPathListSelector": "$.data",
19
+ "transactionJsonPathSelectors": {
20
+ "recipient": "$.toPayeeName",
21
+ "amount": "$.amount",
22
+ "date": "$.timestamp",
23
+ "paymentId": "$.sourceTransactionId",
24
+ "currency": "$.accountCurrencyCode"
25
+ }
26
+ },
27
+ "proofMetadataSelectors": [
28
+ {
29
+ "type": "jsonPath",
30
+ "value": "$.data[{{INDEX}}].amount"
31
+ },
32
+ {
33
+ "type": "jsonPath",
34
+ "value": "$.data[{{INDEX}}].sourceTransactionId"
35
+ },
36
+ {
37
+ "type": "jsonPath",
38
+ "value": "$.data[{{INDEX}}].toPayeeName"
39
+ },
40
+ {
41
+ "type": "jsonPath",
42
+ "value": "$.data[{{INDEX}}].timestamp"
43
+ },
44
+ {
45
+ "type": "jsonPath",
46
+ "value": "$.data[{{INDEX}}].accountCurrencyCode"
47
+ }
48
+ ]
49
+ },
50
+ "paramNames": [
51
+ "SENDER_ID"
52
+ ],
53
+ "paramSelectors": [
54
+ {
55
+ "type": "jsonPath",
56
+ "value": "$.data[{{INDEX}}].userAccountNumber"
57
+ }
58
+ ],
59
+ "skipRequestHeaders": [
60
+ "Accept-Encoding",
61
+ "User-Agent"
62
+ ],
63
+ "secretHeaders": [
64
+ ],
65
+ "responseMatches": [
66
+ {
67
+ "type": "regex",
68
+ "value": "\"amount\":(?<amount>[^\"]+)"
69
+ },
70
+ {
71
+ "type": "regex",
72
+ "value": "\"timestamp\":\"(?<timestamp>[^\"]+)\""
73
+ },
74
+ {
75
+ "type": "regex",
76
+ "value": "\"sourceTransactionId\":\"(?<paymentId>[^\"]+)\""
77
+ },
78
+ {
79
+ "type": "regex",
80
+ "value": "\"toPayeeName\":\"(?<receiverId>[^\"]+)\""
81
+ },
82
+ {
83
+ "type": "regex",
84
+ "value": "\"accountCurrencyCode\":\"(?<currency>[^\"]+)\""
85
+ }
86
+ ],
87
+ "responseRedactions": [
88
+ {
89
+ "jsonPath": "$.data[{{INDEX}}].amount",
90
+ "xPath": ""
91
+ },
92
+ {
93
+ "jsonPath": "$.data[{{INDEX}}].timestamp",
94
+ "xPath": ""
95
+ },
96
+ {
97
+ "jsonPath": "$.data[{{INDEX}}].sourceTransactionId",
98
+ "xPath": ""
99
+ },
100
+ {
101
+ "jsonPath": "$.data[{{INDEX}}].toPayeeName",
102
+ "xPath": ""
103
+ },
104
+ {
105
+ "jsonPath": "$.data[{{INDEX}}].accountCurrencyCode",
106
+ "xPath": ""
107
+ }
108
+ ]
109
+ }
@@ -0,0 +1,119 @@
1
+ {
2
+ "actionType": "transfer_luxon",
3
+ "proofEngine": "reclaim",
4
+ "authLink": "https://web.luxon.com/dashboard",
5
+ "url": "https://client-service.luxon.com/api/v4/transfers/{{TRANSFER_ID}}",
6
+ "method": "GET",
7
+ "body": "",
8
+ "metadata": {
9
+ "metadataUrl": "https://client-service.luxon.com/api/v4/transfers?page=0&size=10",
10
+ "metadataUrlMethod": "GET",
11
+ "metadataUrlBody": "",
12
+ "platform": "luxon",
13
+ "urlRegex": "https://client-service.luxon.com/api/v4/transfers\\S+",
14
+ "method": "GET",
15
+ "fallbackUrlRegex": "",
16
+ "fallbackMethod": "",
17
+ "preprocessRegex": "",
18
+ "transactionsExtraction": {
19
+ "transactionJsonPathListSelector": "$.content",
20
+ "transactionJsonPathSelectors": {
21
+ "recipient": "$.receiver.label",
22
+ "amount": "$.receiver.value.amount",
23
+ "date": "$.createdAt",
24
+ "paymentId": "$.transferId",
25
+ "currency": "$.receiver.value.currency",
26
+ "status": "$.status"
27
+ }
28
+ },
29
+ "proofMetadataSelectors": [
30
+ {
31
+ "type": "jsonPath",
32
+ "value": "$.content[{{INDEX}}].receiver.value.amount"
33
+ },
34
+ {
35
+ "type": "jsonPath",
36
+ "value": "$.content[{{INDEX}}].transferId"
37
+ },
38
+ {
39
+ "type": "jsonPath",
40
+ "value": "$.content[{{INDEX}}].receiver.id"
41
+ },
42
+ {
43
+ "type": "jsonPath",
44
+ "value": "$.content[{{INDEX}}].createdAt"
45
+ },
46
+ {
47
+ "type": "jsonPath",
48
+ "value": "$.content[{{INDEX}}].status"
49
+ }
50
+ ]
51
+ },
52
+ "paramNames": [
53
+ "TRANSFER_ID"
54
+ ],
55
+ "paramSelectors": [
56
+ {
57
+ "type": "jsonPath",
58
+ "value": "$.content[{{INDEX}}].transferId"
59
+ }
60
+ ],
61
+ "skipRequestHeaders": [
62
+ "X-Auth-Token"
63
+ ],
64
+ "secretHeaders": [
65
+ "X-Auth-Token"
66
+ ],
67
+ "responseMatches": [
68
+ {
69
+ "type": "regex",
70
+ "value": "\"transferId\":\"(?<transferId>[^\"]+)\""
71
+ },
72
+ {
73
+ "type": "regex",
74
+ "value": "\"status\":\"(?<status>[^\"]+)\""
75
+ },
76
+ {
77
+ "type": "regex",
78
+ "value": "\"createdAt\":\"(?<createdAt>[^\"]+)\""
79
+ },
80
+ {
81
+ "type": "regex",
82
+ "value": "\"amount\":(?<amount>[0-9\\.]+)"
83
+ },
84
+ {
85
+ "type": "regex",
86
+ "value": "\"currency\":\"(?<currency>[^\"]+)\""
87
+ },
88
+ {
89
+ "type": "regex",
90
+ "value": "\"email\":\"(?<email>[^\"]+)\""
91
+ }
92
+ ],
93
+ "responseRedactions": [
94
+ {
95
+ "jsonPath": "$.transferId",
96
+ "xPath": ""
97
+ },
98
+ {
99
+ "jsonPath": "$.status",
100
+ "xPath": ""
101
+ },
102
+ {
103
+ "jsonPath": "$.createdAt",
104
+ "xPath": ""
105
+ },
106
+ {
107
+ "jsonPath": "$.receiver.value.amount",
108
+ "xPath": ""
109
+ },
110
+ {
111
+ "jsonPath": "$.receiver.value.currency",
112
+ "xPath": ""
113
+ },
114
+ {
115
+ "jsonPath": "$.receiver.email",
116
+ "xPath": ""
117
+ }
118
+ ]
119
+ }
@@ -0,0 +1,129 @@
1
+ {
2
+ "actionType": "transfer_mercado_pago",
3
+ "proofEngine": "reclaim",
4
+ "authLink": "https://www.mercadopago.com.ar/home",
5
+ "url": "https://www.mercadopago.com.ar/activities/detail/{{PAYMENT_ID}}?from={{URL_PARAMS_FROM}}",
6
+ "method": "GET",
7
+ "body": "",
8
+ "metadata": {
9
+ "platform": "mercadopago",
10
+ "urlRegex": "^https://www\\.mercadopago\\.com\\.ar/home(?:/)?(?:\\?.*)?$",
11
+ "method": "GET",
12
+ "fallbackUrlRegex": "",
13
+ "fallbackMethod": "",
14
+ "preprocessRegex": "<script\\s+[^>]*id=[\"']__PRELOADED_STATE__[\"'][^>]*>([\\s\\S]*?)</script>",
15
+ "transactionsExtraction": {
16
+ "transactionJsonPathListSelector": "$.pageState.mpHome.result.sections.hs_activities.content.content",
17
+ "transactionJsonPathSelectors": {
18
+ "recipient": "$.title",
19
+ "amount": "$.amount.fraction",
20
+ "date": "$.creationDate",
21
+ "paymentId": "$.id",
22
+ "currency": "$.amount.currency_id"
23
+ }
24
+ },
25
+ "proofMetadataSelectors": [
26
+ {
27
+ "type": "jsonPath",
28
+ "value": "$.pageState.mpHome.result.sections.hs_activities.content.content[{{INDEX}}].title"
29
+ },
30
+ {
31
+ "type": "jsonPath",
32
+ "value": "$.pageState.mpHome.result.sections.hs_activities.content.content[{{INDEX}}].amount.fraction"
33
+ },
34
+ {
35
+ "type": "jsonPath",
36
+ "value": "$.pageState.mpHome.result.sections.hs_activities.content.content[{{INDEX}}].id"
37
+ }
38
+ ]
39
+ },
40
+ "paramNames": [
41
+ "PAYMENT_ID",
42
+ "URL_PARAMS_FROM"
43
+ ],
44
+ "paramSelectors": [
45
+ {
46
+ "type": "jsonPath",
47
+ "value": "$.pageState.mpHome.result.sections.hs_activities.content.content[{{INDEX}}].id"
48
+ },
49
+ {
50
+ "type": "regex",
51
+ "value": "from=([^&\\\"]+)"
52
+ }
53
+ ],
54
+ "skipRequestHeaders": [
55
+ "Cookie",
56
+ "Accept-Encoding"
57
+ ],
58
+ "secretHeaders": [
59
+ "Cookie"
60
+ ],
61
+ "responseMatches": [
62
+ {
63
+ "type": "regex",
64
+ "value": "v2__detail\">(.*?)CVU: (?<recipientId>[0-9]+)</li>"
65
+ },
66
+ {
67
+ "type": "regex",
68
+ "value": "<span class=\"andes-money-amount__fraction\" aria-hidden=\"true\">(?<amt>[0-9.]+)</span><span aria-hidden=\"true\">,</span><span class=\"andes-money-amount__cents\" aria-hidden=\"true\">(?<cents>[0-9]+)</span>"
69
+ },
70
+ {
71
+ "type": "regex",
72
+ "value": "Total\",\"amount\":{\"currency_id\":\"(?<curr>[^\"]+)\""
73
+ },
74
+ {
75
+ "type": "regex",
76
+ "value": ",\"date\":\"(?<date>[^\"]+)\",\"sections\""
77
+ },
78
+ {
79
+ "type": "regex",
80
+ "value": "\"operationId\":(?<paymentId>[^,]+),\"activityName\":\"(?<paymentType>[^\"]+)\",\"activityStatus\":\"(?<paymentStatus>[^\"]+)\","
81
+ }
82
+ ],
83
+ "responseRedactions": [
84
+ {
85
+ "jsonPath": "",
86
+ "xPath": "",
87
+ "regex": "v2__detail\">(.*?)CVU: (.*?)</li>"
88
+ },
89
+ {
90
+ "jsonPath": "",
91
+ "xPath": "",
92
+ "regex": "<span class=\"andes-money-amount__fraction\" aria-hidden=\"true\">(.*?)</span><span aria-hidden=\"true\">,</span><span class=\"andes-money-amount__cents\" aria-hidden=\"true\">(.*?)</span>"
93
+ },
94
+ {
95
+ "jsonPath": "",
96
+ "xPath": "",
97
+ "regex": "\"Total\",\"amount\":{\"currency_id\":\"(.*?)\""
98
+ },
99
+ {
100
+ "jsonPath": "",
101
+ "xPath": "",
102
+ "regex": ",\"date\":\"(.*)\",\"sections\""
103
+ },
104
+ {
105
+ "jsonPath": "",
106
+ "xPath": "",
107
+ "regex": "\"operationId\":(.*?),\"activityName\":\"(.*?)\",\"activityStatus\":\"(.*?),"
108
+ }
109
+ ],
110
+ "mobile": {
111
+ "additionalClientOptions": {
112
+ "cipherSuites": [
113
+ "TLS_AES_128_GCM_SHA256",
114
+ "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256",
115
+ "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256"
116
+ ]
117
+ },
118
+ "includeAdditionalCookieDomains": [
119
+ "mercadolibre.com",
120
+ "www.mercadolibre.com"
121
+ ],
122
+ "useExternalAction": true,
123
+ "external": {
124
+ "actionLink": "mercadopago://",
125
+ "appStoreLink": "https://apps.apple.com/us/app/mercado-pago-cuenta-digital/id925436649",
126
+ "playStoreLink": "https://play.google.com/store/apps/details?id=com.mercadopago.wallet"
127
+ }
128
+ }
129
+ }
@@ -0,0 +1,130 @@
1
+ {
2
+ "actionType": "transfer_monzo",
3
+ "proofEngine": "reclaim",
4
+ "authLink": "https://web.monzo.com/",
5
+ "url": "https://api.monzo.com/transactions/{{TX_ID}}",
6
+ "method": "GET",
7
+ "body": "",
8
+ "metadata": {
9
+ "platform": "monzo",
10
+ "urlRegex": "https://internal-api.monzo.com/minimal-banking/transactions\\?account_id=\\S+&limit=50",
11
+ "method": "GET",
12
+ "fallbackUrlRegex": "",
13
+ "fallbackMethod": "",
14
+ "preprocessRegex": "",
15
+ "transactionsExtraction": {
16
+ "transactionJsonPathListSelector": "$.transactions",
17
+ "transactionJsonPathSelectors": {
18
+ "recipient": "$.counterparty.user_id",
19
+ "recipientName": "$.counterparty.name",
20
+ "amount": "$.amount",
21
+ "date": "$.settled",
22
+ "paymentId": "$.id",
23
+ "currency": "$.currency"
24
+ }
25
+ },
26
+ "proofMetadataSelectors": [
27
+ {
28
+ "type": "jsonPath",
29
+ "value": "$.transactions[{{INDEX}}].amount"
30
+ },
31
+ {
32
+ "type": "jsonPath",
33
+ "value": "$.transactions[{{INDEX}}].id"
34
+ },
35
+ {
36
+ "type": "jsonPath",
37
+ "value": "$.transactions[{{INDEX}}].counterparty.user_id"
38
+ },
39
+ {
40
+ "type": "jsonPath",
41
+ "value": "$.transactions[{{INDEX}}].settled"
42
+ }
43
+ ]
44
+ },
45
+ "paramNames": [
46
+ "TX_ID"
47
+ ],
48
+ "paramSelectors": [
49
+ {
50
+ "type": "jsonPath",
51
+ "value": "$.transactions[{{INDEX}}].id"
52
+ }
53
+ ],
54
+ "skipRequestHeaders": [],
55
+ "secretHeaders": [
56
+ "authorization"
57
+ ],
58
+ "responseMatches": [
59
+ {
60
+ "type": "regex",
61
+ "value": "\"amount\":(?<amount>[0-9\\-]+)"
62
+ },
63
+ {
64
+ "type": "regex",
65
+ "value": "\"settled\":\"(?<completedDate>[^\"]+)\""
66
+ },
67
+ {
68
+ "type": "regex",
69
+ "value": "\"user_id\":\"(?<userId>[^\"]+)\""
70
+ },
71
+ {
72
+ "type": "regex",
73
+ "value": "\"scheme\":\"p2p_payment\""
74
+ },
75
+ {
76
+ "type": "regex",
77
+ "value": "\"currency\":\"(?<currency>[^\"]+)\""
78
+ },
79
+ {
80
+ "type": "regex",
81
+ "value": "\"hold_decision_status\":\"decision_status\\.released\""
82
+ }
83
+ ],
84
+ "responseRedactions": [
85
+ {
86
+ "jsonPath": "$.transaction.amount",
87
+ "xPath": ""
88
+ },
89
+ {
90
+ "jsonPath": "$.transaction.settled",
91
+ "xPath": ""
92
+ },
93
+ {
94
+ "jsonPath": "$.transaction.counterparty.user_id",
95
+ "xPath": ""
96
+ },
97
+ {
98
+ "jsonPath": "$.transaction.scheme",
99
+ "xPath": ""
100
+ },
101
+ {
102
+ "jsonPath": "$.transaction.currency",
103
+ "xPath": ""
104
+ },
105
+ {
106
+ "jsonPath": "$.transaction.metadata.hold_decision_status",
107
+ "xPath": ""
108
+ }
109
+ ],
110
+ "mobile": {
111
+ "includeAdditionalCookieDomains": [],
112
+ "additionalClientOptions": {
113
+ "cipherSuites": [
114
+ "TLS_CHACHA20_POLY1305_SHA256",
115
+ "TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256",
116
+ "TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256"
117
+ ]
118
+ },
119
+ "userAgent": {
120
+ "android": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Safari/605.1.15",
121
+ "ios": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Safari/605.1.15"
122
+ },
123
+ "useExternalAction": true,
124
+ "external": {
125
+ "actionLink": "https://monzo.me/{{RECIPIENT_ID}}",
126
+ "appStoreLink": "https://apps.apple.com/us/app/monzo-mobile-banking/id1052238659",
127
+ "playStoreLink": "https://play.google.com/store/apps/details?id=co.uk.getmondo&hl=en_US"
128
+ }
129
+ }
130
+ }