Node.js 订单不会显示在商户控制台上

Node.js 订单不会显示在商户控制台上,node.js,mastercard,Node.js,Mastercard,我已经在nodejs开发了一个应用程序,在那里我集成了Mastercard支付方法,它一直工作到周五。但现在,当我将钱从万事达卡发送到商户账户时,它会给出成功响应,但商户控制台上没有任何内容。这是我的回答 "paymentInfoList": [ { "url": "https://test-gateway.mastercard.com/api/rest/version/57/

我已经在nodejs开发了一个应用程序,在那里我集成了Mastercard支付方法,它一直工作到周五。但现在,当我将钱从万事达卡发送到商户账户时,它会给出成功响应,但商户控制台上没有任何内容。这是我的回答

       "paymentInfoList": [
            {
                "url": "https://test-gateway.mastercard.com/api/rest/version/57/merchant/merchant/order/order-1598868168410/transaction/transaction-1598868195864",
                "mthd": "PUT",
                "payload": {
                    "apiOperation": "CAPTURE",
                    "transaction": {
                        "amount": "1144",
                        "currency": "USD",
                        "reference": 1598868195864
                    }
                },
                "resbody": {
                    "authorizationResponse": {
                        "cardSecurityCodeError": "M",
                        "commercialCardIndicator": "1",
                        "date": "0831",
                        "financialNetworkCode": "MCC",
                        "posData": "1025104006600",
                        "posEntryMode": "812",
                        "processingCode": "000000",
                        "responseCode": "00",
                        "stan": "204684",
                        "time": "100313",
                        "transactionIdentifier": "0114GR"
                    },
                    "gatewayEntryPoint": "WEB_SERVICES_API",
                    "merchant": "GTB123456D00",
                    "order": {
                        "amount": 1144,
                        "certainty": "FINAL",
                        "chargeback": {
                            "amount": 0,
                            "currency": "USD"
                        },
                        "creationTime": "2020-08-31T10:03:13.631Z",
                        "currency": "USD",
                        "id": "order-1598868168410",
                        "lastUpdatedTime": "2020-08-31T10:03:33.156Z",
                        "merchantAmount": 1144,
                        "merchantCategoryCode": "5399",
                        "merchantCurrency": "USD",
                        "reference": "1598868168410",
                        "status": "CAPTURED",
                        "totalAuthorizedAmount": 1144,
                        "totalCapturedAmount": 1144,
                        "totalRefundedAmount": 0
                    },
                    "response": {
                        "acquirerCode": "00",
                        "acquirerMessage": "Approved",
                        "cardSecurityCode": {
                            "acquirerCode": "M",
                            "gatewayCode": "MATCH"
                        },
                        "gatewayCode": "APPROVED"
                    },
                    "result": "SUCCESS",
                    "sourceOfFunds": {
                        "provided": {
                            "card": {
                                "brand": "MASTERCARD",
                                "expiry": {
                                    "month": "9",
                                    "year": "21"
                                },
                                "fundingMethod": "CREDIT",
                                "issuer": "AFRILAND FIRST BANK",
                                "number": "512345xxxxxx0008",
                                "scheme": "MASTERCARD",
                                "storedOnFile": "NOT_STORED"
                            }
                        },
                        "type": "CARD"
                    },
                    "timeOfLastUpdate": "2020-08-31T10:03:33.156Z",
                    "timeOfRecord": "2020-08-31T10:03:33.064Z",
                    "transaction": {
                        "acquirer": {
                            "batch": 20200831,
                            "date": "0831",
                            "id": "GTB_S2I",
                            "merchantId": "mymerchant",
                            "settlementDate": "2020-08-31",
                            "timeZone": "+0100",
                            "transactionId": "0114GR"
                        },
                        "amount": 1144,
                        "authorizationCode": "010602",
                        "currency": "USD",
                        "id": "transaction-1598868195864",
                        "receipt": "024410204684",
                        "reference": "1598868195864",
                        "source": "INTERNET",
                        "stan": "205744",
                        "terminal": "GTBS2I04",
                        "type": "CAPTURE"
                    },
                    "version": "57"
                }
            }
        ]

现在您可以看到响应是成功的,但它没有显示在商户面板/控制台上

这是商户面板/控制台的问题。它没有显示当天的订单,但从第二天开始,它工作正常,所有以前的订单都在那里,新订单也显示在控制台/面板上,所以这是他们的服务器问题