Conga Product Documentation

Welcome to the new doc site. Some of your old bookmarks will no longer work. Please use the search bar to find your desired topic.

Creating Product Configuration (Cart) Directly from Order

You can create a cart (Product Configuration) directly from the order. You can do the following operations on the product configuration created from the order:

  • Add products from the catalog or add installed products

  • Configure and re-configure the products and reprice the lines

  • Use the billing services such as custom plans, forecast billing, etc.

  • Finalize the product configuration.

Follow the same sequence for a change in the configuration or pricing due to a negotiation.

To Create a Product Configuration

Use the following APIs in sequence to execute the Asset Manager flow.

  1. Create order using order-service endpoint:POST: https://<URL_of_the_Instance>/api/order/v1/orders
  2. Create Cart with BusinessObjectType="Order" and BusinessObjectId="<OrderId>" using the API:POST: https://<URL_of_the_Instance>/api/cart/v1/carts
  3. Add Product or ABO operation lines to the cart using the API:POST: https://<URL_of_the_Instance>/api/cart/v1/carts/{{cartId}}/items
  4. Create only OrderLineItems for the Order from Cart LineItems using the checkout order API:POST: https://<URL_of_the_Instance>/api/cart/v1/carts/{{cartId}}/order
  5. Activate the order to create AssetLineItems using the API:POST: https://<URL_of_the_Instance>/api/order/v1/orders/{{orderId}}/activate