Unable to create a webhook using postman

Hi,

Can i create a webhook using postman by setting target url with my cloud hosted url(servicenow url)?

Do i need to custom code somewhere?

@Aravind_Barla - welcome to the forum! You should check out the dev docs for more webhook info, but the gist is:

  • Configure server behavior to handle webhook request
  • Call the webhook API to establish a new webhook
  • Store the secret and return a 200 or 204 with the secret

The call to establish the webhook can be made in Postman, but you’ll need to configure behavior at the target URL elsewhere. I don’t know anything about servicenow, so I’m not sure if you’re able to configure server responses/behavior for specific URLs.