FAQ -> Pabbly Connect -> What are HTTP Methods Available in LiveWebinar REST Webhooks?

What are HTTP Methods Available in LiveWebinar REST Webhooks?

HTTP Methods Available in LiveWebinar REST Webhooks

LiveWebinar’s REST Webhooks lets you choose between 3 basic HTTP methods that are quite commonly found in most REST API options:

- GET – as the name says for data retrieval. Here, a suitable endpoint is enough. Very often GET method verifies whether a given resource exists or not.An example query can generate:
http://example.com/api/resource?per_page=10&page=2
- POST – method used for is used to create and send new data. In this case, there is already an existing (body) in which we will pass data to our REST API. The response should return an HTTP Location header with the address to the newly created resource.
- PUT - very similar to the POST method. PUT is a distinguishing feature of this method is that the PUT query must point to a specific resource. It is worth mentioning that PUT overwrites the entire resource.