acceptOfferForQuoting
Accept a quoting offer in an offer group.
Arguments
Input fields for accepting a quoting offer.
Possible Errors
Allowed Viewers
Required Permissions
Can create quoting offer groupQuery Complexity
3Examples
The example data in the variables and responses below are autogenerated values designed to resemble real inputs. They do not represent actual customer data, and in some cases may require additional validation.
mutation AcceptOfferForQuoting($input: AcceptOfferForQuotingInput!) {
acceptOfferForQuoting(input: $input) {
offer {
...OfferTypeFragment
}
}
}
Variables
{
"input": AcceptOfferForQuotingInput
}
Response
{
"data": {
"acceptOfferForQuoting": {
"offer": OfferType
}
}
}