XendBridge
  • Get Started
  • 🛠️API Method Calls
    • Third Party Order Operations
      • Rate
      • Buy Order
      • Sell Order
      • Swap Order
      • Pending Order
      • Pay For Order
      • Cancel Order
    • LP Simulation
      • Pay For Order (Buy Order)
      • Pay For Order (Sell Order)
    • Dispute
      • Raise Third Party Dispute
      • Get All Disputes
      • XendBridge Chat SDK
    • Payment Inquiry
    • WebHooks
      • Order Payment Confirmation
      • Order Matched Notification
      • Order Canceled Notification
      • Checksum Verification
  • 📄XENDBRIDGE PORTAL
    • Checkout URL
      • Buy Order
      • Sell Order
      • Swap Order
      • Rate
      • Rate Bounds
      • Initiate Order Created With Deferred Payment Method
      • Supported Currencies
      • Payment Methods
    • Inline Html Snippet
    • DeFi Checkout
  • 📦XENDBRIDGE SDKS
    • XendBridge NodeJs SDK
    • XendBridge .NET SDK
      • Rate
      • Buy Order
      • Sell Order
      • Swap Order
      • Pending Order
      • Pay For Order Confirmation
      • Cancel Order
      • Raise A Dispute
  • Errors
  • 🔖REFERENCE
    • API Reference
Powered by GitBook
On this page

Was this helpful?

  1. XENDBRIDGE SDKS
  2. XendBridge .NET SDK

Pending Order

PreviousSwap OrderNextPay For Order Confirmation

Last updated 2 years ago

Was this helpful?

An interface called IThirdPartyOrderOperations from the namespace XendBridgeSDK.Services.Interfaces is provided, in which the method GetPendingOrderRequest would be called from. A string argument called emailAddress should be passed, being the email address of the customer.

A generic BaseResponse<T> class is returned on all the

The response returned from getting the pending order is BaseResponse<PendingOrderResponse> , which the following properties are as follows;

For PeerToPeerOrderResponseModel property, please see Buy Order

// Provide the customer's email address
string emailAddress = "johndoe@gmail.com";

// Make the call by passing the model
BaseResponse<PendingOrderResponseModel> response = thirdPartyOrderOperations.GetPendingOrderRequest(emailAddress);

Please see the function from your IDE or visit to see the request and response models in detail.

📦
method calls.
here