delphiDll / Razorpay APIs / Fetch Transfers for an Order
Back to Collection Items
var
http: HCkHttp;
success: Boolean;
queryParams: HCkJsonObject;
resp: HCkHttpResponse;
begin
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http := CkHttp_Create();
CkHttp_putBasicAuth(http,True);
CkHttp_putLogin(http,'username');
CkHttp_putPassword(http,'password');
queryParams := CkJsonObject_Create();
CkJsonObject_UpdateString(queryParams,'expand[]','transfers');
resp := CkHttp_QuickRequestParams(http,'GET','https://api.razorpay.com/v1/orders/{order_id}/',queryParams);
if (CkHttp_getLastMethodSuccess(http) = False) then
begin
Memo1.Lines.Add(CkHttp__lastErrorText(http));
Exit;
end;
Memo1.Lines.Add(IntToStr(CkHttpResponse_getStatusCode(resp)));
Memo1.Lines.Add(CkHttpResponse__bodyStr(resp));
CkHttpResponse_Dispose(resp);
CkHttp_Dispose(http);
CkJsonObject_Dispose(queryParams);
Curl Command
curl -G -d "expand[]=transfers"
-u 'username:password'
https://api.razorpay.com/v1/orders/{order_id}/
Postman Collection Item JSON
{
"name": "Fetch Transfers for an Order",
"request": {
"method": "GET",
"header": [
],
"url": {
"raw": "https://api.razorpay.com/v1/orders/{order_id}/?expand[]=transfers",
"protocol": "https",
"host": [
"api",
"razorpay",
"com"
],
"path": [
"v1",
"orders",
"{order_id}",
""
],
"query": [
{
"key": "expand[]",
"value": "transfers"
}
]
},
"description": "Use this [API](https://razorpay.com/docs/api/route/#fetch-transfer-for-an-order) to fetch the collection of all transfers created on a specific Order ID."
},
"response": [
]
}