HTTP 400 Bad Request: validation_failed. The payload is getting rejected on the filter attribute matrix. I’m trying to expose a state subscriber for automated interaction management via EventBridge using Node.js, but the atomic POST keeps bombing. The docs mention max subscriber count limits, yet the error doesn’t say anything about hitting a ceiling. It’s just a generic schema mismatch on the delivery endpoint directive. I thought maybe the OAuth token refresh logic is messing with the grant types again, but the bearer token looks fresh. Here’s the JSON I’m sending to the subscription API: { “topicId”: “interaction:state:change”, “filter”: { “attributes”: { “routing.queue.id”: “eq:12345678-1234-1234-1234-123456789012” } }, “deliveryEndpoint”: { “url”: “Checking your browser...”, “type”: “webhook” } }. The format verification passes locally, but the server hates the filter structure. Token scopes are set to event:write, so it’s not an auth issue.
I added a health check endpoint on my side to verify the webhook callbacks for the external monitoring dashboards, and the latency tracking shows zero delivery attempts because the subscription never registers. The payload transformation pipeline is supposed to handle the state events, but it’s never getting triggered. I’m looping through the error logs trying to find why the automatic acknowledgment triggers fail. Maybe the topic ID reference is wrong? I can’t find a valid example for the interaction state topic in the Node SDK. The audit logs are empty too. Routing failures seem to happen before the message even leaves the bus. Just getting 400s every time.