docs
  1. SCAYLE Resource Center
  2. Checkout Authentication API
  3. Getting started
  4. Errors

Errors

Overview

{% include "../.gitbook/includes/authentication-api-or-error-introduction.md" %}

HTTP Status Codes

200s status codes

HTTP Status CodeDescription
200 OKRequest has been fulfilled.
201 CreatedRequest has been fulfilled and new resource created.
204 No ContentThere is no content for a successful request.
206 Partial ContentRequest has been fulfilled for the partial content requested.

400s status codes

HTTP Status CodeDescription
400 Bad RequestMissing or invalid parameter.
401 UnauthorizedNo or invalid access token.
403 ForbiddenYou have not been unauthorized to access the resource.
404 Not FoundRequested resource doesn't exist.
408 Request TimeoutThe client failed to complete the request within a certain timeframe.
409 ConflictRequested resource could not be processed because of a conflict.
412 Precondition FailedPreconditions were not met.
413 Payload Too LargeThe request entity is larger than limits defined by server.
424 Failed DependencyRequest failed due to a failure of dependency.

500s status codes

HTTP status codeDescription
500 Internal Server ErrorUnexpected error on Storefront API server.
502 Bad GatewayServer got an invalid response.
503 Service UnavailableService unavailable due to internal errors.
504 Gateway TimeoutThe server took too long to respond.

Complete list of HTTP status codes.

Unauthorized client

Examples

{
  "error": "INVALID_CLIENT",
  "message": "Client authentication failed.",
  "context": null
}

Schema

error

Required
string

A key that describes the occurred error.

error_description

string

Some human readable description of the error.

hint

string

Hint of what caused the error.

message

string

Additional message.

contextobject

Unsupported grant type

{
  "error": "unsupported_grant_type",
  "error_description": "The authorization grant type is not supported by the authorization server.",
  "hint": "Check that all required parameters have been provided",
  "message": "The authorization grant type is not supported by the authorization server."
}

Invalid token response

{
  "error": "invalid_request",
  "error_description": "The refresh token is invalid.",
  "hint": "Token has been revoked",
  "message": "The refresh token is invalid."
}