{{ renderer.format|upper }} Output

To select this output format, pass format={{ renderer.format }} in the query string or an Accept: {{ renderer.media_type }} HTTP header.

The response always contains a JSON object with 3 fields:

Example of a successful response:

{
    "error": null,
    "result": {
        ... data ...
    },
    "metadata": {
        "ready": true
    }
}
    

Example of a error response:

{
    "error": {
        "message": "Not found."
    },
    "result": null,
    "metadata": {
        "ready": true
    }
}