Skip to main content
POST
https://staging-api.propaga.io/v1
/
customer-transaction
/
payment
/
deposit?paymentProviderName=facilito
curl 
--location 
--request POST 'https://staging-api.propaga.io/v1/customer-transaction/payment/deposit?paymentProviderName=facilito' \
--header 'Authorization: <your_awesome_token>'
--header 'Content-Type: application/json'
--data '{
  "idFactura": "9fba966b-6d0e-4764-9a5f-c0facbbe5581",
  "numeroReferencia": "9876543219",
  "valor": 10,
  "fechaPago": "2025-01-01 12:00:00.000",
  "idFacilito": "123456789012"
}'
Deposit received
curl 
--location 
--request POST 'https://staging-api.propaga.io/v1/customer-transaction/payment/deposit?paymentProviderName=facilito' \
--header 'Authorization: <your_awesome_token>'
--header 'Content-Type: application/json'
--data '{
  "idFactura": "9fba966b-6d0e-4764-9a5f-c0facbbe5581",
  "numeroReferencia": "9876543219",
  "valor": 10,
  "fechaPago": "2025-01-01 12:00:00.000",
  "idFacilito": "123456789012"
}'

Body

idFactura
string
required
Unique code used to make the payment request
numeroReferencia
string
required
User’s reference number
valor
number
required
Payment amount
fechaPago
string
required
Payment date in the format YYYY-MM-DD HH:MM:SS.SSS
idFacilito
string
required
Facilito’s generated sequence number for the payment
Deposit received