Generic Writer is a Keboola component that allows you to send any type of HTTP requests with or without data to arbitrary HTTP endpoints.
It is a counterpart to the Generic Extractor that allows you to extract data from virtually any API.
The core concepts and configuration of the writer are also quite similar to the Generic Extractor, so it should be easy to configure for anyone familiar with the extractor.
The requirements are the same as for the Generic Extractor. No programming skills or additional tools are required. You just need to do two easy things before you start:
The writer writes data to a specified endpoint in a specified format. It supports a single table and a single endpoint per configuration.
The content can be sent in two ways:
www.example.com/api/user/
.
Or sending data with different user parameters that are present in the input table.There are variety of use-cases for the generic writer. You may create, update or even delete objects via RESTful API or just trigger simple webhooks by sending GET requests to specified endpoints or send notifications to slack. The setup is quite straightforward and it allows you to leverage secure encripted parameters and dynamic functions.
The typical use cases are:
DELETE api.com/[[user_id]]
where user_id
is a column in the input tableFor real configuration examples, see the configuration examples section or the collection of functional examples.