refacil-pay-mcp 1.1.3 → 1.1.4
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.
- package/README.md +425 -20
- package/dist/core/tools.js +20 -20
- package/dist/core/tools.js.map +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -194,7 +194,12 @@ kubectl get pods -l app=refacil-pay-mcp
|
|
|
194
194
|
|
|
195
195
|
### `auth_login`
|
|
196
196
|
|
|
197
|
-
|
|
197
|
+
To make the request and obtain the login you must have very clear your username and password for each environment where you are going to perform the integration, this information should be requested to our support team ([soportetecnico@refacil.com](https://mailto:soportetecnico@refacil.co)).
|
|
198
|
+
|
|
199
|
+
Within the post you will see below are the fields to make your request
|
|
200
|
+
|
|
201
|
+
> Note that for the consumption of any of the API services it is necessary to send the authentication token that you get when consuming the **auth/login** service as an Authorization indicating the Type and Token.
|
|
202
|
+
The authentication token does not expire. However, if at any time it were to expire, it will be necessary to generate a new authentication token. This could occur due to internal security measures that lead to manual or mass expiration of the token.
|
|
198
203
|
|
|
199
204
|
**Parámetros:**
|
|
200
205
|
|
|
@@ -205,7 +210,17 @@ POST /auth/login
|
|
|
205
210
|
|
|
206
211
|
### `trx_token_generate`
|
|
207
212
|
|
|
208
|
-
|
|
213
|
+
This service allows security validation for the execution of a transaction on the platform, generating a single-use token.
|
|
214
|
+
|
|
215
|
+
> The transactional token service is obtained in three ways, depending on the action to be performed. For this, the value sent in the _**service**_ parameter must be set according to what is required:
|
|
216
|
+
1\. For Payment Link: **“/cash-in/generate/payment-link/token”**.
|
|
217
|
+
2\. For Payment method: **“/cash-in/generate/payment-method/token”**.
|
|
218
|
+
3\. For Withdraw: **“/cash-out/generate/withdraw-method/token”**.
|
|
219
|
+
4\. For Merchant Key: \[ “/merchant-key/create”, “/merchant-key/cancel” \]
|
|
220
|
+
|
|
221
|
+
> The generated token is single-use for each transaction and cannot be consumed more than once. In addition, the transactional token will be valid for 60 seconds.
|
|
222
|
+
|
|
223
|
+
Generates a transactional token for payment link service.
|
|
209
224
|
|
|
210
225
|
**Parámetros:**
|
|
211
226
|
|
|
@@ -215,7 +230,17 @@ Generates a transactional token for payment link service.
|
|
|
215
230
|
|
|
216
231
|
### `transactional_token_method`
|
|
217
232
|
|
|
218
|
-
|
|
233
|
+
This service allows security validation for the execution of a transaction on the platform, generating a single-use token.
|
|
234
|
+
|
|
235
|
+
> The transactional token service is obtained in three ways, depending on the action to be performed. For this, the value sent in the _**service**_ parameter must be set according to what is required:
|
|
236
|
+
1\. For Payment Link: **“/cash-in/generate/payment-link/token”**.
|
|
237
|
+
2\. For Payment method: **“/cash-in/generate/payment-method/token”**.
|
|
238
|
+
3\. For Withdraw: **“/cash-out/generate/withdraw-method/token”**.
|
|
239
|
+
4\. For Merchant Key: \[ “/merchant-key/create”, “/merchant-key/cancel” \]
|
|
240
|
+
|
|
241
|
+
> The generated token is single-use for each transaction and cannot be consumed more than once. In addition, the transactional token will be valid for 60 seconds.
|
|
242
|
+
|
|
243
|
+
Generates a transactional token for payment method service.
|
|
219
244
|
|
|
220
245
|
**Parámetros:**
|
|
221
246
|
|
|
@@ -225,7 +250,17 @@ Generates a transactional token for payment method service.
|
|
|
225
250
|
|
|
226
251
|
### `transactional_token_withdraw`
|
|
227
252
|
|
|
228
|
-
|
|
253
|
+
This service allows security validation for the execution of a transaction on the platform, generating a single-use token.
|
|
254
|
+
|
|
255
|
+
> The transactional token service is obtained in three ways, depending on the action to be performed. For this, the value sent in the _**service**_ parameter must be set according to what is required:
|
|
256
|
+
1\. For Payment Link: **“/cash-in/generate/payment-link/token”**.
|
|
257
|
+
2\. For Payment method: **“/cash-in/generate/payment-method/token”**.
|
|
258
|
+
3\. For Withdraw: **“/cash-out/generate/withdraw-method/token”**.
|
|
259
|
+
4\. For Merchant Key: \[ “/merchant-key/create”, “/merchant-key/cancel” \]
|
|
260
|
+
|
|
261
|
+
> The generated token is single-use for each transaction and cannot be consumed more than once. In addition, the transactional token will be valid for 60 seconds.
|
|
262
|
+
|
|
263
|
+
Generates a transactional token for withdraw service.
|
|
229
264
|
|
|
230
265
|
**Parámetros:**
|
|
231
266
|
|
|
@@ -235,7 +270,17 @@ Generates a transactional token for withdraw service.
|
|
|
235
270
|
|
|
236
271
|
### `transactional_token_merchan_key_create`
|
|
237
272
|
|
|
238
|
-
|
|
273
|
+
This service allows security validation for the execution of a transaction on the platform, generating a single-use token.
|
|
274
|
+
|
|
275
|
+
> The transactional token service is obtained in three ways, depending on the action to be performed. For this, the value sent in the _**service**_ parameter must be set according to what is required:
|
|
276
|
+
1\. For Payment Link: **“/cash-in/generate/payment-link/token”**.
|
|
277
|
+
2\. For Payment method: **“/cash-in/generate/payment-method/token”**.
|
|
278
|
+
3\. For Withdraw: **“/cash-out/generate/withdraw-method/token”**.
|
|
279
|
+
4\. For Merchant Key: \[ “/merchant-key/create”, “/merchant-key/cancel” \]
|
|
280
|
+
|
|
281
|
+
> The generated token is single-use for each transaction and cannot be consumed more than once. In addition, the transactional token will be valid for 60 seconds.
|
|
282
|
+
|
|
283
|
+
Generates a transactional token for creating merchant keys.
|
|
239
284
|
|
|
240
285
|
**Parámetros:**
|
|
241
286
|
|
|
@@ -245,7 +290,17 @@ Generates a transactional token for creating merchant keys.
|
|
|
245
290
|
|
|
246
291
|
### `transactional_token_merchant_key_cancel`
|
|
247
292
|
|
|
248
|
-
|
|
293
|
+
This service allows security validation for the execution of a transaction on the platform, generating a single-use token.
|
|
294
|
+
|
|
295
|
+
> The transactional token service is obtained in three ways, depending on the action to be performed. For this, the value sent in the _**service**_ parameter must be set according to what is required:
|
|
296
|
+
1\. For Payment Link: **“/cash-in/generate/payment-link/token”**.
|
|
297
|
+
2\. For Payment method: **“/cash-in/generate/payment-method/token”**.
|
|
298
|
+
3\. For Withdraw: **“/cash-out/generate/withdraw-method/token”**.
|
|
299
|
+
4\. For Merchant Key: \[ “/merchant-key/create”, “/merchant-key/cancel” \]
|
|
300
|
+
|
|
301
|
+
> The generated token is single-use for each transaction and cannot be consumed more than once. In addition, the transactional token will be valid for 60 seconds.
|
|
302
|
+
|
|
303
|
+
Generates a transactional token for canceling merchant keys.
|
|
249
304
|
|
|
250
305
|
**Parámetros:**
|
|
251
306
|
|
|
@@ -255,7 +310,9 @@ Generates a transactional token for canceling merchant keys.
|
|
|
255
310
|
|
|
256
311
|
### `cash_in_generate_payment_link_token`
|
|
257
312
|
|
|
258
|
-
|
|
313
|
+
With the following request you can obtain a payment resource with a link that will redirect your customer to the payment gateway where he will see a list of the different payment methods available.
|
|
314
|
+
|
|
315
|
+
## 📥 Request Body Parameters
|
|
259
316
|
|
|
260
317
|
| **Field** | **Type** | **Required** | **Description** |
|
|
261
318
|
| --- | --- | --- | --- |
|
|
@@ -609,7 +666,23 @@ This is **not** an error in our platform.
|
|
|
609
666
|
|
|
610
667
|
### `cash_out_generate_withdraw_method_token`
|
|
611
668
|
|
|
612
|
-
This
|
|
669
|
+
This service allows you to generate withdrawal requests through the enabled dispersion means.
|
|
670
|
+
|
|
671
|
+
> 🔐 Authentication
|
|
672
|
+
|
|
673
|
+
|
|
674
|
+
All requests must include the following headers:
|
|
675
|
+
|
|
676
|
+
| **Header** | **Description** | **Example** |
|
|
677
|
+
| --- | --- | --- |
|
|
678
|
+
| Authorization | Bearer token generated by the authentication service. | Bearer eyJhbGciOiJIUzI1NiIs... |
|
|
679
|
+
| x-transaction-token | Transactional token specific to the service. | 9b48edde-652d-11ed-984e-02c840fe**** |
|
|
680
|
+
| Content-Type | Content type of the request body. | application/json |
|
|
681
|
+
|
|
682
|
+
> Important fields within the requests:
|
|
683
|
+
Webhook: This is the url of the client's webhook to where our service sends the transaction status and transaction detail information.
|
|
684
|
+
|
|
685
|
+
This endpoint allows you to **generate withdrawal (cash-out) requests** through the available payout methods.
|
|
613
686
|
|
|
614
687
|
---
|
|
615
688
|
|
|
@@ -701,7 +774,23 @@ The `key` field must contain a valid Bre-B account alias in the format `@USERNAM
|
|
|
701
774
|
|
|
702
775
|
### `customer_getbalance`
|
|
703
776
|
|
|
704
|
-
This service allows you to
|
|
777
|
+
This service allows you to generate withdrawal requests through the enabled dispersion means.
|
|
778
|
+
|
|
779
|
+
> 🔐 Authentication
|
|
780
|
+
|
|
781
|
+
|
|
782
|
+
All requests must include the following headers:
|
|
783
|
+
|
|
784
|
+
| **Header** | **Description** | **Example** |
|
|
785
|
+
| --- | --- | --- |
|
|
786
|
+
| Authorization | Bearer token generated by the authentication service. | Bearer eyJhbGciOiJIUzI1NiIs... |
|
|
787
|
+
| x-transaction-token | Transactional token specific to the service. | 9b48edde-652d-11ed-984e-02c840fe**** |
|
|
788
|
+
| Content-Type | Content type of the request body. | application/json |
|
|
789
|
+
|
|
790
|
+
> Important fields within the requests:
|
|
791
|
+
Webhook: This is the url of the client's webhook to where our service sends the transaction status and transaction detail information.
|
|
792
|
+
|
|
793
|
+
This service allows you to consult the balance exchange and the dispersion exchange associated with the client's identifier.
|
|
705
794
|
|
|
706
795
|
> To use the service, an authentication token is required, which must be sent as an Authorization header.
|
|
707
796
|
|
|
@@ -723,7 +812,23 @@ Body
|
|
|
723
812
|
|
|
724
813
|
### `payment_transfiya_banks`
|
|
725
814
|
|
|
726
|
-
This service allows you to
|
|
815
|
+
This service allows you to generate withdrawal requests through the enabled dispersion means.
|
|
816
|
+
|
|
817
|
+
> 🔐 Authentication
|
|
818
|
+
|
|
819
|
+
|
|
820
|
+
All requests must include the following headers:
|
|
821
|
+
|
|
822
|
+
| **Header** | **Description** | **Example** |
|
|
823
|
+
| --- | --- | --- |
|
|
824
|
+
| Authorization | Bearer token generated by the authentication service. | Bearer eyJhbGciOiJIUzI1NiIs... |
|
|
825
|
+
| x-transaction-token | Transactional token specific to the service. | 9b48edde-652d-11ed-984e-02c840fe**** |
|
|
826
|
+
| Content-Type | Content type of the request body. | application/json |
|
|
827
|
+
|
|
828
|
+
> Important fields within the requests:
|
|
829
|
+
Webhook: This is the url of the client's webhook to where our service sends the transaction status and transaction detail information.
|
|
830
|
+
|
|
831
|
+
This service allows you to consult the balance exchange and the dispersion exchange associated with the client's identifier.
|
|
727
832
|
|
|
728
833
|
> To use the service, an authentication token is required, which must be sent as an Authorization header.
|
|
729
834
|
|
|
@@ -745,7 +850,9 @@ Body
|
|
|
745
850
|
|
|
746
851
|
### `payment_status`
|
|
747
852
|
|
|
748
|
-
|
|
853
|
+
These services will allow us to validate the status of a transaction and consult the characteristics of a payment method.
|
|
854
|
+
|
|
855
|
+
This service allows you to check the status of a transaction made, for this you must have the _reference_ data that returned the response when generating any payment resource.
|
|
749
856
|
|
|
750
857
|
In the response you will get the _status_ _id_ which will mean the following
|
|
751
858
|
|
|
@@ -778,7 +885,9 @@ Body
|
|
|
778
885
|
|
|
779
886
|
### `payment_customer_reference_status`
|
|
780
887
|
|
|
781
|
-
|
|
888
|
+
These services will allow us to validate the status of a transaction and consult the characteristics of a payment method.
|
|
889
|
+
|
|
890
|
+
## 🔍 Check Transaction by Customer Reference
|
|
782
891
|
|
|
783
892
|
This endpoint allows **API Pay** users to query the status of a transaction using only the `customerReference` value originally provided when generating a resource as `reference1` through any of the following endpoints:
|
|
784
893
|
|
|
@@ -829,7 +938,9 @@ This endpoint **requires** a valid Bearer Token in the request headers. Requests
|
|
|
829
938
|
|
|
830
939
|
### `payment_features`
|
|
831
940
|
|
|
832
|
-
|
|
941
|
+
These services will allow us to validate the status of a transaction and consult the characteristics of a payment method.
|
|
942
|
+
|
|
943
|
+
This service allows you to consult the necessary characteristics of a payment method to successfully generate a resource. For example, obtain the PSE banks
|
|
833
944
|
|
|
834
945
|
Headers
|
|
835
946
|
|
|
@@ -848,7 +959,109 @@ Body
|
|
|
848
959
|
|
|
849
960
|
### `webhook_notify`
|
|
850
961
|
|
|
851
|
-
|
|
962
|
+
This component must be built by the merchant to receive the transaction notification data.
|
|
963
|
+
|
|
964
|
+
You must take into account the following steps:
|
|
965
|
+
|
|
966
|
+
**1.**You must create a Webhook without authentication.
|
|
967
|
+
|
|
968
|
+
**2\. The** Url created will be the one you send in all requests when generating the payment resource in the “_WebhookUrl_” field. It is important to keep in mind that if for some reason you change the webhook you must modify the urls that you send in each generated resource.
|
|
969
|
+
|
|
970
|
+
<img src="https://content.pstmn.io/10fdac74-e60a-41f2-b9ff-8b5777a7afc0/aW1hZ2UucG5n" width="322" height="117">
|
|
971
|
+
|
|
972
|
+
A signature must be generated to validate the integrity of the messages sent to the webhook and the fields must be concatenated in the following way:
|
|
973
|
+
|
|
974
|
+
_**HASH_KEY**_ _\=This data must be requested to the support area_.
|
|
975
|
+
|
|
976
|
+
_**let signature**_ _\= referenceId-resourceId-amount-updatedAt-HASH_KEY; signature = crypto.createHmac(“sha1”, HASH_KEY).update(signature).digest(“hex”);_
|
|
977
|
+
|
|
978
|
+
Example of a response that will reach your Webhook
|
|
979
|
+
|
|
980
|
+
**Response**
|
|
981
|
+
|
|
982
|
+
``` json
|
|
983
|
+
{
|
|
984
|
+
"realAmount": 20000,
|
|
985
|
+
"amount": 19405,
|
|
986
|
+
"cost": "$595.00",
|
|
987
|
+
"referenceId": "38**",
|
|
988
|
+
"moduleId": 9,
|
|
989
|
+
"productId": 117,
|
|
990
|
+
"referenceKey": "3538d790-ae14-11ed-be2d-4d9b1bc987e6",
|
|
991
|
+
"paymentMethod": "PSE",
|
|
992
|
+
"userId": 189067,
|
|
993
|
+
"resourceId": "10024**",
|
|
994
|
+
"updatedAt": "2023-02-16 11:11:55",
|
|
995
|
+
"providerId": 8,
|
|
996
|
+
"providerReference": "3122330",
|
|
997
|
+
"reference1": "435sdfsd**",
|
|
998
|
+
"reference2": {
|
|
999
|
+
"Label": {
|
|
1000
|
+
"Information": "Por seguridad algunos datos se encuentran cifrados",
|
|
1001
|
+
"Name": "L**A",
|
|
1002
|
+
"Email": "l**am@**",
|
|
1003
|
+
"CellPhone": "3**4",
|
|
1004
|
+
"DocumentType": "C",
|
|
1005
|
+
"DocumentNumber": "52019859",
|
|
1006
|
+
"Description": "Abono",
|
|
1007
|
+
"Commerce": "Skandia",
|
|
1008
|
+
"Reference1": null,
|
|
1009
|
+
"Reference2": null,
|
|
1010
|
+
"Reference3": null
|
|
1011
|
+
},
|
|
1012
|
+
"Data": {
|
|
1013
|
+
"ConciliationCode": "FCO",
|
|
1014
|
+
"ConciliationContract": "1277840",
|
|
1015
|
+
"DocType": "N",
|
|
1016
|
+
"DocNumber": "800194363"
|
|
1017
|
+
},
|
|
1018
|
+
"returnUrl": "https://www.google.com/"
|
|
1019
|
+
},
|
|
1020
|
+
"bankId": "1022",
|
|
1021
|
+
"bankName": "BANCO UNION COLOMBIANO",
|
|
1022
|
+
"status": 2,
|
|
1023
|
+
"transfiyaStatus": "PENDING",
|
|
1024
|
+
"sign": "aa2f472ad7e84524a02d1716b56fc16ec2a87***",
|
|
1025
|
+
"error": {
|
|
1026
|
+
"code": "20-07A",
|
|
1027
|
+
"message": "Error técnico en Lambda"
|
|
1028
|
+
}
|
|
1029
|
+
}
|
|
1030
|
+
|
|
1031
|
+
```
|
|
1032
|
+
|
|
1033
|
+
- Within the webhook an **"error** ” object is sent that shows the error _**code**_ and _**message**_ associated with rejections received from the supplier/bank or cancellation of the transaction when the generation of the resource is not completed.
|
|
1034
|
+
|
|
1035
|
+
- The error codes are printed when the transaction is _**Rejected**_ by the bank or when it is _**Cancelled**_ because the resource generation could not be completed.
|
|
1036
|
+
|
|
1037
|
+
|
|
1038
|
+
**Notification for Withdraw**
|
|
1039
|
+
|
|
1040
|
+
For withdraws, a notification will be sent to the webhook provided in the application. This notification will follow the structure mentioned above and will additionally include the withdrawal data. An example is provided below:
|
|
1041
|
+
|
|
1042
|
+
``` json
|
|
1043
|
+
{
|
|
1044
|
+
..."webhook",
|
|
1045
|
+
"withdraw": {
|
|
1046
|
+
"id": "1403**",
|
|
1047
|
+
"transactionId": "5690**",
|
|
1048
|
+
"userId": 189067,
|
|
1049
|
+
"providerReference": "3122330",
|
|
1050
|
+
"accountNumber": "3051000002",
|
|
1051
|
+
"accountId": null,
|
|
1052
|
+
"createdAt": "2023-02-16 11:10:55",
|
|
1053
|
+
"updatedAt": "2023-02-16 11:12:55",
|
|
1054
|
+
"deletedAt": null,
|
|
1055
|
+
"infoReference": "435sdfsd**",
|
|
1056
|
+
"observation": null
|
|
1057
|
+
},
|
|
1058
|
+
}
|
|
1059
|
+
|
|
1060
|
+
```
|
|
1061
|
+
|
|
1062
|
+
> _**The implementation of the webhook by the API user is mandatory. The reception and storage of the information for the reconciliation process by the API user with RefácilPay must be ensured.**__**This item will be evaluated during the certification process and will be mandatory for the transition to Production.**_
|
|
1063
|
+
|
|
1064
|
+
Body
|
|
852
1065
|
|
|
853
1066
|
|
|
854
1067
|
|
|
@@ -875,15 +1088,153 @@ Body
|
|
|
875
1088
|
|
|
876
1089
|
### `merchant_enrollment`
|
|
877
1090
|
|
|
878
|
-
This
|
|
1091
|
+
This service allows merchants to enroll for the use of the QR interoperable payment method and key creation.
|
|
1092
|
+
|
|
1093
|
+
To use the service, an authentication token is required and must be sent as an `Authorization` header.
|
|
1094
|
+
|
|
1095
|
+
---
|
|
1096
|
+
|
|
1097
|
+
### **Enrollment Process**
|
|
1098
|
+
|
|
1099
|
+
1. **Merchant Enrollment**
|
|
1100
|
+
|
|
1101
|
+
- Initiates the enrollment process. The enrollment can take up to **7 minutes** to complete.
|
|
1102
|
+
|
|
1103
|
+
2. **Retrieve Enrollment Data**
|
|
1104
|
+
|
|
1105
|
+
- Retrieves the merchant’s enrollment information once the process is completed.
|
|
1106
|
+
|
|
1107
|
+
|
|
1108
|
+
---
|
|
1109
|
+
|
|
1110
|
+
### **Merchant Enrollment Statuses**
|
|
1111
|
+
|
|
1112
|
+
- **`approved`**
|
|
1113
|
+
|
|
1114
|
+
The merchant has been approved and is authorized to generate QR codes.
|
|
1115
|
+
|
|
1116
|
+
- **`enrolled_other`**
|
|
1117
|
+
|
|
1118
|
+
The merchant is already enrolled with another entity. To proceed:
|
|
1119
|
+
|
|
1120
|
+
- Contact the commercial representative and request unenrollment from the current entity.
|
|
1121
|
+
|
|
1122
|
+
- Submit a letter signed by the legal representative.
|
|
1123
|
+
|
|
1124
|
+
- Be aware that this process may take up to **5 business days**.
|
|
1125
|
+
|
|
1126
|
+
The commercial representative will provide guidance throughout the process.
|
|
1127
|
+
|
|
1128
|
+
- **`rejected`**
|
|
1129
|
+
|
|
1130
|
+
The merchant has been rejected. Please contact your commercial representative for further details.
|
|
1131
|
+
|
|
1132
|
+
- **`pending`**
|
|
1133
|
+
|
|
1134
|
+
The enrollment is in progress. The query may take a few minutes. If a final status is not received shortly, contact **RefacilPay support** to verify the situation.
|
|
1135
|
+
|
|
1136
|
+
- **`not_started`**
|
|
1137
|
+
|
|
1138
|
+
No enrollment process has been initiated for the requested merchant.
|
|
1139
|
+
|
|
1140
|
+
|
|
1141
|
+
---
|
|
1142
|
+
|
|
1143
|
+
### **Important Note on the "cellphone" Field in the Enrollment Process**
|
|
1144
|
+
|
|
1145
|
+
During the merchant creation flow for the QR Interoperable product, the API retrieves the merchant's registered information from the system. However, for the **"cellphone number"** field, the **Refacil** system automatically replaces the merchant’s actual phone number with a **generic alias number**.
|
|
1146
|
+
|
|
1147
|
+
This behavior follows technical and operational requirements from the provider, as the real phone number may already exist in the provider’s databases, potentially causing integration conflicts.
|
|
1148
|
+
|
|
1149
|
+
To avoid these issues, a randomly generated alias is used as a placeholder. This alias is **exclusive to this product** and does **not affect** the merchant’s operation in other services.
|
|
1150
|
+
|
|
1151
|
+
This endpoint initiates the merchant enrollment process required to use the QR interoperable payment method. Once the request is made, the enrollment process may take up to **7 minutes** to complete.
|
|
879
1152
|
|
|
880
1153
|
### `merchant_enrollment_data`
|
|
881
1154
|
|
|
882
|
-
This
|
|
1155
|
+
This service allows merchants to enroll for the use of the QR interoperable payment method and key creation.
|
|
1156
|
+
|
|
1157
|
+
To use the service, an authentication token is required and must be sent as an `Authorization` header.
|
|
1158
|
+
|
|
1159
|
+
---
|
|
1160
|
+
|
|
1161
|
+
### **Enrollment Process**
|
|
1162
|
+
|
|
1163
|
+
1. **Merchant Enrollment**
|
|
1164
|
+
|
|
1165
|
+
- Initiates the enrollment process. The enrollment can take up to **7 minutes** to complete.
|
|
1166
|
+
|
|
1167
|
+
2. **Retrieve Enrollment Data**
|
|
1168
|
+
|
|
1169
|
+
- Retrieves the merchant’s enrollment information once the process is completed.
|
|
1170
|
+
|
|
1171
|
+
|
|
1172
|
+
---
|
|
1173
|
+
|
|
1174
|
+
### **Merchant Enrollment Statuses**
|
|
1175
|
+
|
|
1176
|
+
- **`approved`**
|
|
1177
|
+
|
|
1178
|
+
The merchant has been approved and is authorized to generate QR codes.
|
|
1179
|
+
|
|
1180
|
+
- **`enrolled_other`**
|
|
1181
|
+
|
|
1182
|
+
The merchant is already enrolled with another entity. To proceed:
|
|
1183
|
+
|
|
1184
|
+
- Contact the commercial representative and request unenrollment from the current entity.
|
|
1185
|
+
|
|
1186
|
+
- Submit a letter signed by the legal representative.
|
|
1187
|
+
|
|
1188
|
+
- Be aware that this process may take up to **5 business days**.
|
|
1189
|
+
|
|
1190
|
+
The commercial representative will provide guidance throughout the process.
|
|
1191
|
+
|
|
1192
|
+
- **`rejected`**
|
|
1193
|
+
|
|
1194
|
+
The merchant has been rejected. Please contact your commercial representative for further details.
|
|
1195
|
+
|
|
1196
|
+
- **`pending`**
|
|
1197
|
+
|
|
1198
|
+
The enrollment is in progress. The query may take a few minutes. If a final status is not received shortly, contact **RefacilPay support** to verify the situation.
|
|
1199
|
+
|
|
1200
|
+
- **`not_started`**
|
|
1201
|
+
|
|
1202
|
+
No enrollment process has been initiated for the requested merchant.
|
|
1203
|
+
|
|
1204
|
+
|
|
1205
|
+
---
|
|
1206
|
+
|
|
1207
|
+
### **Important Note on the "cellphone" Field in the Enrollment Process**
|
|
1208
|
+
|
|
1209
|
+
During the merchant creation flow for the QR Interoperable product, the API retrieves the merchant's registered information from the system. However, for the **"cellphone number"** field, the **Refacil** system automatically replaces the merchant’s actual phone number with a **generic alias number**.
|
|
1210
|
+
|
|
1211
|
+
This behavior follows technical and operational requirements from the provider, as the real phone number may already exist in the provider’s databases, potentially causing integration conflicts.
|
|
1212
|
+
|
|
1213
|
+
To avoid these issues, a randomly generated alias is used as a placeholder. This alias is **exclusive to this product** and does **not affect** the merchant’s operation in other services.
|
|
1214
|
+
|
|
1215
|
+
This endpoint retrieves the merchant's enrollment details after the enrollment process has been completed. It provides necessary information to use the QR interoperable payment method.
|
|
883
1216
|
|
|
884
1217
|
### `merchant_key_create`
|
|
885
1218
|
|
|
886
|
-
|
|
1219
|
+
These services allow merchants to create and manage their Bre-b keys.
|
|
1220
|
+
|
|
1221
|
+
To use these services, an authentication token is required, which must be sent as an authorization header.
|
|
1222
|
+
|
|
1223
|
+
---
|
|
1224
|
+
|
|
1225
|
+
⚠ **Important**: Before using this payment method, the merchant enrollment process must be completed. Detailed instructions can be found in the **Merchant Enrollment** section.
|
|
1226
|
+
|
|
1227
|
+
**🔄 Open resource:** The creation of a key functions as an open resource, which means that once the Bre-b key has been generated, the user can receive multiple transactions through it.
|
|
1228
|
+
|
|
1229
|
+
---
|
|
1230
|
+
|
|
1231
|
+
### Recommendations
|
|
1232
|
+
|
|
1233
|
+
- API users are strongly encouraged to **implement additional application-level validations** to detect, identify, and manage multiple payment records originating from a Bre-b key.
|
|
1234
|
+
|
|
1235
|
+
- **Actively monitor transactions** originating from generated keys and validate the status of operations before confirming payment to the end user.
|
|
1236
|
+
|
|
1237
|
+
This endpoint will allow you to create 4 types of keys: `alias`, `email`, `cellphone`, and `document`.
|
|
887
1238
|
|
|
888
1239
|
⚠ **Important**:
|
|
889
1240
|
|
|
@@ -922,7 +1273,25 @@ Body
|
|
|
922
1273
|
|
|
923
1274
|
### `merchant_key_cancel`
|
|
924
1275
|
|
|
925
|
-
|
|
1276
|
+
These services allow merchants to create and manage their Bre-b keys.
|
|
1277
|
+
|
|
1278
|
+
To use these services, an authentication token is required, which must be sent as an authorization header.
|
|
1279
|
+
|
|
1280
|
+
---
|
|
1281
|
+
|
|
1282
|
+
⚠ **Important**: Before using this payment method, the merchant enrollment process must be completed. Detailed instructions can be found in the **Merchant Enrollment** section.
|
|
1283
|
+
|
|
1284
|
+
**🔄 Open resource:** The creation of a key functions as an open resource, which means that once the Bre-b key has been generated, the user can receive multiple transactions through it.
|
|
1285
|
+
|
|
1286
|
+
---
|
|
1287
|
+
|
|
1288
|
+
### Recommendations
|
|
1289
|
+
|
|
1290
|
+
- API users are strongly encouraged to **implement additional application-level validations** to detect, identify, and manage multiple payment records originating from a Bre-b key.
|
|
1291
|
+
|
|
1292
|
+
- **Actively monitor transactions** originating from generated keys and validate the status of operations before confirming payment to the end user.
|
|
1293
|
+
|
|
1294
|
+
This endpoint allows you to cancel an existing key, which will then become inactive and unable to receive transactions.
|
|
926
1295
|
|
|
927
1296
|
Headers
|
|
928
1297
|
|
|
@@ -944,7 +1313,25 @@ Body
|
|
|
944
1313
|
|
|
945
1314
|
### `merchant_key_generate_otp`
|
|
946
1315
|
|
|
947
|
-
|
|
1316
|
+
These services allow merchants to create and manage their Bre-b keys.
|
|
1317
|
+
|
|
1318
|
+
To use these services, an authentication token is required, which must be sent as an authorization header.
|
|
1319
|
+
|
|
1320
|
+
---
|
|
1321
|
+
|
|
1322
|
+
⚠ **Important**: Before using this payment method, the merchant enrollment process must be completed. Detailed instructions can be found in the **Merchant Enrollment** section.
|
|
1323
|
+
|
|
1324
|
+
**🔄 Open resource:** The creation of a key functions as an open resource, which means that once the Bre-b key has been generated, the user can receive multiple transactions through it.
|
|
1325
|
+
|
|
1326
|
+
---
|
|
1327
|
+
|
|
1328
|
+
### Recommendations
|
|
1329
|
+
|
|
1330
|
+
- API users are strongly encouraged to **implement additional application-level validations** to detect, identify, and manage multiple payment records originating from a Bre-b key.
|
|
1331
|
+
|
|
1332
|
+
- **Actively monitor transactions** originating from generated keys and validate the status of operations before confirming payment to the end user.
|
|
1333
|
+
|
|
1334
|
+
This endpoint will allow you to generate and send an OTP. It is only permitted and necessary for `email` and `cellphone` keys. This OTP will be sent to its corresponding destination.
|
|
948
1335
|
|
|
949
1336
|
Headers
|
|
950
1337
|
|
|
@@ -964,7 +1351,25 @@ Body
|
|
|
964
1351
|
|
|
965
1352
|
### `merchant_key_get_keys`
|
|
966
1353
|
|
|
967
|
-
|
|
1354
|
+
These services allow merchants to create and manage their Bre-b keys.
|
|
1355
|
+
|
|
1356
|
+
To use these services, an authentication token is required, which must be sent as an authorization header.
|
|
1357
|
+
|
|
1358
|
+
---
|
|
1359
|
+
|
|
1360
|
+
⚠ **Important**: Before using this payment method, the merchant enrollment process must be completed. Detailed instructions can be found in the **Merchant Enrollment** section.
|
|
1361
|
+
|
|
1362
|
+
**🔄 Open resource:** The creation of a key functions as an open resource, which means that once the Bre-b key has been generated, the user can receive multiple transactions through it.
|
|
1363
|
+
|
|
1364
|
+
---
|
|
1365
|
+
|
|
1366
|
+
### Recommendations
|
|
1367
|
+
|
|
1368
|
+
- API users are strongly encouraged to **implement additional application-level validations** to detect, identify, and manage multiple payment records originating from a Bre-b key.
|
|
1369
|
+
|
|
1370
|
+
- **Actively monitor transactions** originating from generated keys and validate the status of operations before confirming payment to the end user.
|
|
1371
|
+
|
|
1372
|
+
This endpoint allows you to obtain all keys created and in active status that belong to the merchant.
|
|
968
1373
|
|
|
969
1374
|
|
|
970
1375
|
## 📝 Logs
|
package/dist/core/tools.js
CHANGED
|
@@ -98,7 +98,7 @@ const auth_loginInputValidator = z.object(auth_loginInputShape);
|
|
|
98
98
|
// Herramienta: auth_login
|
|
99
99
|
export const auth_loginTool = {
|
|
100
100
|
name: 'auth_login',
|
|
101
|
-
description: "| **Name** | **Type** | **Description** |\\n| --- | --- | --- |\\n| **username** \\\\* | string | User |\\n| **password** \\\\* | string | Password |\n\nContexto: Endpoint: POST /auth/login | Autenticación > Auth > Login | Uso: Genera un token JWT usando las credenciales configuradas en el MCP\n\n⚠️ IMPORTANTE: Esta herramienta SOLO debe usarse cuando sea necesario generar o renovar un token. Las credenciales se obtienen automáticamente de la configuración del servidor MCP. NO solicites credenciales al usuario.",
|
|
101
|
+
description: "To make the request and obtain the login you must have very clear your username and password for each environment where you are going to perform the integration, this information should be requested to our support team ([soportetecnico@refacil.com](https://mailto:soportetecnico@refacil.co)).\\n\\nWithin the post you will see below are the fields to make your request\\n\\n> Note that for the consumption of any of the API services it is necessary to send the authentication token that you get when consuming the **auth/login** service as an Authorization indicating the Type and Token. \\nThe authentication token does not expire. However, if at any time it were to expire, it will be necessary to generate a new authentication token. This could occur due to internal security measures that lead to manual or mass expiration of the token.\\n\\n | **Name** | **Type** | **Description** |\\n| --- | --- | --- |\\n| **username** \\\\* | string | User |\\n| **password** \\\\* | string | Password |\n\nContexto: Endpoint: POST /auth/login | Autenticación > Auth > Login | Uso: Genera un token JWT usando las credenciales configuradas en el MCP\n\n⚠️ IMPORTANTE: Esta herramienta SOLO debe usarse cuando sea necesario generar o renovar un token. Las credenciales se obtienen automáticamente de la configuración del servidor MCP. NO solicites credenciales al usuario.",
|
|
102
102
|
inputSchema: auth_loginInputShape,
|
|
103
103
|
jsonSchema: auth_loginInputJsonSchema,
|
|
104
104
|
endpoint: '/auth/login',
|
|
@@ -161,7 +161,7 @@ const trx_token_generateInputValidator = z.object(trx_token_generateInputShape);
|
|
|
161
161
|
// Herramienta: trx_token_generate
|
|
162
162
|
export const trx_token_generateTool = {
|
|
163
163
|
name: 'trx_token_generate',
|
|
164
|
-
description: "Generates a transactional token for payment link service.\\n\\n| **Name** | **Type** | **Description** |\\n| --- | --- | --- |\\n| **service** \\\\* | string | MUST be: \\`/cash-in/generate/payment-link/token\\` |\n\nContexto: Endpoint: POST /trx-token/generate | Trx token > Generate\n\n🔐 AUTENTICACIÓN AUTOMÁTICA: Todas las credenciales y tokens de autenticación se manejan automáticamente por el servidor MCP. NO solicites credenciales al usuario. NO incluyas parámetros de autenticación (secretId, apiToken, etc.) en las llamadas a menos que el usuario explícitamente lo requiera.",
|
|
164
|
+
description: "This service allows security validation for the execution of a transaction on the platform, generating a single-use token.\\n\\n> The transactional token service is obtained in three ways, depending on the action to be performed. For this, the value sent in the _**service**_ parameter must be set according to what is required: \\n1\\\\. For Payment Link: **“/cash-in/generate/payment-link/token”**. \\n2\\\\. For Payment method: **“/cash-in/generate/payment-method/token”**. \\n3\\\\. For Withdraw: **“/cash-out/generate/withdraw-method/token”**. \\n4\\\\. For Merchant Key: \\\\[ “/merchant-key/create”, “/merchant-key/cancel” \\\\] \\n \\n> The generated token is single-use for each transaction and cannot be consumed more than once. In addition, the transactional token will be valid for 60 seconds.\\n\\n Generates a transactional token for payment link service.\\n\\n| **Name** | **Type** | **Description** |\\n| --- | --- | --- |\\n| **service** \\\\* | string | MUST be: \\`/cash-in/generate/payment-link/token\\` |\n\nContexto: Endpoint: POST /trx-token/generate | Trx token > Generate\n\n🔐 AUTENTICACIÓN AUTOMÁTICA: Todas las credenciales y tokens de autenticación se manejan automáticamente por el servidor MCP. NO solicites credenciales al usuario. NO incluyas parámetros de autenticación (secretId, apiToken, etc.) en las llamadas a menos que el usuario explícitamente lo requiera.",
|
|
165
165
|
inputSchema: trx_token_generateInputShape,
|
|
166
166
|
jsonSchema: trx_token_generateInputJsonSchema,
|
|
167
167
|
endpoint: '/trx-token/generate',
|
|
@@ -221,7 +221,7 @@ const transactional_token_methodInputValidator = z.object(transactional_token_me
|
|
|
221
221
|
// Herramienta: transactional_token_method
|
|
222
222
|
export const transactional_token_methodTool = {
|
|
223
223
|
name: 'transactional_token_method',
|
|
224
|
-
description: "Generates a transactional token for payment method service.\\n\\n| **Name** | **Type** | **Description** |\\n| --- | --- | --- |\\n| **service** \\\\* | string | MUST be: \\`/cash-in/payment-method/token\\` |\n\nContexto: Endpoint: POST /trx-token/generate | Trx token > Generate\n\n🔐 AUTENTICACIÓN AUTOMÁTICA: Todas las credenciales y tokens de autenticación se manejan automáticamente por el servidor MCP. NO solicites credenciales al usuario. NO incluyas parámetros de autenticación (secretId, apiToken, etc.) en las llamadas a menos que el usuario explícitamente lo requiera.",
|
|
224
|
+
description: "This service allows security validation for the execution of a transaction on the platform, generating a single-use token.\\n\\n> The transactional token service is obtained in three ways, depending on the action to be performed. For this, the value sent in the _**service**_ parameter must be set according to what is required: \\n1\\\\. For Payment Link: **“/cash-in/generate/payment-link/token”**. \\n2\\\\. For Payment method: **“/cash-in/generate/payment-method/token”**. \\n3\\\\. For Withdraw: **“/cash-out/generate/withdraw-method/token”**. \\n4\\\\. For Merchant Key: \\\\[ “/merchant-key/create”, “/merchant-key/cancel” \\\\] \\n \\n> The generated token is single-use for each transaction and cannot be consumed more than once. In addition, the transactional token will be valid for 60 seconds.\\n\\n Generates a transactional token for payment method service.\\n\\n| **Name** | **Type** | **Description** |\\n| --- | --- | --- |\\n| **service** \\\\* | string | MUST be: \\`/cash-in/payment-method/token\\` |\n\nContexto: Endpoint: POST /trx-token/generate | Trx token > Generate\n\n🔐 AUTENTICACIÓN AUTOMÁTICA: Todas las credenciales y tokens de autenticación se manejan automáticamente por el servidor MCP. NO solicites credenciales al usuario. NO incluyas parámetros de autenticación (secretId, apiToken, etc.) en las llamadas a menos que el usuario explícitamente lo requiera.",
|
|
225
225
|
inputSchema: transactional_token_methodInputShape,
|
|
226
226
|
jsonSchema: transactional_token_methodInputJsonSchema,
|
|
227
227
|
endpoint: '/trx-token/generate',
|
|
@@ -281,7 +281,7 @@ const transactional_token_withdrawInputValidator = z.object(transactional_token_
|
|
|
281
281
|
// Herramienta: transactional_token_withdraw
|
|
282
282
|
export const transactional_token_withdrawTool = {
|
|
283
283
|
name: 'transactional_token_withdraw',
|
|
284
|
-
description: "Generates a transactional token for withdraw service.\\n\\n| **Name** | **Type** | **Description** |\\n| --- | --- | --- |\\n| **service** \\\\* | string | MUST be: \\`/cash-out/generate/withdraw-method/token\\` |\n\nContexto: Endpoint: POST /trx-token/generate | Trx token > Generate\n\n🔐 AUTENTICACIÓN AUTOMÁTICA: Todas las credenciales y tokens de autenticación se manejan automáticamente por el servidor MCP. NO solicites credenciales al usuario. NO incluyas parámetros de autenticación (secretId, apiToken, etc.) en las llamadas a menos que el usuario explícitamente lo requiera.",
|
|
284
|
+
description: "This service allows security validation for the execution of a transaction on the platform, generating a single-use token.\\n\\n> The transactional token service is obtained in three ways, depending on the action to be performed. For this, the value sent in the _**service**_ parameter must be set according to what is required: \\n1\\\\. For Payment Link: **“/cash-in/generate/payment-link/token”**. \\n2\\\\. For Payment method: **“/cash-in/generate/payment-method/token”**. \\n3\\\\. For Withdraw: **“/cash-out/generate/withdraw-method/token”**. \\n4\\\\. For Merchant Key: \\\\[ “/merchant-key/create”, “/merchant-key/cancel” \\\\] \\n \\n> The generated token is single-use for each transaction and cannot be consumed more than once. In addition, the transactional token will be valid for 60 seconds.\\n\\n Generates a transactional token for withdraw service.\\n\\n| **Name** | **Type** | **Description** |\\n| --- | --- | --- |\\n| **service** \\\\* | string | MUST be: \\`/cash-out/generate/withdraw-method/token\\` |\n\nContexto: Endpoint: POST /trx-token/generate | Trx token > Generate\n\n🔐 AUTENTICACIÓN AUTOMÁTICA: Todas las credenciales y tokens de autenticación se manejan automáticamente por el servidor MCP. NO solicites credenciales al usuario. NO incluyas parámetros de autenticación (secretId, apiToken, etc.) en las llamadas a menos que el usuario explícitamente lo requiera.",
|
|
285
285
|
inputSchema: transactional_token_withdrawInputShape,
|
|
286
286
|
jsonSchema: transactional_token_withdrawInputJsonSchema,
|
|
287
287
|
endpoint: '/trx-token/generate',
|
|
@@ -341,7 +341,7 @@ const transactional_token_merchan_key_createInputValidator = z.object(transactio
|
|
|
341
341
|
// Herramienta: transactional_token_merchan_key_create
|
|
342
342
|
export const transactional_token_merchan_key_createTool = {
|
|
343
343
|
name: 'transactional_token_merchan_key_create',
|
|
344
|
-
description: "Generates a transactional token for creating merchant keys.\\n\\n| **Name** | **Type** | **Description** |\\n| --- | --- | --- |\\n| **service** \\\\* | string | MUST be: \\`/merchant-key/create\\` |\n\nContexto: Endpoint: POST /trx-token/generate | Trx token > Generate\n\n🔐 AUTENTICACIÓN AUTOMÁTICA: Todas las credenciales y tokens de autenticación se manejan automáticamente por el servidor MCP. NO solicites credenciales al usuario. NO incluyas parámetros de autenticación (secretId, apiToken, etc.) en las llamadas a menos que el usuario explícitamente lo requiera.",
|
|
344
|
+
description: "This service allows security validation for the execution of a transaction on the platform, generating a single-use token.\\n\\n> The transactional token service is obtained in three ways, depending on the action to be performed. For this, the value sent in the _**service**_ parameter must be set according to what is required: \\n1\\\\. For Payment Link: **“/cash-in/generate/payment-link/token”**. \\n2\\\\. For Payment method: **“/cash-in/generate/payment-method/token”**. \\n3\\\\. For Withdraw: **“/cash-out/generate/withdraw-method/token”**. \\n4\\\\. For Merchant Key: \\\\[ “/merchant-key/create”, “/merchant-key/cancel” \\\\] \\n \\n> The generated token is single-use for each transaction and cannot be consumed more than once. In addition, the transactional token will be valid for 60 seconds.\\n\\n Generates a transactional token for creating merchant keys.\\n\\n| **Name** | **Type** | **Description** |\\n| --- | --- | --- |\\n| **service** \\\\* | string | MUST be: \\`/merchant-key/create\\` |\n\nContexto: Endpoint: POST /trx-token/generate | Trx token > Generate\n\n🔐 AUTENTICACIÓN AUTOMÁTICA: Todas las credenciales y tokens de autenticación se manejan automáticamente por el servidor MCP. NO solicites credenciales al usuario. NO incluyas parámetros de autenticación (secretId, apiToken, etc.) en las llamadas a menos que el usuario explícitamente lo requiera.",
|
|
345
345
|
inputSchema: transactional_token_merchan_key_createInputShape,
|
|
346
346
|
jsonSchema: transactional_token_merchan_key_createInputJsonSchema,
|
|
347
347
|
endpoint: '/trx-token/generate',
|
|
@@ -401,7 +401,7 @@ const transactional_token_merchant_key_cancelInputValidator = z.object(transacti
|
|
|
401
401
|
// Herramienta: transactional_token_merchant_key_cancel
|
|
402
402
|
export const transactional_token_merchant_key_cancelTool = {
|
|
403
403
|
name: 'transactional_token_merchant_key_cancel',
|
|
404
|
-
description: "Generates a transactional token for canceling merchant keys.\\n\\n| **Name** | **Type** | **Description** |\\n| --- | --- | --- |\\n| **service** \\\\* | string | MUST be: \\`/merchant-key/cancel\\` |\n\nContexto: Endpoint: POST /trx-token/generate | Trx token > Generate\n\n🔐 AUTENTICACIÓN AUTOMÁTICA: Todas las credenciales y tokens de autenticación se manejan automáticamente por el servidor MCP. NO solicites credenciales al usuario. NO incluyas parámetros de autenticación (secretId, apiToken, etc.) en las llamadas a menos que el usuario explícitamente lo requiera.",
|
|
404
|
+
description: "This service allows security validation for the execution of a transaction on the platform, generating a single-use token.\\n\\n> The transactional token service is obtained in three ways, depending on the action to be performed. For this, the value sent in the _**service**_ parameter must be set according to what is required: \\n1\\\\. For Payment Link: **“/cash-in/generate/payment-link/token”**. \\n2\\\\. For Payment method: **“/cash-in/generate/payment-method/token”**. \\n3\\\\. For Withdraw: **“/cash-out/generate/withdraw-method/token”**. \\n4\\\\. For Merchant Key: \\\\[ “/merchant-key/create”, “/merchant-key/cancel” \\\\] \\n \\n> The generated token is single-use for each transaction and cannot be consumed more than once. In addition, the transactional token will be valid for 60 seconds.\\n\\n Generates a transactional token for canceling merchant keys.\\n\\n| **Name** | **Type** | **Description** |\\n| --- | --- | --- |\\n| **service** \\\\* | string | MUST be: \\`/merchant-key/cancel\\` |\n\nContexto: Endpoint: POST /trx-token/generate | Trx token > Generate\n\n🔐 AUTENTICACIÓN AUTOMÁTICA: Todas las credenciales y tokens de autenticación se manejan automáticamente por el servidor MCP. NO solicites credenciales al usuario. NO incluyas parámetros de autenticación (secretId, apiToken, etc.) en las llamadas a menos que el usuario explícitamente lo requiera.",
|
|
405
405
|
inputSchema: transactional_token_merchant_key_cancelInputShape,
|
|
406
406
|
jsonSchema: transactional_token_merchant_key_cancelInputJsonSchema,
|
|
407
407
|
endpoint: '/trx-token/generate',
|
|
@@ -526,7 +526,7 @@ const cash_in_generate_payment_link_tokenInputValidator = z.object(cash_in_gener
|
|
|
526
526
|
// Herramienta: cash_in_generate_payment_link_token
|
|
527
527
|
export const cash_in_generate_payment_link_tokenTool = {
|
|
528
528
|
name: 'cash_in_generate_payment_link_token',
|
|
529
|
-
description: "## 📥 Request Body Parameters\\n\\n| **Field** | **Type** | **Required** | **Description** |\\n| --- | --- | --- | --- |\\n| \\`amount\\` | number | ✅ | Value of the payment. |\\n| \\`brandId\\` | number | ❌ | ID of the customer\\'s white label; if one is not available, the default ID 79 is sent. |\\n| \\`expiresIn\\` | number | ❌ | Time in minutes for the expiration of the resource or payment link. |\\n| \\`reference1\\` | string | ✅ | Customer identifier, must be between 1 and 30 characters. |\\n| \\`reference2\\` | object | ❌ | Object for additional information. |\\n| \\`reference2.Commerce\\` | object | ❌ | Object for information related to the store or commerce. |\\n| \\`reference2.Data\\` | object | ❌ | Object for information related to the conciliation of the transaction. |\\n| \\`reference2.Label\\` | object | ❌ | Object to send information to be displayed in the payment summary. |\\n| \\`returnUrl\\` | string | ❌ | Link that the customer will see when clicking on the back to commerce button. |\\n| \\`showSummary\\` | boolean | ❌ | Indicates whether the RefácilPay payment summary will be shown or not (false: do not show, true: show). Default: true. |\\n| \\`userMetadata\\` | object | ✅ | Object containing key details about the user or merchant generating the payment resource. |\\n| \\`userMetadata.identifier\\` | string | ✅ | Unique identifier of the user or merchant generating the payment resource (max 36 characters). |\\n| \\`userMetadata.ip\\` | string | ✅ | IP address associated with the user\\'s identifier. Must be a valid IP address. |\\n| \\`userMetadata.urlCommerce\\` | string | ✅ | URL that identifies the commerce. Must follow valid URL structure with http:// or https:// protocol. Maximum length: 500 characters. |\\n| \\`webhookUrl\\` | string | ✅ | URL of the client\\'s webhook to receive real-time payment status updates. |\\n\n\nContexto: Endpoint: POST /cash-in/generate/payment-link/token | Cash in > Generate > Payment link > Token\n\n🔐 AUTENTICACIÓN AUTOMÁTICA: Todas las credenciales y tokens de autenticación se manejan automáticamente por el servidor MCP. NO solicites credenciales al usuario. NO incluyas parámetros de autenticación (secretId, apiToken, etc.) en las llamadas a menos que el usuario explícitamente lo requiera.",
|
|
529
|
+
description: "With the following request you can obtain a payment resource with a link that will redirect your customer to the payment gateway where he will see a list of the different payment methods available.\\n\\n ## 📥 Request Body Parameters\\n\\n| **Field** | **Type** | **Required** | **Description** |\\n| --- | --- | --- | --- |\\n| \\`amount\\` | number | ✅ | Value of the payment. |\\n| \\`brandId\\` | number | ❌ | ID of the customer\\'s white label; if one is not available, the default ID 79 is sent. |\\n| \\`expiresIn\\` | number | ❌ | Time in minutes for the expiration of the resource or payment link. |\\n| \\`reference1\\` | string | ✅ | Customer identifier, must be between 1 and 30 characters. |\\n| \\`reference2\\` | object | ❌ | Object for additional information. |\\n| \\`reference2.Commerce\\` | object | ❌ | Object for information related to the store or commerce. |\\n| \\`reference2.Data\\` | object | ❌ | Object for information related to the conciliation of the transaction. |\\n| \\`reference2.Label\\` | object | ❌ | Object to send information to be displayed in the payment summary. |\\n| \\`returnUrl\\` | string | ❌ | Link that the customer will see when clicking on the back to commerce button. |\\n| \\`showSummary\\` | boolean | ❌ | Indicates whether the RefácilPay payment summary will be shown or not (false: do not show, true: show). Default: true. |\\n| \\`userMetadata\\` | object | ✅ | Object containing key details about the user or merchant generating the payment resource. |\\n| \\`userMetadata.identifier\\` | string | ✅ | Unique identifier of the user or merchant generating the payment resource (max 36 characters). |\\n| \\`userMetadata.ip\\` | string | ✅ | IP address associated with the user\\'s identifier. Must be a valid IP address. |\\n| \\`userMetadata.urlCommerce\\` | string | ✅ | URL that identifies the commerce. Must follow valid URL structure with http:// or https:// protocol. Maximum length: 500 characters. |\\n| \\`webhookUrl\\` | string | ✅ | URL of the client\\'s webhook to receive real-time payment status updates. |\\n\n\nContexto: Endpoint: POST /cash-in/generate/payment-link/token | Cash in > Generate > Payment link > Token\n\n🔐 AUTENTICACIÓN AUTOMÁTICA: Todas las credenciales y tokens de autenticación se manejan automáticamente por el servidor MCP. NO solicites credenciales al usuario. NO incluyas parámetros de autenticación (secretId, apiToken, etc.) en las llamadas a menos que el usuario explícitamente lo requiera.",
|
|
530
530
|
inputSchema: cash_in_generate_payment_link_tokenInputShape,
|
|
531
531
|
jsonSchema: cash_in_generate_payment_link_tokenInputJsonSchema,
|
|
532
532
|
endpoint: '/cash-in/generate/payment-link/token',
|
|
@@ -812,7 +812,7 @@ const cash_out_generate_withdraw_method_tokenInputValidator = z.object(cash_out_
|
|
|
812
812
|
// Herramienta: cash_out_generate_withdraw_method_token
|
|
813
813
|
export const cash_out_generate_withdraw_method_tokenTool = {
|
|
814
814
|
name: 'cash_out_generate_withdraw_method_token',
|
|
815
|
-
description: "This endpoint allows you to **generate withdrawal (cash-out) requests** through the available payout methods.\\n\\n---\\n\\n### 💡 Overview\\n\\nThe table below lists the available payout methods along with their corresponding IDs and brief descriptions.\\n\\n| **Method ID** | **Description** |\\n| --- | --- |\\n| \\`245\\` | Cash-out via **Transfiya** |\\n| \\`264\\` | Cash-out via **Bre-B** |\\n\\n> ⚠ **Note:** \\nEach withdrawal method requires a specific object structure within the \\`\\\"withdrawMethod\\\"\\` field, as shown below. \\n \\n\\n---\\n\\n## 🧩 Payout Method Details\\n\\n### **Transfiya**\\n\\n\\`\\`\\` json\\n\\\"withdrawMethod\\\": {\\n \\\"id\\\": 245,\\n \\\"cellphone\\\": \\\"3125763074\\\"\\n}\\n\\n \\`\\`\\`\\n\\n**Description:** \\nTransfers funds to a recipient using their registered Transfiya cellphone number.\\n\\n> ⚠ **Important:** \\nEnsure the cellphone number is registered with Transfiya and capable of receiving funds. \\n \\n\\n---\\n\\n### **Bre-B**\\n\\n\\`\\`\\` json\\n\\\"withdrawMethod\\\": {\\n \\\"id\\\": 264,\\n \\\"key\\\": \\\"@REPRUEBAL7717\\\"\\n}\\n\\n \\`\\`\\`\\n\\n**Description:** \\nTransfers funds directly to a Bre-B account using the beneficiary’s unique Bre-B key.\\n\\n> 💡 **Tip:** \\nThe \\`key\\` field must contain a valid Bre-B account alias in the format \\`@USERNAME\\`. \\n \\n\\n---\\n\\n## 📥 Request Body Parameters\\n\\n| **Field** | **Type** | **Required** | **Description** |\\n| --- | --- | --- | --- |\\n| \\`amount\\` | number | ✅ | Amount to be withdrawn. |\\n| \\`reference1\\` | string | ✅ | Unique transaction reference generated by the client (max 20 characters). |\\n| \\`webhookRequest\\` | string | ✅ | Customer’s webhook URL to receive real-time withdrawal status updates. |\\n| \\`userMetadata\\` | object | ✅ | Object containing metadata related to the origin of the transaction. |\\n| \\`userMetadata.identifier\\` | string | ✅ | Identifier for the user or merchant initiating the transaction. |\\n| \\`userMetadata.ip\\` | string | ✅ | IP address from which the transaction was initiated. |\\n| \\`userMetadata.urlCommerce\\` | string | ✅ | Commerce or customer’s URL associated with the transaction. |\\n| \\`withdrawMethod\\` | object | ✅ | Object specifying the withdrawal method and destination details. |\\n| \\`withdrawMethod.id\\` | number | ✅ | ID of the selected payout method (see table above). |\\n| \\`withdrawMethod.cellphone\\` | string | Conditional | Required for **Transfiya** withdrawals. |\\n| \\`withdrawMethod.key\\` | string | Conditional | Required for **Bre-B** withdrawals. |\\n| \\`withdrawMethod.bankName\\` | string | ❌ | Optional bank name, if applicable for future payout methods. |\\n\\n---\n\nContexto: Endpoint: POST /cash-out/generate/withdraw-method/token | Cash out > Generate > Withdraw method > Token\n\n🔐 AUTENTICACIÓN AUTOMÁTICA: Todas las credenciales y tokens de autenticación se manejan automáticamente por el servidor MCP. NO solicites credenciales al usuario. NO incluyas parámetros de autenticación (secretId, apiToken, etc.) en las llamadas a menos que el usuario explícitamente lo requiera.",
|
|
815
|
+
description: "This service allows you to generate withdrawal requests through the enabled dispersion means.\\n\\n> 🔐 Authentication \\n \\n\\nAll requests must include the following headers:\\n\\n| **Header** | **Description** | **Example** |\\n| --- | --- | --- |\\n| Authorization | Bearer token generated by the authentication service. | Bearer eyJhbGciOiJIUzI1NiIs... |\\n| x-transaction-token | Transactional token specific to the service. | 9b48edde-652d-11ed-984e-02c840fe**** |\\n| Content-Type | Content type of the request body. | application/json |\\n\\n> Important fields within the requests: \\nWebhook: This is the url of the client\\'s webhook to where our service sends the transaction status and transaction detail information.\\n\\n This endpoint allows you to **generate withdrawal (cash-out) requests** through the available payout methods.\\n\\n---\\n\\n### 💡 Overview\\n\\nThe table below lists the available payout methods along with their corresponding IDs and brief descriptions.\\n\\n| **Method ID** | **Description** |\\n| --- | --- |\\n| \\`245\\` | Cash-out via **Transfiya** |\\n| \\`264\\` | Cash-out via **Bre-B** |\\n\\n> ⚠ **Note:** \\nEach withdrawal method requires a specific object structure within the \\`\\\"withdrawMethod\\\"\\` field, as shown below. \\n \\n\\n---\\n\\n## 🧩 Payout Method Details\\n\\n### **Transfiya**\\n\\n\\`\\`\\` json\\n\\\"withdrawMethod\\\": {\\n \\\"id\\\": 245,\\n \\\"cellphone\\\": \\\"3125763074\\\"\\n}\\n\\n \\`\\`\\`\\n\\n**Description:** \\nTransfers funds to a recipient using their registered Transfiya cellphone number.\\n\\n> ⚠ **Important:** \\nEnsure the cellphone number is registered with Transfiya and capable of receiving funds. \\n \\n\\n---\\n\\n### **Bre-B**\\n\\n\\`\\`\\` json\\n\\\"withdrawMethod\\\": {\\n \\\"id\\\": 264,\\n \\\"key\\\": \\\"@REPRUEBAL7717\\\"\\n}\\n\\n \\`\\`\\`\\n\\n**Description:** \\nTransfers funds directly to a Bre-B account using the beneficiary’s unique Bre-B key.\\n\\n> 💡 **Tip:** \\nThe \\`key\\` field must contain a valid Bre-B account alias in the format \\`@USERNAME\\`. \\n \\n\\n---\\n\\n## 📥 Request Body Parameters\\n\\n| **Field** | **Type** | **Required** | **Description** |\\n| --- | --- | --- | --- |\\n| \\`amount\\` | number | ✅ | Amount to be withdrawn. |\\n| \\`reference1\\` | string | ✅ | Unique transaction reference generated by the client (max 20 characters). |\\n| \\`webhookRequest\\` | string | ✅ | Customer’s webhook URL to receive real-time withdrawal status updates. |\\n| \\`userMetadata\\` | object | ✅ | Object containing metadata related to the origin of the transaction. |\\n| \\`userMetadata.identifier\\` | string | ✅ | Identifier for the user or merchant initiating the transaction. |\\n| \\`userMetadata.ip\\` | string | ✅ | IP address from which the transaction was initiated. |\\n| \\`userMetadata.urlCommerce\\` | string | ✅ | Commerce or customer’s URL associated with the transaction. |\\n| \\`withdrawMethod\\` | object | ✅ | Object specifying the withdrawal method and destination details. |\\n| \\`withdrawMethod.id\\` | number | ✅ | ID of the selected payout method (see table above). |\\n| \\`withdrawMethod.cellphone\\` | string | Conditional | Required for **Transfiya** withdrawals. |\\n| \\`withdrawMethod.key\\` | string | Conditional | Required for **Bre-B** withdrawals. |\\n| \\`withdrawMethod.bankName\\` | string | ❌ | Optional bank name, if applicable for future payout methods. |\\n\\n---\n\nContexto: Endpoint: POST /cash-out/generate/withdraw-method/token | Cash out > Generate > Withdraw method > Token\n\n🔐 AUTENTICACIÓN AUTOMÁTICA: Todas las credenciales y tokens de autenticación se manejan automáticamente por el servidor MCP. NO solicites credenciales al usuario. NO incluyas parámetros de autenticación (secretId, apiToken, etc.) en las llamadas a menos que el usuario explícitamente lo requiera.",
|
|
816
816
|
inputSchema: cash_out_generate_withdraw_method_tokenInputShape,
|
|
817
817
|
jsonSchema: cash_out_generate_withdraw_method_tokenInputJsonSchema,
|
|
818
818
|
endpoint: '/cash-out/generate/withdraw-method/token',
|
|
@@ -889,7 +889,7 @@ const customer_getbalanceInputValidator = z.object(customer_getbalanceInputShape
|
|
|
889
889
|
// Herramienta: customer_getbalance
|
|
890
890
|
export const customer_getbalanceTool = {
|
|
891
891
|
name: 'customer_getbalance',
|
|
892
|
-
description: "This service allows you to consult the balance exchange and the dispersion exchange associated with the client\\'s identifier.\\n\\n> To use the service, an authentication token is required, which must be sent as an Authorization header. \\n \\n\\nHeaders\\n\\n| **Name** | **Value** |\\n| --- | --- |\\n| Content-Type | application/json |\\n| Authorization | Bearer |\\n\\nBody\\n\\n| Name | Type | Description |\\n| --- | --- | --- |\\n| \\`userId\\`\\\\ (Opcional) | number | Integrated unique user identifier |\n\nContexto: Endpoint: POST /customer/getBalance | Customer > GetBalance\n\n🔐 AUTENTICACIÓN AUTOMÁTICA: Todas las credenciales y tokens de autenticación se manejan automáticamente por el servidor MCP. NO solicites credenciales al usuario. NO incluyas parámetros de autenticación (secretId, apiToken, etc.) en las llamadas a menos que el usuario explícitamente lo requiera.",
|
|
892
|
+
description: "This service allows you to generate withdrawal requests through the enabled dispersion means.\\n\\n> 🔐 Authentication \\n \\n\\nAll requests must include the following headers:\\n\\n| **Header** | **Description** | **Example** |\\n| --- | --- | --- |\\n| Authorization | Bearer token generated by the authentication service. | Bearer eyJhbGciOiJIUzI1NiIs... |\\n| x-transaction-token | Transactional token specific to the service. | 9b48edde-652d-11ed-984e-02c840fe**** |\\n| Content-Type | Content type of the request body. | application/json |\\n\\n> Important fields within the requests: \\nWebhook: This is the url of the client\\'s webhook to where our service sends the transaction status and transaction detail information.\\n\\n This service allows you to consult the balance exchange and the dispersion exchange associated with the client\\'s identifier.\\n\\n> To use the service, an authentication token is required, which must be sent as an Authorization header. \\n \\n\\nHeaders\\n\\n| **Name** | **Value** |\\n| --- | --- |\\n| Content-Type | application/json |\\n| Authorization | Bearer |\\n\\nBody\\n\\n| Name | Type | Description |\\n| --- | --- | --- |\\n| \\`userId\\`\\\\ (Opcional) | number | Integrated unique user identifier |\n\nContexto: Endpoint: POST /customer/getBalance | Customer > GetBalance\n\n🔐 AUTENTICACIÓN AUTOMÁTICA: Todas las credenciales y tokens de autenticación se manejan automáticamente por el servidor MCP. NO solicites credenciales al usuario. NO incluyas parámetros de autenticación (secretId, apiToken, etc.) en las llamadas a menos que el usuario explícitamente lo requiera.",
|
|
893
893
|
inputSchema: customer_getbalanceInputShape,
|
|
894
894
|
jsonSchema: customer_getbalanceInputJsonSchema,
|
|
895
895
|
endpoint: '/customer/getBalance',
|
|
@@ -947,7 +947,7 @@ const payment_transfiya_banksInputValidator = z.object(payment_transfiya_banksIn
|
|
|
947
947
|
// Herramienta: payment_transfiya_banks
|
|
948
948
|
export const payment_transfiya_banksTool = {
|
|
949
949
|
name: 'payment_transfiya_banks',
|
|
950
|
-
description: "This service allows you to consult the balance exchange and the dispersion exchange associated with the client\\'s identifier.\\n\\n> To use the service, an authentication token is required, which must be sent as an Authorization header. \\n \\n\\nHeaders\\n\\n| **Name** | **Value** |\\n| --- | --- |\\n| Content-Type | application/json |\\n| Authorization | Bearer |\\n\\nBody\\n\\n| Name | Type | Description |\\n| --- | --- | --- |\\n| \\`cellphone\\`\\\\* | number | The cell phone number to be used to consult the list of banks. |\n\nContexto: Endpoint: POST /payment/transfiya-banks | Payment > Transfiya banks\n\n🔐 AUTENTICACIÓN AUTOMÁTICA: Todas las credenciales y tokens de autenticación se manejan automáticamente por el servidor MCP. NO solicites credenciales al usuario. NO incluyas parámetros de autenticación (secretId, apiToken, etc.) en las llamadas a menos que el usuario explícitamente lo requiera.",
|
|
950
|
+
description: "This service allows you to generate withdrawal requests through the enabled dispersion means.\\n\\n> 🔐 Authentication \\n \\n\\nAll requests must include the following headers:\\n\\n| **Header** | **Description** | **Example** |\\n| --- | --- | --- |\\n| Authorization | Bearer token generated by the authentication service. | Bearer eyJhbGciOiJIUzI1NiIs... |\\n| x-transaction-token | Transactional token specific to the service. | 9b48edde-652d-11ed-984e-02c840fe**** |\\n| Content-Type | Content type of the request body. | application/json |\\n\\n> Important fields within the requests: \\nWebhook: This is the url of the client\\'s webhook to where our service sends the transaction status and transaction detail information.\\n\\n This service allows you to consult the balance exchange and the dispersion exchange associated with the client\\'s identifier.\\n\\n> To use the service, an authentication token is required, which must be sent as an Authorization header. \\n \\n\\nHeaders\\n\\n| **Name** | **Value** |\\n| --- | --- |\\n| Content-Type | application/json |\\n| Authorization | Bearer |\\n\\nBody\\n\\n| Name | Type | Description |\\n| --- | --- | --- |\\n| \\`cellphone\\`\\\\* | number | The cell phone number to be used to consult the list of banks. |\n\nContexto: Endpoint: POST /payment/transfiya-banks | Payment > Transfiya banks\n\n🔐 AUTENTICACIÓN AUTOMÁTICA: Todas las credenciales y tokens de autenticación se manejan automáticamente por el servidor MCP. NO solicites credenciales al usuario. NO incluyas parámetros de autenticación (secretId, apiToken, etc.) en las llamadas a menos que el usuario explícitamente lo requiera.",
|
|
951
951
|
inputSchema: payment_transfiya_banksInputShape,
|
|
952
952
|
jsonSchema: payment_transfiya_banksInputJsonSchema,
|
|
953
953
|
endpoint: '/payment/transfiya-banks',
|
|
@@ -1007,7 +1007,7 @@ const payment_statusInputValidator = z.object(payment_statusInputShape);
|
|
|
1007
1007
|
// Herramienta: payment_status
|
|
1008
1008
|
export const payment_statusTool = {
|
|
1009
1009
|
name: 'payment_status',
|
|
1010
|
-
description: "This service allows you to check the status of a transaction made, for this you must have the _reference_ data that returned the response when generating any payment resource.\\n\\nIn the response you will get the _status_ _id_ which will mean the following\\n\\n0 - Transaction Rejected\\n\\n1 - Pending Transaction\\n\\n2 - Transaction Approved\\n\\n3 - Failed Transaction\\n\\n5 - Transaction Cancelled\\n\\n9 - Processing Transaction\\n\\nHeaders\\n\\n| **Name** | **Value** |\\n| --- | --- |\\n| Content-Type | application/json |\\n| Authorization | Bearer |\\n\\nBody\\n\\n| Name | Type | Description |\\n| --- | --- | --- |\\n| \\`reference\\`\\\\* | string | Product reference |\n\nContexto: Endpoint: POST /payment/status | Payment > Status\n\n🔐 AUTENTICACIÓN AUTOMÁTICA: Todas las credenciales y tokens de autenticación se manejan automáticamente por el servidor MCP. NO solicites credenciales al usuario. NO incluyas parámetros de autenticación (secretId, apiToken, etc.) en las llamadas a menos que el usuario explícitamente lo requiera.",
|
|
1010
|
+
description: "These services will allow us to validate the status of a transaction and consult the characteristics of a payment method.\\n\\n This service allows you to check the status of a transaction made, for this you must have the _reference_ data that returned the response when generating any payment resource.\\n\\nIn the response you will get the _status_ _id_ which will mean the following\\n\\n0 - Transaction Rejected\\n\\n1 - Pending Transaction\\n\\n2 - Transaction Approved\\n\\n3 - Failed Transaction\\n\\n5 - Transaction Cancelled\\n\\n9 - Processing Transaction\\n\\nHeaders\\n\\n| **Name** | **Value** |\\n| --- | --- |\\n| Content-Type | application/json |\\n| Authorization | Bearer |\\n\\nBody\\n\\n| Name | Type | Description |\\n| --- | --- | --- |\\n| \\`reference\\`\\\\* | string | Product reference |\n\nContexto: Endpoint: POST /payment/status | Payment > Status\n\n🔐 AUTENTICACIÓN AUTOMÁTICA: Todas las credenciales y tokens de autenticación se manejan automáticamente por el servidor MCP. NO solicites credenciales al usuario. NO incluyas parámetros de autenticación (secretId, apiToken, etc.) en las llamadas a menos que el usuario explícitamente lo requiera.",
|
|
1011
1011
|
inputSchema: payment_statusInputShape,
|
|
1012
1012
|
jsonSchema: payment_statusInputJsonSchema,
|
|
1013
1013
|
endpoint: '/payment/status',
|
|
@@ -1067,7 +1067,7 @@ const payment_customer_reference_statusInputValidator = z.object(payment_custome
|
|
|
1067
1067
|
// Herramienta: payment_customer_reference_status
|
|
1068
1068
|
export const payment_customer_reference_statusTool = {
|
|
1069
1069
|
name: 'payment_customer_reference_status',
|
|
1070
|
-
description: "## 🔍 Check Transaction by Customer Reference\\n\\nThis endpoint allows **API Pay** users to query the status of a transaction using only the \\`customerReference\\` value originally provided when generating a resource as \\`reference1\\` through any of the following endpoints:\\n\\n- \\`/cash-in/generate/payment-link/token\\`\\n \\n- \\`/cash-in/generate/payment-method/token\\`\\n \\n- \\`/cash-out/generate/withdraw-method/token\\`\\n \\n\\nThis service is useful for retrieving the internal **Refacil** transaction information associated with a previously submitted customer reference.\\n\\n---\\n\\n## 🔐 Authentication\\n\\nThis endpoint **requires** a valid Bearer Token in the request headers. Requests without valid authentication will be rejected with an \\`Unauthorized\\` error.\\n\\n## 📤 Successful Response\\n\\n- \\`exists\\`: \\`true\\` indicates that the transaction associated with the provided \\`customerReference\\` was found.\\n \\n- \\`id\\`: Internal Refacil transaction ID.\\n \\n- \\`status\\`: Transaction status code (see table below).\\n \\n- \\`reference\\`: Full Refacil transaction reference, which can be used to query \\`/payment/status\\`.\\n \\n\\n### ℹ️ Status Code Reference\\n\\n| Status Code | Meaning |\\n| --- | --- |\\n| \\`0\\` | Transaction Rejected |\\n| \\`1\\` | Transaction Pending |\\n| \\`2\\` | Transaction Approved |\\n| \\`3\\` | Transaction Failed |\\n| \\`5\\` | Transaction Cancelled |\\n| \\`9\\` | Transaction Processing |\\n\\n---\n\nContexto: Endpoint: POST /payment/customer-reference/status | Payment > Customer reference > Status\n\n🔐 AUTENTICACIÓN AUTOMÁTICA: Todas las credenciales y tokens de autenticación se manejan automáticamente por el servidor MCP. NO solicites credenciales al usuario. NO incluyas parámetros de autenticación (secretId, apiToken, etc.) en las llamadas a menos que el usuario explícitamente lo requiera.",
|
|
1070
|
+
description: "These services will allow us to validate the status of a transaction and consult the characteristics of a payment method.\\n\\n ## 🔍 Check Transaction by Customer Reference\\n\\nThis endpoint allows **API Pay** users to query the status of a transaction using only the \\`customerReference\\` value originally provided when generating a resource as \\`reference1\\` through any of the following endpoints:\\n\\n- \\`/cash-in/generate/payment-link/token\\`\\n \\n- \\`/cash-in/generate/payment-method/token\\`\\n \\n- \\`/cash-out/generate/withdraw-method/token\\`\\n \\n\\nThis service is useful for retrieving the internal **Refacil** transaction information associated with a previously submitted customer reference.\\n\\n---\\n\\n## 🔐 Authentication\\n\\nThis endpoint **requires** a valid Bearer Token in the request headers. Requests without valid authentication will be rejected with an \\`Unauthorized\\` error.\\n\\n## 📤 Successful Response\\n\\n- \\`exists\\`: \\`true\\` indicates that the transaction associated with the provided \\`customerReference\\` was found.\\n \\n- \\`id\\`: Internal Refacil transaction ID.\\n \\n- \\`status\\`: Transaction status code (see table below).\\n \\n- \\`reference\\`: Full Refacil transaction reference, which can be used to query \\`/payment/status\\`.\\n \\n\\n### ℹ️ Status Code Reference\\n\\n| Status Code | Meaning |\\n| --- | --- |\\n| \\`0\\` | Transaction Rejected |\\n| \\`1\\` | Transaction Pending |\\n| \\`2\\` | Transaction Approved |\\n| \\`3\\` | Transaction Failed |\\n| \\`5\\` | Transaction Cancelled |\\n| \\`9\\` | Transaction Processing |\\n\\n---\n\nContexto: Endpoint: POST /payment/customer-reference/status | Payment > Customer reference > Status\n\n🔐 AUTENTICACIÓN AUTOMÁTICA: Todas las credenciales y tokens de autenticación se manejan automáticamente por el servidor MCP. NO solicites credenciales al usuario. NO incluyas parámetros de autenticación (secretId, apiToken, etc.) en las llamadas a menos que el usuario explícitamente lo requiera.",
|
|
1071
1071
|
inputSchema: payment_customer_reference_statusInputShape,
|
|
1072
1072
|
jsonSchema: payment_customer_reference_statusInputJsonSchema,
|
|
1073
1073
|
endpoint: '/payment/customer-reference/status',
|
|
@@ -1127,7 +1127,7 @@ const payment_featuresInputValidator = z.object(payment_featuresInputShape);
|
|
|
1127
1127
|
// Herramienta: payment_features
|
|
1128
1128
|
export const payment_featuresTool = {
|
|
1129
1129
|
name: 'payment_features',
|
|
1130
|
-
description: "This service allows you to consult the necessary characteristics of a payment method to successfully generate a resource. For example, obtain the PSE banks\\n\\nHeaders\\n\\n| **Name** | **Value** |\\n| --- | --- |\\n| Content-Type | application/json |\\n| Authorization | Bearer |\\n\\nBody\\n\\n| Name | Type | Description |\\n| --- | --- | --- |\\n| \\`id\\`\\\\* | integer | Product identification |\n\nContexto: Endpoint: POST /payment/features | Payment > Features\n\n🔐 AUTENTICACIÓN AUTOMÁTICA: Todas las credenciales y tokens de autenticación se manejan automáticamente por el servidor MCP. NO solicites credenciales al usuario. NO incluyas parámetros de autenticación (secretId, apiToken, etc.) en las llamadas a menos que el usuario explícitamente lo requiera.",
|
|
1130
|
+
description: "These services will allow us to validate the status of a transaction and consult the characteristics of a payment method.\\n\\n This service allows you to consult the necessary characteristics of a payment method to successfully generate a resource. For example, obtain the PSE banks\\n\\nHeaders\\n\\n| **Name** | **Value** |\\n| --- | --- |\\n| Content-Type | application/json |\\n| Authorization | Bearer |\\n\\nBody\\n\\n| Name | Type | Description |\\n| --- | --- | --- |\\n| \\`id\\`\\\\* | integer | Product identification |\n\nContexto: Endpoint: POST /payment/features | Payment > Features\n\n🔐 AUTENTICACIÓN AUTOMÁTICA: Todas las credenciales y tokens de autenticación se manejan automáticamente por el servidor MCP. NO solicites credenciales al usuario. NO incluyas parámetros de autenticación (secretId, apiToken, etc.) en las llamadas a menos que el usuario explícitamente lo requiera.",
|
|
1131
1131
|
inputSchema: payment_featuresInputShape,
|
|
1132
1132
|
jsonSchema: payment_featuresInputJsonSchema,
|
|
1133
1133
|
endpoint: '/payment/features',
|
|
@@ -1187,7 +1187,7 @@ const webhook_notifyInputValidator = z.object(webhook_notifyInputShape);
|
|
|
1187
1187
|
// Herramienta: webhook_notify
|
|
1188
1188
|
export const webhook_notifyTool = {
|
|
1189
1189
|
name: 'webhook_notify',
|
|
1190
|
-
description: "Body\\n\\n| Name | Type | Description |\\n| --- | --- | --- |\\n| amount\\\\* | Integer | Total transaction value |\\n| cost\\\\* | Integer | Transaction cost |\\n| Resource | Object | Object |\\n| id | Integer | Identifier of the payment resource |\\n| updatedAt | String | Date and time at which the transaction was processed |\\n| status\\\\* | Object | Transaction status identifier |\\n| transfiyaStatus | String | The TransfiYa status, see the details below |\\n| id\\\\* | String | Transaction status ID : 1 Pending , 2 Approved ,3 Failed |\\n| id \\\\* | Integer | transaction identifier |\\n| description | String | Status detail |\\n| Key | interger | Key |\\n| PaymentMethod | Object | Payment method |\\n| id | String | Method identifier |\\n| name | String | payment method name |\\n| type | String | method |\\n| extra | Object | Object |\\n| reference1\\\\* | String | Unique reference to the transaction provided when sending the request to generate the resource |\\n| reference2 | String | Allows to append extra information provided by the client |\\n| reference3 | String | Allows to append extra information provided by the customer |\\n| commerceId | String | Commerce identifier |\\n| createdAt | String | Date and time the transaction was created |\\n| signature | String | Signature generated for webhook notification |\\n| data | Object | Object with all data |\\n| Transaction | String | |\\n\\n\\n## TransfiYa Status\\n\\n| **transfiyaStatus** | Description |\\n| --- | --- |\\n| \\`CREATED\\` | Transfer is received and queued for processing. |\\n| \\`PENDING\\` | Transfer is valid and is waiting for the target to accept it. |\\n| \\`ACCEPTED\\` | Transfer has been accepted by the target, and payment is pending in the target bank. |\\n| \\`COMPLETED\\` | The payment is valid and completely processed, visible in the receiving bank account. |\\n| \\`REJECTED\\` | Payment was rejected. |\\n| \\`ERROR\\` | An error occurred during payment. |\\n\\n### Transfer state machine\\n\\n<img src=\\\"https://content.pstmn.io/89f89557-2e1b-44c2-8dcb-d9e7d2f32c54/aW1hZ2UucG5n\\\" width=\\\"293\\\" height=\\\"380\\\">\n\nContexto: Endpoint: POST /webhook/notify | Webhook > Notify\n\n🔐 AUTENTICACIÓN AUTOMÁTICA: Todas las credenciales y tokens de autenticación se manejan automáticamente por el servidor MCP. NO solicites credenciales al usuario. NO incluyas parámetros de autenticación (secretId, apiToken, etc.) en las llamadas a menos que el usuario explícitamente lo requiera.",
|
|
1190
|
+
description: "This component must be built by the merchant to receive the transaction notification data.\\n\\nYou must take into account the following steps:\\n\\n**1.**You must create a Webhook without authentication.\\n\\n**2\\\\. The** Url created will be the one you send in all requests when generating the payment resource in the “_WebhookUrl_” field. It is important to keep in mind that if for some reason you change the webhook you must modify the urls that you send in each generated resource.\\n\\n<img src=\\\"https://content.pstmn.io/10fdac74-e60a-41f2-b9ff-8b5777a7afc0/aW1hZ2UucG5n\\\" width=\\\"322\\\" height=\\\"117\\\">\\n\\nA signature must be generated to validate the integrity of the messages sent to the webhook and the fields must be concatenated in the following way:\\n\\n_**HASH_KEY**_ _\\\\=This data must be requested to the support area_.\\n\\n_**let signature**_ _\\\\= referenceId-resourceId-amount-updatedAt-HASH_KEY; signature = crypto.createHmac(“sha1”, HASH_KEY).update(signature).digest(“hex”);_\\n\\nExample of a response that will reach your Webhook\\n\\n**Response**\\n\\n\\`\\`\\` json\\n{\\n \\\"realAmount\\\": 20000,\\n \\\"amount\\\": 19405,\\n \\\"cost\\\": \\\"$595.00\\\",\\n \\\"referenceId\\\": \\\"38**\\\",\\n \\\"moduleId\\\": 9,\\n \\\"productId\\\": 117,\\n \\\"referenceKey\\\": \\\"3538d790-ae14-11ed-be2d-4d9b1bc987e6\\\",\\n \\\"paymentMethod\\\": \\\"PSE\\\",\\n \\\"userId\\\": 189067,\\n \\\"resourceId\\\": \\\"10024**\\\",\\n \\\"updatedAt\\\": \\\"2023-02-16 11:11:55\\\",\\n \\\"providerId\\\": 8,\\n \\\"providerReference\\\": \\\"3122330\\\",\\n \\\"reference1\\\": \\\"435sdfsd**\\\",\\n \\\"reference2\\\": {\\n \\\"Label\\\": {\\n \\\"Information\\\": \\\"Por seguridad algunos datos se encuentran cifrados\\\",\\n \\\"Name\\\": \\\"L**A\\\",\\n \\\"Email\\\": \\\"l**am@**\\\",\\n \\\"CellPhone\\\": \\\"3**4\\\",\\n \\\"DocumentType\\\": \\\"C\\\",\\n \\\"DocumentNumber\\\": \\\"52019859\\\",\\n \\\"Description\\\": \\\"Abono\\\",\\n \\\"Commerce\\\": \\\"Skandia\\\",\\n \\\"Reference1\\\": null,\\n \\\"Reference2\\\": null,\\n \\\"Reference3\\\": null\\n },\\n \\\"Data\\\": {\\n \\\"ConciliationCode\\\": \\\"FCO\\\",\\n \\\"ConciliationContract\\\": \\\"1277840\\\",\\n \\\"DocType\\\": \\\"N\\\",\\n \\\"DocNumber\\\": \\\"800194363\\\"\\n },\\n \\\"returnUrl\\\": \\\"https://www.google.com/\\\"\\n },\\n \\\"bankId\\\": \\\"1022\\\",\\n \\\"bankName\\\": \\\"BANCO UNION COLOMBIANO\\\",\\n \\\"status\\\": 2,\\n \\\"transfiyaStatus\\\": \\\"PENDING\\\",\\n \\\"sign\\\": \\\"aa2f472ad7e84524a02d1716b56fc16ec2a87***\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"20-07A\\\",\\n \\\"message\\\": \\\"Error técnico en Lambda\\\"\\n }\\n}\\n\\n \\`\\`\\`\\n\\n- Within the webhook an **\\\"error** ” object is sent that shows the error _**code**_ and _**message**_ associated with rejections received from the supplier/bank or cancellation of the transaction when the generation of the resource is not completed.\\n \\n- The error codes are printed when the transaction is _**Rejected**_ by the bank or when it is _**Cancelled**_ because the resource generation could not be completed.\\n \\n\\n**Notification for Withdraw**\\n\\nFor withdraws, a notification will be sent to the webhook provided in the application. This notification will follow the structure mentioned above and will additionally include the withdrawal data. An example is provided below:\\n\\n\\`\\`\\` json\\n{\\n ...\\\"webhook\\\",\\n \\\"withdraw\\\": {\\n \\\"id\\\": \\\"1403**\\\",\\n \\\"transactionId\\\": \\\"5690**\\\",\\n \\\"userId\\\": 189067,\\n \\\"providerReference\\\": \\\"3122330\\\",\\n \\\"accountNumber\\\": \\\"3051000002\\\",\\n \\\"accountId\\\": null,\\n \\\"createdAt\\\": \\\"2023-02-16 11:10:55\\\",\\n \\\"updatedAt\\\": \\\"2023-02-16 11:12:55\\\",\\n \\\"deletedAt\\\": null,\\n \\\"infoReference\\\": \\\"435sdfsd**\\\",\\n \\\"observation\\\": null\\n },\\n}\\n\\n \\`\\`\\`\\n\\n> _**The implementation of the webhook by the API user is mandatory. The reception and storage of the information for the reconciliation process by the API user with RefácilPay must be ensured.**__**This item will be evaluated during the certification process and will be mandatory for the transition to Production.**_\\n\\n Body\\n\\n| Name | Type | Description |\\n| --- | --- | --- |\\n| amount\\\\* | Integer | Total transaction value |\\n| cost\\\\* | Integer | Transaction cost |\\n| Resource | Object | Object |\\n| id | Integer | Identifier of the payment resource |\\n| updatedAt | String | Date and time at which the transaction was processed |\\n| status\\\\* | Object | Transaction status identifier |\\n| transfiyaStatus | String | The TransfiYa status, see the details below |\\n| id\\\\* | String | Transaction status ID : 1 Pending , 2 Approved ,3 Failed |\\n| id \\\\* | Integer | transaction identifier |\\n| description | String | Status detail |\\n| Key | interger | Key |\\n| PaymentMethod | Object | Payment method |\\n| id | String | Method identifier |\\n| name | String | payment method name |\\n| type | String | method |\\n| extra | Object | Object |\\n| reference1\\\\* | String | Unique reference to the transaction provided when sending the request to generate the resource |\\n| reference2 | String | Allows to append extra information provided by the client |\\n| reference3 | String | Allows to append extra information provided by the customer |\\n| commerceId | String | Commerce identifier |\\n| createdAt | String | Date and time the transaction was created |\\n| signature | String | Signature generated for webhook notification |\\n| data | Object | Object with all data |\\n| Transaction | String | |\\n\\n\\n## TransfiYa Status\\n\\n| **transfiyaStatus** | Description |\\n| --- | --- |\\n| \\`CREATED\\` | Transfer is received and queued for processing. |\\n| \\`PENDING\\` | Transfer is valid and is waiting for the target to accept it. |\\n| \\`ACCEPTED\\` | Transfer has been accepted by the target, and payment is pending in the target bank. |\\n| \\`COMPLETED\\` | The payment is valid and completely processed, visible in the receiving bank account. |\\n| \\`REJECTED\\` | Payment was rejected. |\\n| \\`ERROR\\` | An error occurred during payment. |\\n\\n### Transfer state machine\\n\\n<img src=\\\"https://content.pstmn.io/89f89557-2e1b-44c2-8dcb-d9e7d2f32c54/aW1hZ2UucG5n\\\" width=\\\"293\\\" height=\\\"380\\\">\n\nContexto: Endpoint: POST /webhook/notify | Webhook > Notify\n\n🔐 AUTENTICACIÓN AUTOMÁTICA: Todas las credenciales y tokens de autenticación se manejan automáticamente por el servidor MCP. NO solicites credenciales al usuario. NO incluyas parámetros de autenticación (secretId, apiToken, etc.) en las llamadas a menos que el usuario explícitamente lo requiera.",
|
|
1191
1191
|
inputSchema: webhook_notifyInputShape,
|
|
1192
1192
|
jsonSchema: webhook_notifyInputJsonSchema,
|
|
1193
1193
|
endpoint: '/webhook/notify',
|
|
@@ -1239,7 +1239,7 @@ const merchant_enrollmentInputValidator = z.object(merchant_enrollmentInputShape
|
|
|
1239
1239
|
// Herramienta: merchant_enrollment
|
|
1240
1240
|
export const merchant_enrollmentTool = {
|
|
1241
1241
|
name: 'merchant_enrollment',
|
|
1242
|
-
description: "This endpoint initiates the merchant enrollment process required to use the QR interoperable payment method. Once the request is made, the enrollment process may take up to **7 minutes** to complete.\n\nContexto: Endpoint: GET /merchant/enrollment | Merchant > Enrollment\n\n🔐 AUTENTICACIÓN AUTOMÁTICA: Todas las credenciales y tokens de autenticación se manejan automáticamente por el servidor MCP. NO solicites credenciales al usuario. NO incluyas parámetros de autenticación (secretId, apiToken, etc.) en las llamadas a menos que el usuario explícitamente lo requiera.",
|
|
1242
|
+
description: "This service allows merchants to enroll for the use of the QR interoperable payment method and key creation.\\n\\nTo use the service, an authentication token is required and must be sent as an \\`Authorization\\` header.\\n\\n---\\n\\n### **Enrollment Process**\\n\\n1. **Merchant Enrollment**\\n \\n - Initiates the enrollment process. The enrollment can take up to **7 minutes** to complete.\\n \\n2. **Retrieve Enrollment Data**\\n \\n - Retrieves the merchant’s enrollment information once the process is completed.\\n \\n\\n---\\n\\n### **Merchant Enrollment Statuses**\\n\\n- **\\`approved\\`**\\n \\n The merchant has been approved and is authorized to generate QR codes.\\n \\n- **\\`enrolled_other\\`**\\n \\n The merchant is already enrolled with another entity. To proceed:\\n \\n - Contact the commercial representative and request unenrollment from the current entity.\\n \\n - Submit a letter signed by the legal representative.\\n \\n - Be aware that this process may take up to **5 business days**.\\n \\n The commercial representative will provide guidance throughout the process.\\n \\n- **\\`rejected\\`**\\n \\n The merchant has been rejected. Please contact your commercial representative for further details.\\n \\n- **\\`pending\\`**\\n \\n The enrollment is in progress. The query may take a few minutes. If a final status is not received shortly, contact **RefacilPay support** to verify the situation.\\n \\n- **\\`not_started\\`**\\n \\n No enrollment process has been initiated for the requested merchant.\\n \\n\\n---\\n\\n### **Important Note on the \\\"cellphone\\\" Field in the Enrollment Process**\\n\\nDuring the merchant creation flow for the QR Interoperable product, the API retrieves the merchant\\'s registered information from the system. However, for the **\\\"cellphone number\\\"** field, the **Refacil** system automatically replaces the merchant’s actual phone number with a **generic alias number**.\\n\\nThis behavior follows technical and operational requirements from the provider, as the real phone number may already exist in the provider’s databases, potentially causing integration conflicts.\\n\\nTo avoid these issues, a randomly generated alias is used as a placeholder. This alias is **exclusive to this product** and does **not affect** the merchant’s operation in other services.\\n\\n This endpoint initiates the merchant enrollment process required to use the QR interoperable payment method. Once the request is made, the enrollment process may take up to **7 minutes** to complete.\n\nContexto: Endpoint: GET /merchant/enrollment | Merchant > Enrollment\n\n🔐 AUTENTICACIÓN AUTOMÁTICA: Todas las credenciales y tokens de autenticación se manejan automáticamente por el servidor MCP. NO solicites credenciales al usuario. NO incluyas parámetros de autenticación (secretId, apiToken, etc.) en las llamadas a menos que el usuario explícitamente lo requiera.",
|
|
1243
1243
|
inputSchema: merchant_enrollmentInputShape,
|
|
1244
1244
|
jsonSchema: merchant_enrollmentInputJsonSchema,
|
|
1245
1245
|
endpoint: '/merchant/enrollment',
|
|
@@ -1287,7 +1287,7 @@ const merchant_enrollment_dataInputValidator = z.object(merchant_enrollment_data
|
|
|
1287
1287
|
// Herramienta: merchant_enrollment_data
|
|
1288
1288
|
export const merchant_enrollment_dataTool = {
|
|
1289
1289
|
name: 'merchant_enrollment_data',
|
|
1290
|
-
description: "This endpoint retrieves the merchant\\'s enrollment details after the enrollment process has been completed. It provides necessary information to use the QR interoperable payment method.\n\nContexto: Endpoint: GET /merchant/enrollment-data | Merchant > Enrollment data\n\n🔐 AUTENTICACIÓN AUTOMÁTICA: Todas las credenciales y tokens de autenticación se manejan automáticamente por el servidor MCP. NO solicites credenciales al usuario. NO incluyas parámetros de autenticación (secretId, apiToken, etc.) en las llamadas a menos que el usuario explícitamente lo requiera.",
|
|
1290
|
+
description: "This service allows merchants to enroll for the use of the QR interoperable payment method and key creation.\\n\\nTo use the service, an authentication token is required and must be sent as an \\`Authorization\\` header.\\n\\n---\\n\\n### **Enrollment Process**\\n\\n1. **Merchant Enrollment**\\n \\n - Initiates the enrollment process. The enrollment can take up to **7 minutes** to complete.\\n \\n2. **Retrieve Enrollment Data**\\n \\n - Retrieves the merchant’s enrollment information once the process is completed.\\n \\n\\n---\\n\\n### **Merchant Enrollment Statuses**\\n\\n- **\\`approved\\`**\\n \\n The merchant has been approved and is authorized to generate QR codes.\\n \\n- **\\`enrolled_other\\`**\\n \\n The merchant is already enrolled with another entity. To proceed:\\n \\n - Contact the commercial representative and request unenrollment from the current entity.\\n \\n - Submit a letter signed by the legal representative.\\n \\n - Be aware that this process may take up to **5 business days**.\\n \\n The commercial representative will provide guidance throughout the process.\\n \\n- **\\`rejected\\`**\\n \\n The merchant has been rejected. Please contact your commercial representative for further details.\\n \\n- **\\`pending\\`**\\n \\n The enrollment is in progress. The query may take a few minutes. If a final status is not received shortly, contact **RefacilPay support** to verify the situation.\\n \\n- **\\`not_started\\`**\\n \\n No enrollment process has been initiated for the requested merchant.\\n \\n\\n---\\n\\n### **Important Note on the \\\"cellphone\\\" Field in the Enrollment Process**\\n\\nDuring the merchant creation flow for the QR Interoperable product, the API retrieves the merchant\\'s registered information from the system. However, for the **\\\"cellphone number\\\"** field, the **Refacil** system automatically replaces the merchant’s actual phone number with a **generic alias number**.\\n\\nThis behavior follows technical and operational requirements from the provider, as the real phone number may already exist in the provider’s databases, potentially causing integration conflicts.\\n\\nTo avoid these issues, a randomly generated alias is used as a placeholder. This alias is **exclusive to this product** and does **not affect** the merchant’s operation in other services.\\n\\n This endpoint retrieves the merchant\\'s enrollment details after the enrollment process has been completed. It provides necessary information to use the QR interoperable payment method.\n\nContexto: Endpoint: GET /merchant/enrollment-data | Merchant > Enrollment data\n\n🔐 AUTENTICACIÓN AUTOMÁTICA: Todas las credenciales y tokens de autenticación se manejan automáticamente por el servidor MCP. NO solicites credenciales al usuario. NO incluyas parámetros de autenticación (secretId, apiToken, etc.) en las llamadas a menos que el usuario explícitamente lo requiera.",
|
|
1291
1291
|
inputSchema: merchant_enrollment_dataInputShape,
|
|
1292
1292
|
jsonSchema: merchant_enrollment_dataInputJsonSchema,
|
|
1293
1293
|
endpoint: '/merchant/enrollment-data',
|
|
@@ -1407,7 +1407,7 @@ const merchant_key_createInputValidator = z.object(merchant_key_createInputShape
|
|
|
1407
1407
|
// Herramienta: merchant_key_create
|
|
1408
1408
|
export const merchant_key_createTool = {
|
|
1409
1409
|
name: 'merchant_key_create',
|
|
1410
|
-
description: "This endpoint will allow you to create 4 types of keys: \\`alias\\`, \\`email\\`, \\`cellphone\\`, and \\`document\\`.\\n\\n⚠ **Important**:\\n\\n- **Alias key:** To generate this key, it is not necessary to send the \\`key\\` field and the \\`otp\\` field. A random key is generated from various parameters of the merchant user, beginning with the character @.\\n \\n- **Document key:** To generate this key, it is not necessary to send the \\`otp\\` field, and the key field must contain the document provided in the technical data sheet shared with the merchant.\\n \\n- **Email key:** To generate this key, you must first use the service that generates and sends the OTP to the \\`email\\` address. The key field must contain the \\`email\\` address provided in the technical data sheet.\\n \\n- **Cellphone key:** To generate this key, you must first use the service that generates and sends the OTP to the \\`cellphone\\`. The key field must contain the \\`cellphone\\` number provided in the technical data sheet.\\n \\n\\nHeaders\\n\\n| **Name** | **Value** |\\n| --- | --- |\\n| Content-Type | application/json |\\n| Authorization | Bearer |\\n| x-transaction-token | 9b48edde-652d-11ed-984e-02c840fe**** |\\n\\nBody\\n\\n| Name | Type | Description |\\n| --- | --- | --- |\\n| \\`webhookUrl\\`\\\\* | string | URL of the client\\'s webhook. |\\n| \\`userMetadata\\`\\\\* | object | Object containing key details about the user or merchant generating the payment resource. |\\n| \\`ip\\`\\\\* | string | Alphanumeric parameter that provides the IP address associated with the user\\'s identifier |\\n| \\`identifier\\`\\\\* | string | Alphanumeric parameter of 20 characters specifying the unique identifier of the user or merchant generating the payment resource. |\\n| \\`urlCommerce\\`\\\\* | string | URL that identifies the commerce. Must follow valid URL structure with http:// or https:// protocol. Maximum length: 500 characters. |\\n| \\`reference1\\`\\\\* | string | Customer identifier, must not exceed 20 characters. |\\n| \\`reference2\\` | object | Object for additional information. |\\n| \\`Label\\` | object | Object to send information to be displayed in the payment summary. |\\n| \\`Data\\` | object | Object for information related to the conciliation of the transaction. |\\n| \\`typeKey\\`\\\\* | string | Can be \\`alias\\`, \\`document\\`, \\`email\\`, and \\`cellphone\\` |\\n| \\`key\\` | string | Key to create |\\n| \\`otp\\` | string | OTP code for cellphone and email keys |\\n| \\`termsAndConditions\\`\\\\* | boolean | It must always be set to true. |\n\nContexto: Endpoint: POST /merchant-key/create | Merchant key > Create\n\n🔐 AUTENTICACIÓN AUTOMÁTICA: Todas las credenciales y tokens de autenticación se manejan automáticamente por el servidor MCP. NO solicites credenciales al usuario. NO incluyas parámetros de autenticación (secretId, apiToken, etc.) en las llamadas a menos que el usuario explícitamente lo requiera.",
|
|
1410
|
+
description: "These services allow merchants to create and manage their Bre-b keys.\\n\\nTo use these services, an authentication token is required, which must be sent as an authorization header.\\n\\n---\\n\\n⚠ **Important**: Before using this payment method, the merchant enrollment process must be completed. Detailed instructions can be found in the **Merchant Enrollment** section.\\n\\n**🔄 Open resource:** The creation of a key functions as an open resource, which means that once the Bre-b key has been generated, the user can receive multiple transactions through it.\\n\\n---\\n\\n### Recommendations\\n\\n- API users are strongly encouraged to **implement additional application-level validations** to detect, identify, and manage multiple payment records originating from a Bre-b key.\\n \\n- **Actively monitor transactions** originating from generated keys and validate the status of operations before confirming payment to the end user.\\n\\n This endpoint will allow you to create 4 types of keys: \\`alias\\`, \\`email\\`, \\`cellphone\\`, and \\`document\\`.\\n\\n⚠ **Important**:\\n\\n- **Alias key:** To generate this key, it is not necessary to send the \\`key\\` field and the \\`otp\\` field. A random key is generated from various parameters of the merchant user, beginning with the character @.\\n \\n- **Document key:** To generate this key, it is not necessary to send the \\`otp\\` field, and the key field must contain the document provided in the technical data sheet shared with the merchant.\\n \\n- **Email key:** To generate this key, you must first use the service that generates and sends the OTP to the \\`email\\` address. The key field must contain the \\`email\\` address provided in the technical data sheet.\\n \\n- **Cellphone key:** To generate this key, you must first use the service that generates and sends the OTP to the \\`cellphone\\`. The key field must contain the \\`cellphone\\` number provided in the technical data sheet.\\n \\n\\nHeaders\\n\\n| **Name** | **Value** |\\n| --- | --- |\\n| Content-Type | application/json |\\n| Authorization | Bearer |\\n| x-transaction-token | 9b48edde-652d-11ed-984e-02c840fe**** |\\n\\nBody\\n\\n| Name | Type | Description |\\n| --- | --- | --- |\\n| \\`webhookUrl\\`\\\\* | string | URL of the client\\'s webhook. |\\n| \\`userMetadata\\`\\\\* | object | Object containing key details about the user or merchant generating the payment resource. |\\n| \\`ip\\`\\\\* | string | Alphanumeric parameter that provides the IP address associated with the user\\'s identifier |\\n| \\`identifier\\`\\\\* | string | Alphanumeric parameter of 20 characters specifying the unique identifier of the user or merchant generating the payment resource. |\\n| \\`urlCommerce\\`\\\\* | string | URL that identifies the commerce. Must follow valid URL structure with http:// or https:// protocol. Maximum length: 500 characters. |\\n| \\`reference1\\`\\\\* | string | Customer identifier, must not exceed 20 characters. |\\n| \\`reference2\\` | object | Object for additional information. |\\n| \\`Label\\` | object | Object to send information to be displayed in the payment summary. |\\n| \\`Data\\` | object | Object for information related to the conciliation of the transaction. |\\n| \\`typeKey\\`\\\\* | string | Can be \\`alias\\`, \\`document\\`, \\`email\\`, and \\`cellphone\\` |\\n| \\`key\\` | string | Key to create |\\n| \\`otp\\` | string | OTP code for cellphone and email keys |\\n| \\`termsAndConditions\\`\\\\* | boolean | It must always be set to true. |\n\nContexto: Endpoint: POST /merchant-key/create | Merchant key > Create\n\n🔐 AUTENTICACIÓN AUTOMÁTICA: Todas las credenciales y tokens de autenticación se manejan automáticamente por el servidor MCP. NO solicites credenciales al usuario. NO incluyas parámetros de autenticación (secretId, apiToken, etc.) en las llamadas a menos que el usuario explícitamente lo requiera.",
|
|
1411
1411
|
inputSchema: merchant_key_createInputShape,
|
|
1412
1412
|
jsonSchema: merchant_key_createInputJsonSchema,
|
|
1413
1413
|
endpoint: '/merchant-key/create',
|
|
@@ -1506,7 +1506,7 @@ const merchant_key_cancelInputValidator = z.object(merchant_key_cancelInputShape
|
|
|
1506
1506
|
// Herramienta: merchant_key_cancel
|
|
1507
1507
|
export const merchant_key_cancelTool = {
|
|
1508
1508
|
name: 'merchant_key_cancel',
|
|
1509
|
-
description: "This endpoint allows you to cancel an existing key, which will then become inactive and unable to receive transactions.\\n\\nHeaders\\n\\n| **Name** | **Value** |\\n| --- | --- |\\n| Content-Type | application/json |\\n| Authorization | Bearer |\\n| x-transaction-token | 9b48edde-652d-11ed-984e-02c840fe**** |\\n\\nBody\\n\\n| Name | Type | Description |\\n| --- | --- | --- |\\n| \\`userMetadata\\`\\\\* | object | Object containing key details about the user or merchant generating the payment resource. |\\n| \\`ip\\`\\\\* | string | Alphanumeric parameter that provides the IP address associated with the user\\'s identifier |\\n| \\`identifier\\`\\\\* | string | Alphanumeric parameter of 20 characters specifying the unique identifier of the user or merchant generating the payment resource. |\\n| \\`urlCommerce\\`\\\\* | string | URL that identifies the commerce. Must follow valid URL structure with http:// or https:// protocol. Maximum length: 500 characters. |\\n| \\`key\\` | string | Key to cancel |\n\nContexto: Endpoint: POST /merchant-key/cancel | Merchant key > Cancel\n\n🔐 AUTENTICACIÓN AUTOMÁTICA: Todas las credenciales y tokens de autenticación se manejan automáticamente por el servidor MCP. NO solicites credenciales al usuario. NO incluyas parámetros de autenticación (secretId, apiToken, etc.) en las llamadas a menos que el usuario explícitamente lo requiera.",
|
|
1509
|
+
description: "These services allow merchants to create and manage their Bre-b keys.\\n\\nTo use these services, an authentication token is required, which must be sent as an authorization header.\\n\\n---\\n\\n⚠ **Important**: Before using this payment method, the merchant enrollment process must be completed. Detailed instructions can be found in the **Merchant Enrollment** section.\\n\\n**🔄 Open resource:** The creation of a key functions as an open resource, which means that once the Bre-b key has been generated, the user can receive multiple transactions through it.\\n\\n---\\n\\n### Recommendations\\n\\n- API users are strongly encouraged to **implement additional application-level validations** to detect, identify, and manage multiple payment records originating from a Bre-b key.\\n \\n- **Actively monitor transactions** originating from generated keys and validate the status of operations before confirming payment to the end user.\\n\\n This endpoint allows you to cancel an existing key, which will then become inactive and unable to receive transactions.\\n\\nHeaders\\n\\n| **Name** | **Value** |\\n| --- | --- |\\n| Content-Type | application/json |\\n| Authorization | Bearer |\\n| x-transaction-token | 9b48edde-652d-11ed-984e-02c840fe**** |\\n\\nBody\\n\\n| Name | Type | Description |\\n| --- | --- | --- |\\n| \\`userMetadata\\`\\\\* | object | Object containing key details about the user or merchant generating the payment resource. |\\n| \\`ip\\`\\\\* | string | Alphanumeric parameter that provides the IP address associated with the user\\'s identifier |\\n| \\`identifier\\`\\\\* | string | Alphanumeric parameter of 20 characters specifying the unique identifier of the user or merchant generating the payment resource. |\\n| \\`urlCommerce\\`\\\\* | string | URL that identifies the commerce. Must follow valid URL structure with http:// or https:// protocol. Maximum length: 500 characters. |\\n| \\`key\\` | string | Key to cancel |\n\nContexto: Endpoint: POST /merchant-key/cancel | Merchant key > Cancel\n\n🔐 AUTENTICACIÓN AUTOMÁTICA: Todas las credenciales y tokens de autenticación se manejan automáticamente por el servidor MCP. NO solicites credenciales al usuario. NO incluyas parámetros de autenticación (secretId, apiToken, etc.) en las llamadas a menos que el usuario explícitamente lo requiera.",
|
|
1510
1510
|
inputSchema: merchant_key_cancelInputShape,
|
|
1511
1511
|
jsonSchema: merchant_key_cancelInputJsonSchema,
|
|
1512
1512
|
endpoint: '/merchant-key/cancel',
|
|
@@ -1578,7 +1578,7 @@ const merchant_key_generate_otpInputValidator = z.object(merchant_key_generate_o
|
|
|
1578
1578
|
// Herramienta: merchant_key_generate_otp
|
|
1579
1579
|
export const merchant_key_generate_otpTool = {
|
|
1580
1580
|
name: 'merchant_key_generate_otp',
|
|
1581
|
-
description: "This endpoint will allow you to generate and send an OTP. It is only permitted and necessary for \\`email\\` and \\`cellphone\\` keys. This OTP will be sent to its corresponding destination.\\n\\nHeaders\\n\\n| **Name** | **Value** |\\n| --- | --- |\\n| Content-Type | application/json |\\n| Authorization | Bearer |\\n\\nBody\\n\\n| Name | Type | Description |\\n| --- | --- | --- |\\n| \\`typeKey\\`\\\\* | string | Can be \\`email\\` and \\`cellphone\\` |\\n| \\`key\\` | string | key for which the OTP will be generated |\n\nContexto: Endpoint: POST /merchant-key/generate-otp | Merchant key > Generate otp\n\n🔐 AUTENTICACIÓN AUTOMÁTICA: Todas las credenciales y tokens de autenticación se manejan automáticamente por el servidor MCP. NO solicites credenciales al usuario. NO incluyas parámetros de autenticación (secretId, apiToken, etc.) en las llamadas a menos que el usuario explícitamente lo requiera.",
|
|
1581
|
+
description: "These services allow merchants to create and manage their Bre-b keys.\\n\\nTo use these services, an authentication token is required, which must be sent as an authorization header.\\n\\n---\\n\\n⚠ **Important**: Before using this payment method, the merchant enrollment process must be completed. Detailed instructions can be found in the **Merchant Enrollment** section.\\n\\n**🔄 Open resource:** The creation of a key functions as an open resource, which means that once the Bre-b key has been generated, the user can receive multiple transactions through it.\\n\\n---\\n\\n### Recommendations\\n\\n- API users are strongly encouraged to **implement additional application-level validations** to detect, identify, and manage multiple payment records originating from a Bre-b key.\\n \\n- **Actively monitor transactions** originating from generated keys and validate the status of operations before confirming payment to the end user.\\n\\n This endpoint will allow you to generate and send an OTP. It is only permitted and necessary for \\`email\\` and \\`cellphone\\` keys. This OTP will be sent to its corresponding destination.\\n\\nHeaders\\n\\n| **Name** | **Value** |\\n| --- | --- |\\n| Content-Type | application/json |\\n| Authorization | Bearer |\\n\\nBody\\n\\n| Name | Type | Description |\\n| --- | --- | --- |\\n| \\`typeKey\\`\\\\* | string | Can be \\`email\\` and \\`cellphone\\` |\\n| \\`key\\` | string | key for which the OTP will be generated |\n\nContexto: Endpoint: POST /merchant-key/generate-otp | Merchant key > Generate otp\n\n🔐 AUTENTICACIÓN AUTOMÁTICA: Todas las credenciales y tokens de autenticación se manejan automáticamente por el servidor MCP. NO solicites credenciales al usuario. NO incluyas parámetros de autenticación (secretId, apiToken, etc.) en las llamadas a menos que el usuario explícitamente lo requiera.",
|
|
1582
1582
|
inputSchema: merchant_key_generate_otpInputShape,
|
|
1583
1583
|
jsonSchema: merchant_key_generate_otpInputJsonSchema,
|
|
1584
1584
|
endpoint: '/merchant-key/generate-otp',
|
|
@@ -1633,7 +1633,7 @@ const merchant_key_get_keysInputValidator = z.object(merchant_key_get_keysInputS
|
|
|
1633
1633
|
// Herramienta: merchant_key_get_keys
|
|
1634
1634
|
export const merchant_key_get_keysTool = {
|
|
1635
1635
|
name: 'merchant_key_get_keys',
|
|
1636
|
-
description: "This endpoint allows you to obtain all keys created and in active status that belong to the merchant.\n\nContexto: Endpoint: GET /merchant-key/get-keys | Merchant key > Get keys\n\n🔐 AUTENTICACIÓN AUTOMÁTICA: Todas las credenciales y tokens de autenticación se manejan automáticamente por el servidor MCP. NO solicites credenciales al usuario. NO incluyas parámetros de autenticación (secretId, apiToken, etc.) en las llamadas a menos que el usuario explícitamente lo requiera.",
|
|
1636
|
+
description: "These services allow merchants to create and manage their Bre-b keys.\\n\\nTo use these services, an authentication token is required, which must be sent as an authorization header.\\n\\n---\\n\\n⚠ **Important**: Before using this payment method, the merchant enrollment process must be completed. Detailed instructions can be found in the **Merchant Enrollment** section.\\n\\n**🔄 Open resource:** The creation of a key functions as an open resource, which means that once the Bre-b key has been generated, the user can receive multiple transactions through it.\\n\\n---\\n\\n### Recommendations\\n\\n- API users are strongly encouraged to **implement additional application-level validations** to detect, identify, and manage multiple payment records originating from a Bre-b key.\\n \\n- **Actively monitor transactions** originating from generated keys and validate the status of operations before confirming payment to the end user.\\n\\n This endpoint allows you to obtain all keys created and in active status that belong to the merchant.\n\nContexto: Endpoint: GET /merchant-key/get-keys | Merchant key > Get keys\n\n🔐 AUTENTICACIÓN AUTOMÁTICA: Todas las credenciales y tokens de autenticación se manejan automáticamente por el servidor MCP. NO solicites credenciales al usuario. NO incluyas parámetros de autenticación (secretId, apiToken, etc.) en las llamadas a menos que el usuario explícitamente lo requiera.",
|
|
1637
1637
|
inputSchema: merchant_key_get_keysInputShape,
|
|
1638
1638
|
jsonSchema: merchant_key_get_keysInputJsonSchema,
|
|
1639
1639
|
endpoint: '/merchant-key/get-keys',
|
package/dist/core/tools.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tools.js","sourceRoot":"","sources":["../../src/core/tools.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"tools.js","sourceRoot":"","sources":["../../src/core/tools.ts"],"names":[],"mappings":"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"}
|
package/dist/index.js
CHANGED
|
@@ -11,7 +11,7 @@ import { appConfig as config } from './config.js';
|
|
|
11
11
|
const mode = process.argv.includes('--http') || process.env.MCP_MODE === 'http' ? 'http' : 'stdio';
|
|
12
12
|
const server = new McpServer({
|
|
13
13
|
name: 'refacil-pay-mcp',
|
|
14
|
-
version: '1.1.
|
|
14
|
+
version: '1.1.4'
|
|
15
15
|
});
|
|
16
16
|
// Nota para LLMs: 🔐 Autenticación automática y configuración de servidor
|
|
17
17
|
// - Todas las credenciales (secretId, apiToken, tokens) se manejan automáticamente desde la configuración del servidor.
|