delphiDll / Razorpay APIs / Fetch All Plans
Back to Collection Items
var
http: HCkHttp;
success: Boolean;
sbResponseBody: HCkStringBuilder;
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');
sbResponseBody := CkStringBuilder_Create();
success := CkHttp_QuickGetSb(http,'https://api.razorpay.com/v1/plans',sbResponseBody);
if (success = False) then
begin
Memo1.Lines.Add(CkHttp__lastErrorText(http));
Exit;
end;
Memo1.Lines.Add('Response status code = ' + IntToStr(CkHttp_getLastStatus(http)));
Memo1.Lines.Add(CkStringBuilder__getAsString(sbResponseBody));
CkHttp_Dispose(http);
CkStringBuilder_Dispose(sbResponseBody);
Curl Command
curl -X GET
-u 'username:password'
https://api.razorpay.com/v1/plans
Postman Collection Item JSON
{
"name": "Fetch All Plans",
"request": {
"method": "GET",
"header": [
],
"url": {
"raw": "https://api.razorpay.com/v1/plans",
"protocol": "https",
"host": [
"api",
"razorpay",
"com"
],
"path": [
"v1",
"plans"
]
},
"description": "You can fetch all the plans created by you.\nKnow more about the <a href=\"https://razorpay.com/docs/api/subscriptions/#fetch-all-plans\" target=\"_blank\">Fetch all Plans</a> API."
},
"response": [
]
}