This is the API to get all list of transactions/orders you have and their status
| code (required) (int) | For swahilies purpose default: 105 |
|---|---|
| api (required) (int) | For swahilies purpose default: 170 |
| api_key (required) | Your API key given after registration |
| order_id (required) | Your order id passed on during creating an order |
Sample of body request
{
"api":170,
"code":103,
data:{
"api_key":"csdheruvhhjdhvjadmvjehrve",
}
}
import requests
url = "https://swahiliesapi.invict.site/Api"
payload = "{
"api" :170,
"code":103,
data: {
"api_key":"csdheruvhhjdhvjadmvjehrve",
}
}"
headers = {}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
