Gluwa
Gluwa Documentation
Gluwa Documentation
  • What is Gluwa
  • Change Log
    • Gluwa API Change Log
    • Gluwa Wallet Change Log
    • Gluwa Exchange Change Log
  • Get Started
    • Gluwa Mobile App
      • Gluwa Invest (Investor DAO) FAQ
      • Gluwa Invest (Fixed-Term Interest Account) FAQ
      • Create a New Gluwa Wallet
      • Restore Wallet
      • Send Gluwacoin to an address
      • Make QR Code Payments
      • Create a Signature
      • Access Private Keys
      • Non-Custodial Wallet
      • Gluwa Lottery Account FAQ
      • Fees
      • Transaction Status
      • Delete your Gluwa Account
    • Gluwa Dashboard
      • API Keys
      • Webhooks
      • Addresses
      • Transactions
    • Gluwacoin
  • Branding
    • Buttons and Marks
  • Development
    • Environments
    • QR Codes
    • Webhooks
    • Creating Signatures
    • Idempotent Requests
    • Sending Address
    • Gluwa SDK for PHP
    • Gluwa SDK for .NET
    • Gluwa SDK for Java
    • Gluwa SDK for JavaScript (Node.js)
  • API
    • API Reference
    • Authorization
    • Currency and Conversion Symbols
    • Errors and Error Codes
    • Balance
    • Fee
    • Transaction
    • Payment QR Code
    • Wrap / Unwrap
  • Exchange API
    • Exchange Webhook
    • Quote
    • Order
    • Exchange Request
    • Order Book
Powered by GitBook
On this page
  • Error
  • InnerError
  1. API

Errors and Error Codes

Learn how to handle errors.

PreviousCurrency and Conversion SymbolsNextBalance

Last updated 5 years ago

Upon error, a response will contain details to help resolve the error. The response will contain the following fields:

Error

Attribute

Type

Description

Code

string

Error code.

Message

string

A detailed error message. We recommend not to rely on the message to programmatically handle the error. Use Code to do that instead.

ID

string

Optional. For 500 responses only. If you encounter an error and this field is present, you can send us this ID for our reference.

ExtraData

string

Optional. Extra data that may be helpful to handle the error. This could be a JSON string.

InnerErrors

array of InnerError

Optional. For validation errors specifically. See .

InnerError

Attribute

Type

Description

Code

string

Error code.

Path

string

The name of the request object's attribute that has errors.

Message

string

A detailed error message. We recommend not to rely on the message to programmatically handle the error. Use Code to do that instead.

InnerError