skipSsdPayment
Skip the SSD payment for an account which is yet to enrol to Octopus as a supplier.
Arguments
Returns
SkipSSDPaymentSkip the SSD payment for an account which is yet to enrol to Octopus as a supplier.
Possible Errors
Allowed Viewers
Required Permissions
Can access customer queriesCan cancel enrollment
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 SkipSsdPayment($input: SkipSsdPaymentInput!) {
skipSsdPayment(input: $input) {
nextPaymentAmount
nextPaymentDate
skippedPaymentAmount
skippedPaymentDate
}
}
Variables
{
"input": SkipSsdPaymentInput
}
Response
{
"data": {
"skipSsdPayment": {
"nextPaymentAmount": 35,
"nextPaymentDate": "1996-04-10",
"skippedPaymentAmount": 48,
"skippedPaymentDate": "2005-12-23"
}
}
}