So, Currently i`m using a 3rd party api. This one is currently divided by 2 parts. 1 where we call an api endpoint to retrieve a list of objects. From there we scrape them one by one and push them to our database.
Part 2 is where we select every row where a certain status = 0. Now here comes the weird part. Due that the api endpoint has a need for a certain id. So the most smartest decision would be :
SET @url = CONCAT('<secret_api_endpoint>/', @documentId)
Sadly enough the last part where we insert the information to the database hasnt even reached. So something went wrong when calling for the api endpoint