Is there a way to bump up the timeout on a Data Action? We’re hitting the wall at 3 seconds and I can’t find a property to change it. The external API we’re calling is slow, taking about 4-5 seconds to return. just kills the request and throws a generic error.
Here’s the JSON I’m using for the Data Action:
{
"id": "da-12345",
"name": "GetCustomerProfile",
"type": "REST",
"timeout": 3000,
"url": "https://api.external.com/v1/profile",
"method": "GET"
}
I tried setting timeout to 10000 in the JSON, but validation rejects it or ignores it and defaults back to 3000. The docs mention a default of 3 seconds but don’t say if it’s configurable. We can’t redesign the external API on our end, so we need to wait longer. Anyone know a workaround or a hidden setting?