Why am I receiving a 204 error message response when issuing a REST API call?

Why am I receiving a 204 error message response when issuing a REST API call?
Tagged:

Best Answer

  • billy.dineen
    Answer ✓

    A 204 Response message is not a HTTP Error message. 2XX Response messages indicate that there has been a successful connection to a REST API endpoint without error. A 204 message indicates that the user has a successful connection, but there is no data to be returned.

    Most common cause is that specified input parameters yield no matching data.