Python implementation of Paylike.io's rest api
Only the transaction management part has been implemented, you can find the official api documentation here: https://github.com/paylike/api-docs#transactions
client=PaylikeApiClient(api_key, merchant_id)'''Void or partially void the reserved amount on a transaction - transactionId: String, // required - amount: Decimal, // If no amount is given, the full amount will be voided'''client.cancel_transaction(transaction_id, amount=None)'''Capture a transaction - transactionId: String, // required - amount: Decimal, // required - descriptor: String, // optional, text on client bank statement - currency: String, // optional, expected currency (for additional verification)'''client.capture_transaction(transaction_id, amount, descriptor='', currency=None)Make sure to read about recurring payments.
'''Create a payment, based on an existing transaction (used for recurring payments) - transactionId: String, // required - currency: String, // required, three letter ISO - amount: Decimal, // required, amount in minor units - descriptor: String, // optional, the statement on the customers bankaccount. Will fallback to merchant descriptor'''client.create_payment_from_transaction(transaction_id, currency, amount, descriptor='')Make sure to read about recurring payments. It's recommended to use create_payment_from_transaction
'''Create a payment from a saved card token - cardId: String, // required - currency: String, // required, three letter ISO - amount: Decimal, // required - descriptor: String, // optional, the statement on the customers bankaccount. Will fallback to merchant descriptor'''client.create_payment_from_saved_card(card_id, currency, amount, descriptor='')'''Fetch a transaction - transactionId: String, // required'''client.get_transaction(transaction_id)'''Fetch transactions - limit: Number, // optional, the number of transactions to fetch. Default 100'''client.get_transactions(limit=100)'''Refund, or partially refund a transaction - transactionId: String, // required - amount: Decimal, // required - descriptor: String, // optional, the statement on the customers bankaccount. Will fallback to merchant descriptor'''client.refund_transaction(self, transaction_id, amount, descriptor="")
'''