Sure, for your own personal database I can help. Please DM me your invoicing details …
You need to use an API key that has the permission to download data. Set Read application traffic (uplink and downlink) on. Then you should get your data.
That is in the configuration section for the v3 stack.
TTI, not unsurprisingly, don’t provide instructions on how to write code for databases as it’s a very generic & well documented thing. Given the monumental number of other websites that provide such info, I think Google will be your friend here.
Yes, you are right, my problem is not the way I build or program my database, but I thought it was possible to connect the data received by TTS directly to my database without going through the HTTP_Request.
Huh??? What did you have in mind for the data to get from the TTN servers to your database? There is no automagic integration that puts your data in to a database.
When the data arrives at the Application Server, it will just disappear in to thin air unless YOU choose to do something with it. Those somethings include:
MQTT
WebHooks
Data Storage
All of which have a well documented API for your data to leave the confines of the TTN servers and get to your servers. All three provide the data as JSON with varying levels of detail. When it arrives, you parse the JSON to prepare it for however your database would like you to insert records, depending on both the database and the language you are using, perform the insert and then, erm, that’s it.