# 1.2 Processing result query

# URL

  • {domain}/open-api/bluepay/abnormalTransIssue/searchDisResult

# Method

  • POST

# Request Header

Parameter name Required Type of data Description
Content-Type Y string application/json

# Request Param

Parameter name Required Type of data limit example Description
appId Y string - - appId
param Y string - - param
sign Y string - 45eebd745dcf0b5f6d6f9fcde28cd9fe8116a892 sign

# param

Parameter name Required Type of data Description
requestId N string Please provide either a requestId or an ticketNo.
ticketNo N string Please provide either a requestId or an ticketNo.

# Response parameters

Parameter name Type of data Description
ticketNo string ticketNo
ticketStatus string Ticket Status:(CLOSED,PROCESSING,REJECTED,PENDING)
transactionStatus string transactionStatus(PENDING , COMPLETED , FAILED,VOIDED)

# Request example

# Param content

{
  "requestId": "7",
  "ticketNo": "20251017145803"
}

# Request body

{
  "sign": "45eebd745dcf0b5f6d6f9fcde28cd9fe8116a892",
  "appId": "84df586f366b4472867ce8afba546a92",
  "param": "{\"requestId\":\"7\",\"ticketNo\":\"20251017145803\"}"
}

# Response example

{
  "code": 10000,
  "message": "Success",
  "data": {
    "ticketNo": "20251017145803",
    "ticketStatus": "PENDING",
    "transactionStatus": "PENDING"
  }
}