โ10-12-2024 11:15 AM
I am trying to create an export package for my folder through workato Developer API Endpoint. But getting below error. Appreciate any kind of help in resolving this error.
500 Internal Server Error { "message": "Server error", "id": "ef0fe5eb-c909-46fd-8cd3-36878ec0d79e" }
Below is my Request detail in Json format
{
Request name: Create an export manifest,
Request:
{
Method: POST,
Request content type: application/json,
Request URL: export_manifests,
Request URL parameters:
[
{
param: folder_id,
value: 21151691
}
],
Request body: {
"export_manifest": {
"name": "POC_Project Manifest",
"assets": [
{
"id":15641803 ,
"name": Workbot_Slack_OfficialMahendra,
"type": connection,
}
]
}
}
}
Solved! Go to Solution.
โ10-13-2024 07:09 AM - edited โ10-13-2024 07:09 AM
The 500 Internal Server Error typically indicates an issue on the server-side, but there could still be problems in your request. Let's walk through some common troubleshooting steps:
{
"export_manifest": {
"name": "POC_Project Manifest",
"assets": [
{
"id": 15641803,
"name": "Workbot_Slack_OfficialMahendra",
"type": "connection"
}
]
}
}
โ
Make sure the endpoint you're calling, export_manifests, is correct. In most cases, the URL should be a fully qualified URL.
Check that your request contains the required authorization headers (e.g., API key or bearer token). If you are missing authentication details, the server might return a 500 error in some cases.
Since the error message provides an id ("ef0fe5eb-c909-46fd-8cd3-36878ec0d79e"), try reaching out to Workato support with this ID, as they might have specific logs and details that can explain the server error.
โ10-13-2024 07:09 AM - edited โ10-13-2024 07:09 AM
The 500 Internal Server Error typically indicates an issue on the server-side, but there could still be problems in your request. Let's walk through some common troubleshooting steps:
{
"export_manifest": {
"name": "POC_Project Manifest",
"assets": [
{
"id": 15641803,
"name": "Workbot_Slack_OfficialMahendra",
"type": "connection"
}
]
}
}
โ
Make sure the endpoint you're calling, export_manifests, is correct. In most cases, the URL should be a fully qualified URL.
Check that your request contains the required authorization headers (e.g., API key or bearer token). If you are missing authentication details, the server might return a 500 error in some cases.
Since the error message provides an id ("ef0fe5eb-c909-46fd-8cd3-36878ec0d79e"), try reaching out to Workato support with this ID, as they might have specific logs and details that can explain the server error.