Anchor to subscriptionBillingCycleUnskipsubscription
subscriptionBillingCycleUnskip
mutation
Requires access scope. Also: The user must have manage_orders_information permission.
Unskips a Subscription Billing Cycle.
Anchor to Arguments
Arguments
- Anchor to billingCycleInputbilling•
Cycle Input SubscriptionBilling requiredCycle Input! Input object for selecting and using billing cycles.
Was this section helpful?
Anchor to SubscriptionBillingCycleUnskipPayload returnsSubscriptionBillingCycleUnskipPayload returns
- Anchor to billingCyclebilling•
Cycle The updated billing cycle.
- Anchor to userErrorsuser•
Errors The list of errors that occurred from executing the mutation.
Was this section helpful?
Mutation Reference
mutation subscriptionBillingCycleUnskip($billingCycleInput: SubscriptionBillingCycleInput!) {
subscriptionBillingCycleUnskip(billingCycleInput: $billingCycleInput) {
billingCycle {
# SubscriptionBillingCycle fields
}
userErrors {
field
message
}
}
}
Input
{
"billingCycleInput": {
"contractId": "gid://shopify/<objectName>/10079785100",
"selector": {
"date": "2019-09-07T15:50:00Z",
"index": 1
}
}
}
{
"billingCycleInput": {
"contractId": "gid://shopify/<objectName>/10079785100",
"selector": {
"date": "2019-09-07T15:50:00Z",
"index": 1
}
}
}
input SubscriptionBillingCycleInput {
contractId: ID!
selector: SubscriptionBillingCycleSelector!
}
input SubscriptionBillingCycleSelector {
date: DateTime
index: Int
}