getPaymentNotification

This query allows to retrieve the payment notification.

General Pattern

query{
  getPaymentNotification{
    field_1{
      nested_field_1
    }
  }
}

Sample query

query{
  getPaymentNotification{
    message{
      ... on PaymentNotification3DSMessage{
        error
        redirectURL
      }
    }
  }
}

Sample response

{
  "data": {
    "getPaymentNotification": {
      "message": {
        "error": "",
        "redirectURL": ""
      }
    }
  }
}

Returns

NameTypeDescription
[PaymentNotificationMessage]messageThe sent message to user regarding to the payment process. It is loaded with redirect URL.

Example:

Create a payment notification: