Versions Compared

Key

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

...

Error codeError MessageDescriptionExample
700700
API blockedThis API has been blocked temporarily. Please try again later or contact the system administrators.Invoke an API in the BLOCKED lifecycle state
900800
Message throttled outThe maximum number of requests that can be made to the API within a designated time period is reached and the API is throttled for the user.Invoke an API exceeding the tier limit
900801
Hard limit exceededHard throttle limit has been reached.Invoke an API exceeding the hard throttle limit
900802Resource level throttle outMessage is throttled out because resource level has exceededSending/Receiving messages beyond authorized resource level
900803Application level throttle outMessage is throttled out because application level is exceededSending/Receiving messages beyond authorized application level
900900

Unclassified authentication failure

An unspecified error has occurred.Backend service for key validation is not accessible when trying to invoke an API
900901

Invalid credentials

Invalid authentication information provided.Using an older access token after an access token has been renewed.
900902

Missing credentials

No authentication information provided.Accessing an API without the Authorization: Bearer header
900905

Incorrect access token type is provided

The access token type used is not supported when invoking the API. The supported access token types are application and user accesses tokens. See Access Tokens.

Invoke an API with application token, where the resource only allows application user tokens
900906

No matching resource found in the API for the given request

A resource with the name in the request can not be found in the API.Invoke an API resource that is not available
900907

The requested API is temporarily blocked

Happens when the API user is blocked.Invoke API resource with a subscription that has been blocked by the API publisher
900908

Resource forbidden

The user invoking the API has not been granted access to the required resource.Invoke an unsubscribed API
900909

The subscription to the API is inactive

The status of the API has changed to an inaccessible/unavailable state.Invoke an API resource with a subscription that has not yet been approved by the administrator.
900910

The access token does not allow you to access the requested resource

Can not access the required resource with the provided access token. Check the valid resources that can be accessed with this token.

Invoke an API resource with an access token that is not generated to be used with the resource's scope
102511Incomplete payloadThe payload sent with the request is too large and the client is unable to keep the connection alive until the payload is completely transferred to the API GatewaySending a large PDF file with the POST request

...

WSO2 API Manager has the following default fault sequences located in <APIM_HOME> /repository/deployment/server/synapse-configs/default/sequences directory.

Fault SequenceDescription
fault.xml

This is the primary fault sequence that gets invoked when an error occurs during the execution of an API resources

main.xmlThis sequence is called when the endpoint being called does not exist
auth_failure_handler.xmlThis sequence is called when an API authentication error is encountered
production_key_error.xmlThis sequence is called when a Production key is used to invoke an API that does not have a Production endpoint defined
sandbox_key_error.xmlThis sequence is called when a Sandbox key is used to invoke an API that does not have a Sandbox endpoint defined
throttle_out_handler.xmlThis sequence is called when a given request to an API gets throttled out
token_fault.xmlThis sequence is called when there is an error in invoking the token API
resource_mismatch_handler.xmlThis sequence is called when a matching resource cannot be found by the gateway to the corresponding resource being invoked
Info

The default sequences can also be customized as shown in the section above.