CATEGORIES
- A free account
- Account assistants
- Account Information
- Affiliate Program
- Appearance
- AppSumo
- Audio & Video
- Branding / Custom / Whitelabel
- Branding Tool
- Break-out Rooms
- Call to Action
- Camera & Microphone
- Capacity & Limits
- Closed captioning
- Decisions - Professional Voting
- Event tokens
- Evergreen webinars
- Forms
- How to join meeting on mobiles
- Hubspot Integration
- Integrations
- Language interpretation
- Live Transcription
- Meetings & Webinars
- Other
- Pabbly Connect
- Paid Webinars
- Presence Manager
- Recording
- Registration
- Requirements
- Room Chat
- Screen Sharing
- Session Management
- Statistics & Reports
- Storage
- Streaming
- Sub-Accounts
- Tests & Surveys
- Virtual Backgrounds
- Vote Manager
- Waiting rooms
- Webinar and Meeting Room Features
- Website Presenter
- Whiteboard
- Wordpress plugin
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.