I prefer simplicity and using the first example but I’d be happy to hear other options. Here’s a few examples:

HTTP/1.1 403 POST /endpoint
{ "message": "Unauthorized access" }
HTTP/1.1 403 POST /endpoint
Unauthorized access (no json)
HTTP/1.1 403 POST /endpoint
{ "error": "Unauthorized access" }
HTTP/1.1 403 POST /endpoint
{
  "code": "UNAUTHORIZED",
  "message": "Unauthorized access",
}
HTTP/1.1 200 (🤡) POST /endpoint
{
  "error": true,
  "message": "Unauthorized access",
}
HTTP/1.1 403 POST /endpoint
{
  "status": 403,
  "code": "UNAUTHORIZED",
  "message": "Unauthorized access",
}

Or your own example.

  • Dark Arc@social.packetloss.gg
    link
    fedilink
    English
    arrow-up
    11
    ·
    edit-2
    19 days ago

    That’s when you use different exit codes. 1 for failure during simulation, 2 for simulation failed.

    Shame they wouldn’t listen.

    • fuzzzerd@programming.dev
      link
      fedilink
      English
      arrow-up
      1
      ·
      14 days ago

      I generally agree, but with robocopy they went too far with this, because the status code doesn’t work the way you expect, and you’ve got to script around it.