Portal

Ansa API endpoints indicate failures or problems through (1) HTTP status codes and (2) error objects in the JSON response body.

HTTP Status Codes

Status CodeStatusDescription
200OKEverything worked as expected.
201CreatedThe operation successfully created a resource.
204No ContentThis return code is specifically assigned to pre-flight OPTIONS endpoint.
400Bad RequestThe request was unacceptable or malformed, often due to missing a required parameter or invalid data in the request.
401UnauthorizedNo valid API key provided.
402Payment FailedThe parameters were valid but the request failed. Applicable to payment endpoints such as add balance.
403ForbiddenThe API key doesn't have permissions to perform the request.
409ConflictThe request conflicts with another request, often due to using the same idempotency key.
429Too Many Requests (Ratelimiting)Too many requests hit the API too quickly. We recommend an exponential backoff of your requests.
500, 502, 503, 504Ansa Internal ErrorSomething went wrong with Ansa's end.

Error Attributes

FieldTypeDescription
typestringError category.

Possible values are:
- api_error: Catch all. Can cover any other type of problem (e.g. transient Ansa issue).
- payment_method_error: Error derived from processing the payment method.
- insufficient_funds: Error indicating that the customer attempted to spends more funds than were available.
- invalid_request_error: Error indicating invalid parameters or arguments.
- risk_error: Error associated with high risk/fraud profile.
codestringA short enum string indicating the specific error code reported.

See the list of error codes for more details.
messagestringA human-readable message providing more details about the error.
declineCodestringFor card errors resulting from a card issuer or payment processor decline, a short string indicating the reason for the decline.

See the list of decline codes for more details.
deficitobjectThe deficit object provides information when a transaction fails due to insufficient funds. This happens when the customer's balance or payment method cannot cover the full amount required for the transaction.

Attributes are:
- amount integer: The difference between the required amount (purchase amount) and the amount available (customer balance).
- currency currency: The transaction currency.

Error Codes

The following error codes may be returned in an Error object.

Error CodeDescription
request_failedIndicates the request failed with valid parameters. This may indicate a decline from the payment service provider.
internalA code for Ansa internal errors.
invalid_customer_idInvalid id or no such customer exists.
invalid_merchant_idInvalid id or no such merchant exists.
duplicate_merchantConflict due to an existing merchant.
invalid_merchant_nameInvalid merchant name.
missing_parameterRequired parameter is missing.
unsupported_payment_methodThe provided payment method is not supported.
invalid_parameterThe provided parameter is invalid.
invalid_bodyThe provided request body is invalid.
invalid_emailInvalid email.
invalid_phoneInvalid phone number.
invalid_payment_method_tokenInvalid payment method token.
invalid_amountInvalid transaction amount.
invalid_currency_codeInvalid currency code.
insufficient_fundsAttempted to spend more funds than were available.
high_riskThe transaction was rejected due to high risk profile.
unsupported_functionalityRequest functionality is not supported.

Decline Codes

The following decline codes may be returned in an Error object as the declineCode field.

These decline codes map to errors returned by the selected Payment Service Provider (PSP), such as Square or Stripe.

📘

Improve payment completion rates

In order to improve payment completion rates, it is crucial to display a helpful message to users when they enter payment information. To assist you with this, Ansa has provided a table below with user-friendly messages that you can display to guide users in correctly entering their payment information.

🚧

Never return the decline code directly to the user, especially for fraudulent declines.

Decline CodeUser Friendly Message
GENERIC_DECLINEWe are unable to process your payment information. Please re-enter your payment details and try again.
INSUFFICIENT_FUNDSYour account does not have sufficient funds for this transaction. Please try again with a different payment method.
FRAUDULENT_CHARGEWe are unable to process your payment information. Please re-enter your payment details and try again.
INVALID_ACCOUNTWe are unable to process your payment information. Please re-enter your payment details and try again.
INVALID_CVCWe are unable to process your payment information. Please re-enter your payment details and try again.
EXPIRED_CARDThe card you entered has expired. Please re-enter the payment details or try with a different payment method.
INVALID_EXPIRY_DATEThe card you entered has expired. Please re-enter the payment details or try with a different payment method.
INVALID_NUMBERWe are unable to process your payment information. Please re-enter your payment details and try again.
INCORRECT_AVSThe address or zip code entered does not match the card billing details on file. Please re-enter the address and try again.
INVALID_AMOUNTWe are unable to process your payment information. Please try again.
INVALID_REFUNDWe are unable to process your payment information. Please try again.
DUPLICATE_TRANSACTIONWe are unable to process your payment information. Please try again.
MERCHANT_ERRORWe are unable to process your payment information. Please try again.