fixed: The fee charged to the customer will be the fixed fee amount. Fixed fee is fixed amount in the payment currency.percentage: The fee charged to the customer will be the percentage fee amount. Percentage fee is calculated as (percentage_fee / 100) * transaction_amount.both: The fee charged to the customer will be the sum of the fixed fee and the percentage fee. Calculated as fixed_fee + ((percentage_fee / 100) * transaction_amount).greater: The fee charged to the customer will be the greater of the fixed fee or the percentage fee.| HTTP status | Error code | Description |
|---|---|---|
| 400 | VALIDATION_ERROR | Request validation failed |
| 401 | UNAUTHORIZED | Missing or invalid authorization token |
| 403 | FORBIDDEN | You do not have permission to access this resource |
| 500 | INTERNAL_ERROR | Unexpected server error |
curl --location 'https://api.paypaga.com/v2/transactions/pay-in/config?country=undefined&payment_method=undefined'{
"currency": "COP",
"fee_mode": "greater",
"fixed_fee": 2,
"minimum_fee": 1,
"payment_method": "pse",
"percentage_fee": 3,
"required_fields": [
{
"name": "first_name",
"pattern": "^\\p{L}*(?:[ '-]\\p{L}+)*$",
"type": "string"
},
{
"name": "last_name",
"pattern": "^\\p{L}*(?:[ '-]\\p{L}+)*$",
"type": "string"
},
{
"name": "document_type",
"options": {
"CC": "Cédula de Ciudadanía",
"CE": "Cédula de Extranjería",
"PP": "Pasaporte",
"TE": "Tarjeta de Extranjería"
},
"type": "string"
},
{
"name": "document_number",
"type": "string"
},
{
"name": "bank_code",
"options": {
"1001": "BANCO DE BOGOTA",
"1002": "BANCO POPULAR",
"1006": "BANCO ITAU",
"1007": "BANCOLOMBIA",
"1009": "CITIBANK",
"1012": "BANCO GNB SUDAMERIS",
"1013": "BANCO BBVA COLOMBIA S.A.",
"1019": "SCOTIABANK COLPATRIA",
"1023": "BANCO DE OCCIDENTE",
"1032": "BANCO CAJA SOCIAL",
"1040": "BANCO AGRARIO",
"1047": "BANCO MUNDO MUJER S.A.",
"1051": "BANCO DAVIVIENDA",
"1052": "BANCO AV VILLAS",
"1059": "BANCAMIA S.A.",
"1060": "BANCO PICHINCHA S.A.",
"1061": "BANCOOMEVA S.A.",
"1062": "BANCO FALABELLA",
"1063": "BANCO FINANDINA S.A. BIC",
"1065": "BANCO SANTANDER COLOMBIA",
"1066": "BANCO COOPERATIVO COOPCENTRAL",
"1069": "BANCO SERFINANZA",
"1070": "LULO BANK",
"1071": "BANCO J.P. MORGAN COLOMBIA S.A.",
"1097": "DALE",
"1121": "FINANCIERA JURISCOOP SA COMPAÑÍA DE FINANCIAMIENTO",
"1283": "CFA COOPERATIVA FINANCIERA",
"1286": "JFK COOPERATIVA FINANCIERA",
"1289": "COTRAFA",
"1292": "CONFIAR COOPERATIVA FINANCIERA",
"1303": "BANCO UNION antes GIROS",
"1370": "COLTEFINANCIERA",
"1507": "NEQUI",
"1551": "DAVIPLATA",
"1558": "BAN100",
"1637": "IRIS",
"1801": "MOVII S.A.",
"1802": "DING",
"1803": "POWWI",
"1804": "UALÁ",
"1808": "BOLD CF",
"1809": "NU",
"1811": "RAPPIPAY",
"1812": "COINK SA",
"1814": "GLOBAL66",
"1815": "ALIANZA FIDUCIARIA",
"1816": "CREZCAMOS"
},
"type": "string"
},
{
"name": "email",
"pattern": "^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,}$",
"type": "string"
},
{
"name": "phone",
"pattern": "^\\d+$",
"type": "string"
},
{
"name": "address",
"pattern": "^[\\p{L}0-9][\\p{L}0-9\\s,'#/.°-]+$",
"type": "string"
}
]
}