&引用;客户端路径无效,在rest表中找不到;有人知道这把刀是什么吗;s误差意味着

&引用;客户端路径无效,在rest表中找不到;有人知道这把刀是什么吗;s误差意味着,rest,web-services,request,sabre,Rest,Web Services,Request,Sabre,我想使用此API服务: 服务器用以下json响应: { "status": "NotProcessed", "type": "Application", "errorCode": "ERR.2SG.CLIENT.INVALID_REQUEST", "timeStamp": "2017-09-12T13:21:29.522-05:00", "message": "Client invalid path, not found in rest table" }

我想使用此API服务:

服务器用以下json响应:

{
    "status": "NotProcessed",
    "type": "Application",
    "errorCode": "ERR.2SG.CLIENT.INVALID_REQUEST",
    "timeStamp": "2017-09-12T13:21:29.522-05:00",
    "message": "Client invalid path, not found in rest table"
}

如评论中所述,端点不正确。修复后,您将得到许多不同的错误,例如,您引用的配置文件ID ABCDEF不存在

我已经修改了那个请求,所以你会得到一个成功的回复

v2.0.0/乘客/记录?模式=创建


输入用于执行请求的代码。您的请求(有效负载和标题)如何?你在写帖子吗?是的,这是《邮递员》中的帖子,这是你在点击哪个端点的请求?问题确实出在端点上。它应该是v2.0.0/passenger/records?mode=create,在修复之后,您将获得更多错误。
{
  "CreatePassengerNameRecordRQ": {
    "targetCity": "XXXX",
    "TravelItineraryAddInfo": {
      "AgencyInfo": {
        "Ticketing": {
          "TicketType": "7TAW/"
        }
      },
      "CustomerInfo": {
        "ContactNumbers": {
          "ContactNumber": [
            {
              "Phone": "817-555-1212",
              "PhoneUseType": "H"
            }
          ]
        },
        "PersonName": [
          {
            "GivenName": "TEST",
            "Surname": "TEST"
          }
        ]
      }
    },
    "AirBook": {
      "OriginDestinationInformation": {
        "FlightSegment": [
          {
            "ArrivalDateTime": "2018-07-20T14:20",
            "DepartureDateTime": "2018-07-20T12:57",
            "FlightNumber": "2404",
            "NumberInParty": "1",
            "ResBookDesigCode": "Y",
            "Status": "NN",
            "DestinationLocation": {
              "LocationCode": "LAX"
            },
            "MarketingAirline": {
              "Code": "AA",
              "FlightNumber": "2404"
            },
            "MarriageGrp": "O",
            "OriginLocation": {
              "LocationCode": "DFW"
            }
          }
        ]
      }
    },
    "AirPrice": {
      "PriceRequestInformation": {
        "OptionalQualifiers": {
          "PricingQualifiers": {
            "PassengerType": [
              {
                "Code": "ADT",
                "Quantity": "1"
              }
            ]
          }
        }
      }
    },
    "MiscSegment": {
      "DepartureDateTime": "2018-10-29",
      "NumberInParty": 1,
      "Status": "NN",
      "Type": "OTH",
      "OriginLocation": {
        "LocationCode": "LAS"
      },
      "Text": "TEST",
      "VendorPrefs": {
        "Airline": {
          "Code": "AA"
        }
      }
    },
    "SpecialReqDetails": {
      "AddRemark": {
        "RemarkInfo": {
          "FOP_Remark": {
            "Type": "CHECK",
            "CC_Info": {
              "Suppress": true,
              "PaymentCard": {
                "AirlineCode": "YY",
                "CardSecurityCode": "1234",
                "Code": "VI",
                "ExpireDate": "2012-12",
                "ExtendedPayment": "12",
                "ManualApprovalCode": "123456",
                "Number": "4123412341234123",
                "SuppressApprovalCode": true
              }
            }
          },
          "Remark": [
            {
              "Type": "Historical",
              "Text": "TEST HISTORICAL REMARK"
            },
            {
              "Type": "Invoice",
              "Text": "TEST INVOICE REMARK"
            },
            {
              "Type": "Itinerary",
              "Text": "TEST ITINERARY REMARK"
            },
            {
              "Type": "Hidden",
              "Text": "TEST HIDDEN REMARK"
            }
          ]
        }
      },
      "AirSeat": {
        "Seats": {
          "Seat": [
            {
              "NameNumber": "1.1",
              "Preference": "AN",
              "SegmentNumber": "1"
            }
          ]
        }
      },
      "SpecialService": {
        "SpecialServiceInfo": {
          "Service": [
            {
              "SSR_Code": "OSI",
              "PersonName": {
                "NameNumber": "1.1"
              },
              "Text": "TEST",
              "VendorPrefs": {
                "Airline": {
                  "Code": "UA"
                }
              }
            }
          ]
        }
      }
    },
    "PostProcessing": {
      "RedisplayReservation": true,
      "EndTransaction": {
        "Source": {
          "ReceivedFrom": "SWS TEST"
        }
      }
    }
  }
}