How to upload data (list, JSON or Object) to my PHP API.(Thunkable X)?

Hi Thunkers,
How can I upload data to a PHP API as it was done with Tinywebdb.storevalue?I just need to send a list of data (list, JSON or Object) to my PHP API to later save them in MySQL

  • I guess I should use webApi component, is it correct?
  • Where do I put the variable that contains the data I want to send?
  • Should I create an object or JSON before sending them?
    Thank you.

Hi,

  1. Yes
  2. It depends on the protocol you want to use - GET, POST, etc.
  3. Converting to JSON is optional. You can send data in any format supported by the transfer protocols

thanks for your quick response!