|
| 1 | +--- |
| 2 | +group: b2b-developer-guide |
| 3 | +subgroup: 10_REST |
| 4 | +title: Integrate with B2B using REST |
| 5 | +menu_title: Integrate with B2B using REST |
| 6 | +menu_order: 1 |
| 7 | +menu_node: parent |
| 8 | +ee_only: True |
| 9 | +functional_areas: |
| 10 | + - B2B |
| 11 | + - Integration |
| 12 | +--- |
| 13 | + |
| 14 | +This topic lists the REST endpoints and services that are provided with {{site.data.var.b2b}}. |
| 15 | + |
| 16 | +## List of REST endpoints by module |
| 17 | + |
| 18 | +### Company |
| 19 | + |
| 20 | +```terminal |
| 21 | +GET /V1/company/ |
| 22 | +GET /V1/company/:companyId |
| 23 | +DELETE /V1/company/:companyId |
| 24 | +PUT /V1/company/:companyId |
| 25 | +POST /V1/company/ |
| 26 | +GET /V1/team/ |
| 27 | +GET /V1/team/:teamId |
| 28 | +DELETE /V1/team/:teamId |
| 29 | +PUT /V1/team/:teamId |
| 30 | +POST /V1/team/:companyId |
| 31 | +GET /V1/hierarchy/:id |
| 32 | +PUT /V1/hierarchy/move/:id |
| 33 | +GET /V1/company/role/ |
| 34 | +GET /V1/company/role/:roleId |
| 35 | +POST /V1/company/role/ |
| 36 | +DELETE /V1/company/role/:roleId |
| 37 | +PUT /V1/company/role/:id |
| 38 | +PUT /V1/company/assignRoles |
| 39 | +GET /V1/company/role/:roleId/users |
| 40 | +``` |
| 41 | + |
| 42 | +### CompanyCredit |
| 43 | + |
| 44 | +```terminal |
| 45 | +GET /V1/companyCredits/ |
| 46 | +GET /V1/companyCredits/:creditId |
| 47 | +PUT /V1/companyCredits/:id |
| 48 | +GET /V1/companyCredits/company/:companyId |
| 49 | +POST /V1/companyCredits/:creditId/increaseBalance |
| 50 | +POST /V1/companyCredits/:creditId/decreaseBalance |
| 51 | +GET /V1/companyCredits/history |
| 52 | +PUT /V1/companyCredits/history/:historyId |
| 53 | +``` |
| 54 | + |
| 55 | +### NegotiableQuote |
| 56 | + |
| 57 | +```terminal |
| 58 | +POST /V1/negotiableQuote/request |
| 59 | +POST /V1/negotiableQuote/submitToCustomer |
| 60 | +POST /V1/negotiableQuote/decline |
| 61 | +POST /V1/negotiableQuote/pricesUpdated |
| 62 | +GET /V1/negotiableQuote/attachmentContent |
| 63 | +GET /V1/negotiableQuote/:quoteId/comments |
| 64 | +PUT /V1/negotiableQuote/:quoteId/shippingMethod |
| 65 | +POST /V1/negotiable-carts/:cartId/payment-information |
| 66 | +GET /V1/negotiable-carts/:cartId/payment-information |
| 67 | +POST /V1/negotiable-carts/:cartId/set-payment-information |
| 68 | +POST /V1/negotiable-carts/:cartId/shipping-information |
| 69 | +POST /V1/negotiable-carts/:cartId/estimate-shipping-methods |
| 70 | +POST /V1/negotiable-carts/:cartId/estimate-shipping-methods-by-address-id |
| 71 | +PUT /V1/negotiableQuote/:quoteId |
| 72 | +GET /V1/negotiable-carts/:cartId/billing-address |
| 73 | +POST /V1/negotiable-carts/:cartId/billing-address |
| 74 | +GET /V1/negotiable-carts/:cartId/totals |
| 75 | +PUT /V1/negotiable-carts/:cartId/coupons/:couponCode |
| 76 | +DELETE /V1/negotiable-carts/:cartId/coupons |
| 77 | +POST /V1/negotiable-carts/:cartId/giftCards |
| 78 | +DELETE /V1/negotiable-carts/:cartId/giftCards/:giftCardCode |
| 79 | +``` |
| 80 | + |
| 81 | +### PurchaseOrder |
| 82 | + |
| 83 | +```terminal |
| 84 | +POST /V1/carts/mine/po-payment-information |
| 85 | +``` |
| 86 | + |
| 87 | +### SharedCatalog |
| 88 | + |
| 89 | +```terminal |
| 90 | +GET /V1/sharedCatalog/:sharedCatalogId |
| 91 | +POST /V1/sharedCatalog |
| 92 | +PUT /V1/sharedCatalog/:id |
| 93 | +DELETE /V1/sharedCatalog/:sharedCatalogId |
| 94 | +GET /V1/sharedCatalog/ |
| 95 | +GET /V1/sharedCatalog/:sharedCatalogId/companies |
| 96 | +POST /V1/sharedCatalog/:sharedCatalogId/assignCompanies |
| 97 | +POST /V1/sharedCatalog/:sharedCatalogId/unassignCompanies |
| 98 | +GET /V1/sharedCatalog/:id/products |
| 99 | +POST /V1/sharedCatalog/:id/assignProducts |
| 100 | +POST /V1/sharedCatalog/:id/unassignProducts |
| 101 | +GET /V1/sharedCatalog/:id/categories |
| 102 | +POST /V1/sharedCatalog/:id/assignCategories |
| 103 | +POST /V1/sharedCatalog/:id/unassignCategories |
| 104 | +``` |
| 105 | + |
| 106 | +## List of service names per Module |
| 107 | + |
| 108 | +### Company |
| 109 | + |
| 110 | +```terminal |
| 111 | +companyAclV1 |
| 112 | +companyCompanyHierarchyV1 |
| 113 | +companyCompanyRepositoryV1 |
| 114 | +companyRoleRepositoryV1 |
| 115 | +companyTeamRepositoryV1 |
| 116 | +configurableProductConfigurableProductManagementV1 |
| 117 | +``` |
| 118 | + |
| 119 | +### CompanyCredit |
| 120 | + |
| 121 | +```terminal |
| 122 | +companyCreditCreditBalanceManagementV1 |
| 123 | +companyCreditCreditHistoryManagementV1 |
| 124 | +companyCreditCreditLimitManagementV1 |
| 125 | +companyCreditCreditLimitRepositoryV1 |
| 126 | +``` |
| 127 | + |
| 128 | +### NegotiableQuote |
| 129 | + |
| 130 | +```terminal |
| 131 | +negotiableQuoteAttachmentContentManagementV1 |
| 132 | +negotiableQuoteBillingAddressManagementV1 |
| 133 | +negotiableQuoteCartTotalRepositoryV1 |
| 134 | +negotiableQuoteCommentLocatorV1 |
| 135 | +negotiableQuoteCouponManagementV1 |
| 136 | +negotiableQuoteGiftCardAccountManagementV1 |
| 137 | +negotiableQuoteNegotiableQuoteManagementV1 |
| 138 | +negotiableQuoteNegotiableQuotePriceManagementV1 |
| 139 | +negotiableQuoteNegotiableQuoteShippingManagementV1 |
| 140 | +negotiableQuotePaymentInformationManagementV1 |
| 141 | +negotiableQuoteShipmentEstimationV1 |
| 142 | +negotiableQuoteShippingInformationManagementV1 |
| 143 | +negotiableQuoteShippingMethodManagementV1 |
| 144 | +``` |
| 145 | + |
| 146 | +### PurchaseOrder |
| 147 | + |
| 148 | +```terminal |
| 149 | +purchaseOrderPurchaseOrderPaymentInformationManagementV1 |
| 150 | +``` |
| 151 | + |
| 152 | +### SharedCatalog |
| 153 | + |
| 154 | +```terminal |
| 155 | +sharedCatalogCategoryManagementV1 |
| 156 | +sharedCatalogCompanyManagementV1 |
| 157 | +sharedCatalogProductManagementV1 |
| 158 | +sharedCatalogSharedCatalogRepositoryV1 |
| 159 | +``` |
0 commit comments