Data Ingestion
Fees
Data & Response Codes
- Pagos Data Dictionary
- AVS Response Codes
- CVV Check Response Codes
- Disbursement Response Codes
- 3DS Response Codes
- Stored Credential Response Codes
- Transaction Status Codes
- Chargeback Reason Codes
- Chargeback Status Codes
- Fee Type Codes
- Refund Status Codes
- Transaction Response Codes (Decline Codes)
Data Ingestion
BIN Database
- BIN Data Tools
- Parrot API
- Parrot Batch
Account Updater
- Account Updater Tools
- Batch Account Updater API
- Real-Time Account Updater API
Data Ingestion
Fees
POST
/
v1
/
{account_id}
/
fees
curl --request POST \
--url https://api.nest.pagosapi.com/v1/{account_id}/fees \
--header 'Content-Type: application/json' \
--data '{
"fee_id": "<string>",
"settlement_currency": "<string>",
"created": "<string>",
"payment_method_details": {
"payment_method_type": "<string>",
"card": {
"attributes": {
"network": "<string>",
"type": "<string>"
}
}
},
"fee_details": {
"fee_name": "<string>",
"fee_category": "<string>",
"interchange_qualification": "<string>"
},
"fee_amount_details": {
"fee_amount": 1,
"fee_amount_type": "debit",
"unit_quantity": 1,
"unit_fee": 1,
"unit_volume": 1,
"percent_rate": 50
},
"transaction_details": {
"presentment_currency": "<string>",
"amount": 1,
"amount_type": "debit"
},
"additional_data": {
"merchant_account_id": "<string>",
"metadata": {}
},
"pagos_codes": {
"pagos_fee_name": "3ds_authentication",
"pagos_payment_method": "ach",
"pagos_network": "accel"
}
}'
Path Parameters
Body
application/json
curl --request POST \
--url https://api.nest.pagosapi.com/v1/{account_id}/fees \
--header 'Content-Type: application/json' \
--data '{
"fee_id": "<string>",
"settlement_currency": "<string>",
"created": "<string>",
"payment_method_details": {
"payment_method_type": "<string>",
"card": {
"attributes": {
"network": "<string>",
"type": "<string>"
}
}
},
"fee_details": {
"fee_name": "<string>",
"fee_category": "<string>",
"interchange_qualification": "<string>"
},
"fee_amount_details": {
"fee_amount": 1,
"fee_amount_type": "debit",
"unit_quantity": 1,
"unit_fee": 1,
"unit_volume": 1,
"percent_rate": 50
},
"transaction_details": {
"presentment_currency": "<string>",
"amount": 1,
"amount_type": "debit"
},
"additional_data": {
"merchant_account_id": "<string>",
"metadata": {}
},
"pagos_codes": {
"pagos_fee_name": "3ds_authentication",
"pagos_payment_method": "ach",
"pagos_network": "accel"
}
}'