All Transaction
This endpoint allows you to view all the transactions.
How to View All Transactions
Here is a sample code for viewing all your transactions:
Endpoint https://api.chapa.co/v1/transactions
Method GET
Authorization
: Pass your secret key as a bearer token in the request header to authorize this call.
1import requests23url = "https://api.chapa.co/v1/transactions"45payload = {}6headers = {7 'Authorization': 'Bearer CHASECK_TEST-xxxxxxxxxxxxxxxx'8}910response = requests.request("GET", url, headers=headers, data=payload)1112print(response.text)1314