Mutation
mutation DeletePaymentSubscriptionGroup($input: DeletePaymentSubscriptionGroupInput!) {
deletePaymentSubscriptionGroup(input: $input) {
clientMutationId
deletedPaymentSubscriptionGroupId
errors
}
}Variables
{
"input": {
"id": "id"
}
}Response
{
"data": {
"deletePaymentSubscriptionGroup": {
"clientMutationId": "string",
"deletedPaymentSubscriptionGroupId": "id",
"errors": [
"string"
]
}
}
}Mutations
deletePaymentSubscriptionGroup
Delete a Payment Subscription Group in the current Network. Only Web groups can be deleted; the Payment Plans themselves are not deleted.
Required scope: host:write:network_plans
MUTATION
deletePaymentSubscriptionGroup(input: DeletePaymentSubscriptionGroupInput!): DeletePaymentSubscriptionGroupPayloadArguments
input
required
Parameters for DeletePaymentSubscriptionGroup
clientMutationId
String
A unique identifier for the client performing the mutation.
deletedPaymentSubscriptionGroupId
ID
GlobalID of the deleted Payment Subscription Group.
errors
[String!]!
Mutation
mutation DeletePaymentSubscriptionGroup($input: DeletePaymentSubscriptionGroupInput!) {
deletePaymentSubscriptionGroup(input: $input) {
clientMutationId
deletedPaymentSubscriptionGroupId
errors
}
}Variables
{
"input": {
"id": "id"
}
}Response
{
"data": {
"deletePaymentSubscriptionGroup": {
"clientMutationId": "string",
"deletedPaymentSubscriptionGroupId": "id",
"errors": [
"string"
]
}
}
}