29 August 2023
QuotesB2BOrders
After collecting feedback during the beta phase, we have moved Quotes out of beta. The status of the following features has been changed to general availability:
- Creating Quote Requests.
- Creating Staged Quotes with the ability to modify discounts, product quantity, expiration date, and add a note to the Buyer.
- Creating a Quote from a Staged Quote as the offer the Seller makes to the Buyer.
- Creating an Order from a Quote.
- Renegotiation of a Quote between the Buyer and Seller.
In addition, we've also removed the 
Failed value from the QuoteState and MyQuoteState enums, as it is an unused value that the API does not return.Changes:
- [API] Removed Failedvalue from QuoteState enum.
- [API] Removed Failedvalue from MyQuoteState enum.
- [GraphQL API] Changed the QuoteStatetype:- Enum value Failedwas removed from enumQuoteState
 
- Enum value 
- [GraphQL API] Changed the MyQuoteStatetype:- Enum value Failedwas removed from enumMyQuoteState
 
- Enum value 
The following changes were introduced in terms of GraphQL SDL:
enum QuoteState {
  Accepted
  Declined
  DeclinedForRenegotiation
  Pending
  RenegotiationAddressed
  Withdrawn
}
enum MyQuoteState {
  Accepted
  Declined
}