GMX · Schema

CrossChainWithdrawSubmitResponse

DeFiPerpetual ExchangeDEXTradingLeverageLiquidity PoolsGLPGM TokensGLVArbitrumAvalancheWeb3

Properties

Name Type Description
error object
taskId string
status string
requestId string
View JSON Schema on GitHub

JSON Schema

CrossChainWithdrawSubmitResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api-evangelist.github.io/gmx/json-schema/CrossChainWithdrawSubmitResponse.json",
  "title": "CrossChainWithdrawSubmitResponse",
  "properties": {
    "error": {
      "properties": {
        "message": {
          "type": "string"
        },
        "code": {
          "type": "string"
        }
      },
      "required": [
        "message",
        "code"
      ],
      "type": "object"
    },
    "taskId": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "relay_accepted",
        "relay_failed"
      ]
    },
    "requestId": {
      "type": "string"
    }
  },
  "required": [
    "status",
    "requestId"
  ],
  "type": "object"
}