# 1.4 Processing Result Notification

# URL

  • Add the notifyUrl field to the interface to receive asynchronous callbacks.

# 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
param Y string - - param
sign Y string - 45eebd745dcf0b5f6d6f9fcde28cd9fe8116a892 sign

# param

Parameter name Required Type of data Description
eventName Y string Event name, (notification event nameticket.status.rejected,ticket.status.processing,ticket.status.closed)
ticketId Y string Ticket number, the serial number generated by Bluepay for ticket processing.
ticketStatus Y string Ticket status, enumerated values: CLOSED, PROCESSING, REJECTED, PENDING.
transactionStatus Y string Transaction status. The transaction status (PENDING, COMPLETED, FAILED).​
customerServiceReply N string Customer service reply. The content of the customer service agent's response to the ticket.​​

# Response parameters

Parameter name Type of data Description
code Interger A returned status value of 10000 indicates success.​​
message string Request return status description. 'Success' indicates a successful operation.​​

# Request example

# Param content

{
  "customerServiceReply": "",
  "eventName": "ticket.status.closed",
  "ticketId": "202510201745349298",
  "ticketStatus": "Closed",
  "transactionStatus": "COMPLETED"
}

# Request body

{
  "sign":"CGWo6r/f6JlZXR9mZe5cHREB29bw/M/copPQ7yFDOjGgS06BUHVPKYaADS30wzhjMDduqQZGytFLPFPZnqx0wenF4iN4xIkdzWVGwOFWMcuF5lM1GKBrNsImPFkrYaV09zDmg8s7fw342+drUDMXbdLXi7xNLYsf1ZSFml4/Pi6M4Fzb3PltDJ1Ur2ZzcUjLxc5JkytyIXTzKiLWs4gINSg9wb1YRtYY3WM6Ze2Z0t6P3F4SpTD1GZVdG1vmd871Zz2zH98zWmwvsUdcIxm/GgXzwwMBCEcwQ1LlKoMbOb3CZE4pwzCJQL0veI/+YYPFydSDd/1nI7suaYTE0ZC0HA==",
  "param": "{\"customerServiceReply\":\"\",\"eventName\":\"ticket.status.closed\",\"ticketId\":\"202510201745349298\",\"ticketStatus\":\"Closed\",\"transactionStatus\":\"COMPLETED\"}"
}

# Response example

{
    "code": 10000,
    "message": "Success"
}