BSS B2B Portal
  • 🚀GETTING STARTED
    • App Overview
  • QUOTING
    • Request for Quote
      • How to display 'Add to Quote' button in your store?
      • Customize the 'Add to Quote' button
      • Configure the Hide price settings
      • How to set up Request for Quote rule?
      • How to create a Request For Quote form?
      • How do customers request for quote on storefront?
      • How do customers view their Request for Quotes?
      • How to convert Quotes to Draft orders
  • ORDERING
    • Quick Orders
      • How to set up Quick Order rule?
      • How to edit the display of Quick Order page?
      • How do customers place a Quick Order on storefront?
    • Reorder
      • How to set up Reorder rule?
      • How do customers place a Reorder on storefront?
  • PAYMENT TERMS
    • Net Terms/ Purchase Late
      • How to set up and create Net Terms payment orders?
      • How to enable Shipping & Tax Calculation in the Purchase Later page?
      • How to set up Buttons on Cart Page
      • How to add Tax Validation fields to Purchase Late Form?
  • ACCOUNT MANAGEMENT
    • Company Account
      • How to use Company Account as the Store Owner
      • How to use Company Account as the Company
    • Sales Reps
      • How to use Sales Rep?
      • How to manage - as the store owner
      • How to manage - as a sales rep
      • How can sales reps create orders on behalf of customers?
  • OTHER FEATURES
    • Bundle Kits
    • Multi Product Variants Order
    • Customer Portal
    • Translations
    • Installations
    • Notifications
  • API & INTEGRATION
    • Partner API
    • Integration
      • Integrate with B2B/Wholesale Solution
  • USE CASES & FAQ
    • General
      • How to hide features from Customer Portal’s navigation bar from non-eligible customers?
      • Can I get a discount on special cases?
      • Can I get a trial for the app?
      • How to use B2B Customer Portal App?
      • Can I cancel the app at any time?
      • Can I request a refund?
      • Do you offer free installation and support?
      • What are your supporting hours?
      • Does it cost an extra fee for support?
      • How to fix display problem in Dashboard
      • How to submit a request for additional customization?
      • How to open "B2B Customer Portal"?
      • How to replace "Create an account" URL?
  • POLICY
    • Discount Policy
Powered by GitBook
On this page

Was this helpful?

  1. API & INTEGRATION

Partner API

PreviousNotificationsNextIntegration

Last updated 4 months ago

Was this helpful?

This API is REST API. You can get information from BSS: B2B Portal/Net Term through this API.

Contact us at email for the access key and more information related.

  1. Net-terms orders

Get net-terms orders

GET https://b2b-customer-portal-api.bsscommerce.com/api/v1/nt/orders

Path Parameters

Name
Type
Description

access_key*

String

email

String

Use to filter orders by email

offset

Number

The order in which records start to be retrieved

Positive number only

Default value: 0

order_name

String

Use to filter orders by order name

limit

Number

Number of records to retrieve

Positive number only

Default value: 50

Example:

  • URL: https://b2b-customer-portal-api.bsscommerce.com/api/v1/nt/orders?access_key=123456XYZ&limit=7&offset=6

  • Response

{
    "success": true,
    "statusCode": 200,
    "data": [
        {
            "id": 7,
            "shop_id": 1,
            "shopify_id": "1130928865586",
            "name": "#D444",
            "email": "test1@bsscommerce.com",
            "shipping_address": "Hà nội Vietnam",
            "rule_id": 1,
            "rule_name": "Net terms",
            "order_type": 0,
            "createdAt": "2023-09-15T04:40:35.000Z",
            "order_status": "Open",
            "payment_status": null,
            "updatedAt": "2023-09-15T04:40:35.000Z",
            "net_terms": "Due on specific date",
            "remaining_days": "5 days"
        }
    ],
    "count": 1,
    "total": 7,
    "message": "Get orders successful"
}
support-sbc@bsscommerce.com