I'm building some scripts for automation. Individual API calls are working fine, but when I try to string them together, I'm getting the error:
{"code": 500, "message": "There was an error processing your request. It has been logged (ID 58fb6b3947b734b2)."}
Is there anywhere I can track down this error to find out what went wrong?
It is clearly at my end, as all I am doing is sending the results of one API call into the other. If I do the two steps manually then it is fine. So there's something in my script that is breaking it.
Hi @Thomas Barrett
The 500 error is very generic as it involves multiple reasons that made the server throw an exception, not being able to handle the request received. You said that you are able to run the requests manually but when handled by the script it is not working.
In bash, for example, you could use the option -x (header !#/bin/bash -x ) to print all the commands called or evaluations performed in your script. This could help you to identify what is wrong with the call.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You are welcome!
I'm glad that you could find it!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.