TCL / Razorpay APIs / Send or Resend Notification
Back to Collection Items
load ./chilkat.dll
# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.
set http [new_CkHttp]
CkHttp_put_BasicAuth $http 1
CkHttp_put_Login $http "username"
CkHttp_put_Password $http "password"
# resp is a CkHttpResponse
set resp [CkHttp_QuickRequest $http "POST" "https://api.razorpay.com/v1/invoices/{inv_id}/notify_by/{medium}"]
if {[CkHttp_get_LastMethodSuccess $http] == 0} then {
puts [CkHttp_lastErrorText $http]
delete_CkHttp $http
exit
}
puts [CkHttpResponse_get_StatusCode $resp]
puts [CkHttpResponse_bodyStr $resp]
delete_CkHttpResponse $resp
delete_CkHttp $http
Curl Command
curl -X POST
-u 'username:password'
https://api.razorpay.com/v1/invoices/{inv_id}/notify_by/{medium}
Postman Collection Item JSON
{
"name": "Send or Resend Notification",
"request": {
"method": "POST",
"header": [
],
"url": {
"raw": "https://api.razorpay.com/v1/invoices/{inv_id}/notify_by/{medium}",
"protocol": "https",
"host": [
"api",
"razorpay",
"com"
],
"path": [
"v1",
"invoices",
"{inv_id}",
"notify_by",
"{medium}"
]
},
"description": "Send or resend an invoice notification using this API.\n\nKnow more about the <a href=\"https://razorpay.com/docs/api/invoices/#send-notifications\" target=\"_blank\">Send/Resend a Notification API</a>."
},
"response": [
]
}