switchProduct
Apply the quoted products to the given account's matching agreements.
Arguments
Input fields for accepting a product switching request.
Possible Errors
Allowed Viewers
Required Permissions
(No)Query Complexity
1Examples
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 SwitchProduct($input: SwitchProductInputType!) {
switchProduct(input: $input) {
newAgreement {
...AgreementTypeFragment
}
}
}
Variables
{
"input": SwitchProductInputType
}
Response
{
"data": {
"switchProduct": {
"newAgreement": AgreementType
}
}
}