createAgreementRollover
Create an agreement rollover for a specific account and agreement.
Arguments
Create an agreement rollover for a specific account and agreement.
Possible Errors
- KT-CT-1113: Disabled GraphQL field requested.
- KT-CT-13701: An active agreement rollover already exists for this agreement.
- KT-CT-13702: Expected send date cannot be in the past.
- KT-CT-13703: Rollover date cannot be in the past.
- KT-CT-13704: Unable to create agreement rollover.
- KT-CT-13708: Agreement rollover validation error.
- KT-CT-1501: Agreement not found.
- KT-CT-4910: No product exists with the given input.
- KT-CT-4924: Unauthorized.
- KT-CT-7899: An internal error occurred.
Allowed Viewers
Required Permissions
Can create agreement rollovers Can query agreement rolloversQuery 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 CreateAgreementRollover($input: CreateAgreementRolloverInput!) {
createAgreementRollover(input: $input) {
agreementRollover {
...AgreementRolloverTypeFragment
}
}
}
Variables
{
"input": CreateAgreementRolloverInput
}
Response
{
"data": {
"createAgreementRollover": {
"agreementRollover": AgreementRolloverType
}
}
}