Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

401 - Seu método de autenticação falhou

Code Block
languagejson
{
    "message": "Unauthorized",
    "status": 401
}

...

429 - Você está fazendo requisições mais rapidamente do que o servidor pode suportar

Code Block
languagejson
{
    "message": "Too Many Requests",
    "status": 429
}

...

404 - O endpoint que você está tentando acessar não existe, confira se ele foi escrito corretamente

Code Block
languagejson
{
    "error_message": "The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.",
    "message": "Not Found",
    "status": 404
}

...

404 - A data de início precisa existir e ser menor do que a de fim

Code Block
languagejson
{
    "error_message": "Start date should not be greater than end date.",
    "key": "start",
    "message": "Not Found",
    "status": 404
}

...

404 - A data de fim não pode ser maior do que a atual (de acordo com o fuso informado)

Code Block
languagejson
{
    "error_message": "End date in future.",
    "key": "end",
    "message": "Not Found",
    "status": 404
}

...