# subscriptionBillingCycleEditsDelete - admin - MUTATION
Version: 2024-04

## Description
Delete the current and future schedule and contract edits of a list of subscription billing cycles.

### Access Scopes
`write_own_subscription_contracts` access scope. Also: The user must have manage_orders_information permission.


## Arguments
* [contractId](/docs/api/admin/2024-04/scalars/ID): ID! - The globally-unique identifier of the subscription contract that the billing cycle belongs to.
* [targetSelection](/docs/api/admin/2024-04/enums/SubscriptionBillingCyclesTargetSelection): SubscriptionBillingCyclesTargetSelection! - Select billing cycles to be deleted.


## Returns
* [billingCycles](/docs/api/admin/2024-04/objects/SubscriptionBillingCycle): SubscriptionBillingCycle The list of updated billing cycles.
* [userErrors](/docs/api/admin/2024-04/objects/SubscriptionBillingCycleUserError): SubscriptionBillingCycleUserError! The list of errors that occurred from executing the mutation.


## Examples
### Delete the edits on the current and all future billing cycles
Curl example: "curl -X POST \\\nhttps://your-development-store.myshopify.com/admin/api/2024-04/graphql.json \\\n-H 'Content-Type: application/json' \\\n-H 'X-Shopify-Access-Token: {access_token}' \\\n-d '{\n\"query\": \"mutation subscriptionBillingCycleEditsDelete($contractId: ID!) { subscriptionBillingCycleEditsDelete(contractId: $contractId, targetSelection: ALL) { billingCycles { cycleStartAt cycleEndAt cycleIndex } userErrors { field message } } }\",\n \"variables\": {\n    \"contractId\": \"gid://shopify/SubscriptionContract/398475269\"\n  }\n}'\n"
Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n  data: {\n    \"query\": `mutation subscriptionBillingCycleEditsDelete($contractId: ID!) {\n      subscriptionBillingCycleEditsDelete(contractId: $contractId, targetSelection: ALL) {\n        billingCycles {\n          cycleStartAt\n          cycleEndAt\n          cycleIndex\n        }\n        userErrors {\n          field\n          message\n        }\n      }\n    }`,\n    \"variables\": {\n      \"contractId\": \"gid://shopify/SubscriptionContract/398475269\"\n    },\n  },\n});\n"
Ruby example: "session = ShopifyAPI::Auth::Session.new(\n  shop: \"your-development-store.myshopify.com\",\n  access_token: access_token\n)\nclient = ShopifyAPI::Clients::Graphql::Admin.new(\n  session: session\n)\n\nquery = <<~QUERY\n  mutation subscriptionBillingCycleEditsDelete($contractId: ID!) {\n    subscriptionBillingCycleEditsDelete(contractId: $contractId, targetSelection: ALL) {\n      billingCycles {\n        cycleStartAt\n        cycleEndAt\n        cycleIndex\n      }\n      userErrors {\n        field\n        message\n      }\n    }\n  }\nQUERY\n\nvariables = {\n  \"contractId\": \"gid://shopify/SubscriptionContract/398475269\"\n}\n\nresponse = client.query(query: query, variables: variables)\n" 
Remix example: "const { admin } = await authenticate.admin(request);\n\nconst response = await admin.graphql(\n  `#graphql\n  mutation subscriptionBillingCycleEditsDelete($contractId: ID!) {\n    subscriptionBillingCycleEditsDelete(contractId: $contractId, targetSelection: ALL) {\n      billingCycles {\n        cycleStartAt\n        cycleEndAt\n        cycleIndex\n      }\n      userErrors {\n        field\n        message\n      }\n    }\n  }`,\n  {\n    variables: {\n      \"contractId\": \"gid://shopify/SubscriptionContract/398475269\"\n    },\n  },\n);\n\nconst data = await response.json();\n"
Graphql query: "mutation subscriptionBillingCycleEditsDelete($contractId: ID!) {\n  subscriptionBillingCycleEditsDelete(contractId: $contractId, targetSelection: ALL) {\n    billingCycles {\n      cycleStartAt\n      cycleEndAt\n      cycleIndex\n    }\n    userErrors {\n      field\n      message\n    }\n  }\n}"
#### Graphql Input
{
  "contractId": "gid://shopify/SubscriptionContract/398475269"
}
#### Graphql Response
{
  "data": {
    "subscriptionBillingCycleEditsDelete": {
      "billingCycles": [
        {
          "cycleStartAt": "2021-12-15T15:33:01Z",
          "cycleEndAt": "2022-01-01T12:00:00Z",
          "cycleIndex": 1
        }
      ],
      "userErrors": []
    }
  }
}