We’re trying to pull compliance flags from an external system using a GET request in Architect, but the success output keeps showing undefined. The external endpoint returns a 200 status with the payload below. I’ve set the JSON path to data.compliance_status inside the data action configuration, yet the variable stays empty when the flow runs. It works fine when testing in Postman. Token is valid. Scope is fine. Just stuck on the path. Maybe the mapping syntax is wrong or the response structure needs flattening. Here’s the response we’re getting back.
{
"status": 200,
"data": {
"compliance_status": true,
"last_updated": "2024-05-12T14:30:00Z"
}
}