Okay so what I want to do is as follows:
I have built a chatbot which I am going to publish on the WhatsApp channel. This bot enables businesses to register their businesses, supplying information like Business Name, address, phone number, Whatsapp link for their WhatsApp business catalogue, and products or services they offer. This information will then be put in the format of key-value pairs as follows
business name : @business_name
address : @address
phone : @business_phone
unique_id : @business_id (primary key)
etc
This information should then be updated in the database using the HTTP POST method.
When users search for a business that supplies goods or services that he or she is looking for, I would like to use the HTTP GET method to filter resources that meet this criterion and then show the results to the user.
In addition, I would want to then use the PATCH/PUT and DELETE methods to modify the records that will be in the database.