Welcome to the Onshape forum! Ask questions and join in the discussions about everything Onshape.
First time visiting? Here are some places to start:- Looking for a certain topic? Check out the categories filter or use Search (upper right).
- Need support? Ask a question to our Community Support category.
- Please submit support tickets for bugs but you can request improvements in the Product Feedback category.
- Be respectful, on topic and if you see a problem, Flag it.
If you would like to contact our Community Manager personally, feel free to send a private message or an email.
howto solve:"{"message" : "An internal error has occurred; support code 4adff3ba9fb31f8a1634d61e"}"
saketh_vegesna
Member Posts: 3 ✭
hey guys, I am trying to update my variables in variables studio using API, so I am encountering a problem when writing the values to the studio, but I can successfully read values from the variable studio using API, when checking the ORT Log it is showing this:{
22:39:672 | DEBUG | connect:_log_response:1106 | Request failed, details: { "moreInfoUrl" : "", "message" : "An internal error has occurred; support code 4adff3ba9fb31f8a1634d61e",
"status" : 500, "code" : 0, "supportCode" : "4adff3ba9fb31f8a1634d61e"
}
from google: 5xx Server error responses: The server failed to fulfill a valid request due to an issue on its end.
what caused this and how to resolve this? this this the server error?
thank you for your time.
Answers
@ geometry dash 3d: Yes, this is a server-side (500) error, but in Onshape it is usually triggered by an invalid request, not a platform outage. Since you can read variables but not write, the most common causes are:
2. Incorrect JSON format – Body must be:
{
"variables": [
{
"name": "VarName",
"expression": "25 mm"
}
]
}
3. Editing a released/read-only document
4. Missing Content-Type: application/json header