Payin
This features allows Yativo user's top up their account or their end user's by passing the customer ID in the object.
to make a deposit first of all get the payment currencies available for the deposit currency via a get request to
GET /payment-methods/payin/currency?country={GBR}
Then use get the available payment gateways using the Country and Currency as Parameters
GET /payment-methods/payin?country=chl¤cy=clp
Then make a Post request
POST /wallet/deposits/new
{
"gateway": 235,
"amount": 109,
"currency": "USD"
// "customer_id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxx"
}
Last updated