Hello Zheng-Rong Cai,
When handling a 204 No Content response in Azure Logic Apps, that a 204 response does not include a body. If your Logic App expects a body or headers from the response, this absence may cause confusion.
In your case, it appears that accessing properties like Outputs.status returns null because there is no content in a 204 response. Handle this by checking if the status code is 204 and then proceed without expecting a body or headers.
To prevent your Logic App from treating the 204 response as a failure, implement conditional checks based on the status code received.
I hope this addresses your query. Please let me know if you need any further assistance or clarification.