PowerBuilder / Razorpay APIs / Fetch Expanded Card or EMI Details for Payments
Back to Collection Items
integer li_rc
oleobject loo_Http
integer li_Success
oleobject loo_QueryParams
oleobject loo_Resp
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
loo_Http = create oleobject
// Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0
li_rc = loo_Http.ConnectToNewObject("Chilkat.Http")
if li_rc < 0 then
destroy loo_Http
MessageBox("Error","Connecting to COM object failed")
return
end if
loo_Http.BasicAuth = 1
loo_Http.Login = "username"
loo_Http.Password = "password"
loo_QueryParams = create oleobject
// Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
li_rc = loo_QueryParams.ConnectToNewObject("Chilkat.JsonObject")
loo_QueryParams.UpdateString("expand[]","card")
loo_Resp = loo_Http.QuickRequestParams("GET","https://api.razorpay.com/v1/payments/",loo_QueryParams)
if loo_Http.LastMethodSuccess = 0 then
Write-Debug loo_Http.LastErrorText
destroy loo_Http
destroy loo_QueryParams
return
end if
Write-Debug string(loo_Resp.StatusCode)
Write-Debug loo_Resp.BodyStr
destroy loo_Resp
destroy loo_Http
destroy loo_QueryParams
Curl Command
curl -G -d "expand[]=card"
-u 'username:password'
https://api.razorpay.com/v1/payments/
Postman Collection Item JSON
{
"name": "Fetch Expanded Card or EMI Details for Payments",
"request": {
"method": "GET",
"header": [
],
"url": {
"raw": "https://api.razorpay.com/v1/payments/?expand[]=card",
"protocol": "https",
"host": [
"api",
"razorpay",
"com"
],
"path": [
"v1",
"payments",
""
],
"query": [
{
"key": "expand[]",
"value": "card"
}
]
},
"description": "Fetch the expanded details of the card used to make a payment using the API. \n\nYou can also fetch expanded details for an EMI. In this case, the URL is:\n`https://api.razorpay.com/v1/payments/?expand[]=emi`\n\nKnow more about the <a href=\"https://razorpay.com/docs/api/payments/#fetch-expanded-card-or-emi-details-for-payments\" target=\"_blank\">Fetch Expanded Card or EMI Details for Payments API</a>."
},
"response": [
]
}