lianja / Razorpay APIs / Fetch all Transactions
Back to Collection Items
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
loHttp = createobject("CkHttp")
loHttp.BasicAuth = .T.
loHttp.Login = "username"
loHttp.Password = "password"
loQueryParams = createobject("CkJsonObject")
loQueryParams.UpdateString("account_number","{account_number}")
loResp = loHttp.QuickRequestParams("GET","https://api.razorpay.com/v1/transactions",loQueryParams)
if (loHttp.LastMethodSuccess = .F.) then
? loHttp.LastErrorText
release loHttp
release loQueryParams
return
endif
? str(loResp.StatusCode)
? loResp.BodyStr
release loResp
release loHttp
release loQueryParams
Curl Command
curl -G -d "account_number=%7Baccount_number%7D"
-u 'username:password'
https://api.razorpay.com/v1/transactions
Postman Collection Item JSON
{
"name": "Fetch all Transactions",
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
],
"body": {
"mode": "raw",
"raw": ""
},
"url": {
"raw": "https://api.razorpay.com/v1/transactions?account_number={account_number}",
"protocol": "https",
"host": [
"api",
"razorpay",
"com"
],
"path": [
"v1",
"transactions"
],
"query": [
{
"key": "account_number",
"value": "{account_number}"
}
]
},
"description": "Use this [API](https://razorpay.com/docs/api/razorpayx/transactions/#fetch-all-transactions) to fetch details of all transactions."
},
"response": [
]
}