1

I am using HelloSign api for c# and on hellosign API page they are asking me to add callback url and they will test it. I am not sure what is call back url and where and how to use it. Can any one please explain me what is call back and why its useful or how to use? Or can you explain call back url in simple language?

nikunjM
  • 520
  • 1
  • 4
  • 19

1 Answers1

0

in simple team, If you have made nay request that result will be posted to griven url (call back url) where api will make request and you will get result from api.

A callback URL will be invoked by the API method you're calling after it's done. So if you call

POST /api.example.com/foo?callbackURL=http://my.server.com/bar

Then when /foo is finished, it sends a request to http://my.server.com/bar. The contents and method of that request are going to vary - check the documentation for the API you're accessing.

Kaushik Thanki
  • 2,906
  • 2
  • 18
  • 40