ProcessPayments API
The ProcessPayments API is used to create or push payments in Tipalti. There's a limit of 250 records per API call. See the documentation for more details.
Encryption
let encoded = payername+timestamp+paymentGroupTitleEAT parameter = paymentGroupTitle
Sample request code
<!-- ProcessPayments
Minimum required fields: PayerName, IDAP, Amount, Payment Ref Code.
Payment Group Title is optional, and defaults to None.
All other fields are optional and not included in the SOAP request in this code example.
Replace with the appropriate parameters for your SOAP call and variables.
-->
<x:Envelope
xmlns:x="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:tip="http://Tipalti.org/">
<x:Header/>
<x:Body>
<tip:ProcessPayments>
<tip:payerName></tip:payerName>
<tip:paymentGroupTitle></tip:paymentGroupTitle>
<tip:tipaltiPaymentsOrders>
<tip:TipaltiPaymentOrderItem>
<tip:Idap></tip:Idap>
<tip:Amount></tip:Amount>
<tip:RefCode></tip:RefCode>
</tip:TipaltiPaymentOrderItem>
</tip:tipaltiPaymentsOrders>
<tip:timeStamp></tip:timeStamp>
<tip:key></tip:key>
</tip:ProcessPayments>
</x:Body>
</x:Envelope>Python SDK
https://github.com/pratikkhatwani-tipalti/Tipalti-python-sdk