Webhooks usage

Methods: list | info | update | create | delete | events

list

List of webhooks in the project

Options:

  • String apikey (API key)

Request example:

https://boomstream.com/api/webhook/list?apikey={{API_KEY}}

info

Webhook information

Options:

  • String apikey (API key)
  • String code (webhook code)

Request example:

https://boomstream.com/api/webhook/info?apikey={{API_KEY}}&code=webhook code

update

Update webhook

Options:

  • String apikey (API key)
  • String code (webhook code)
  • String event (webhook type)
  • String url (reference to your webhook listener)

Request example:

https://boomstream.com/api/webhook/update?apikey={{API_KEY}}&code=webhook code&event=webhook type&url=link to your webhook listener

create

Create webhook

Options:

  • String apikey (API key)
  • String event (webhook type)
  • String url (reference to your webhook listener)

Request example:

https://boomstream.com/api/webhook/create?apikey={{API_KEY}}&event=webhook type&url=link to your webhook listener

delete

Remove the webhook

Options:

  • String apikey (API key)
  • String code (webhook code)

Request example:

https://boomstream.com/api/webhook/delete?apikey={{API_KEY}}&code=webhook code

events

List of available webhooks

Options:

  • String apikey (API key)

Request example:

https://boomstream.com/api/webhook/events?apikey={{API_KEY}}