19 August 2025
OrdersGraphQL
You can now delete Recurrence Policies that are not referenced by any price, Line Item, or Custom Line Item.
Changes:
- [API] Added Delete RecurrencePolicy by ID and Delete RecurrencePolicy by Key endpoints to the Recurrence Policies API.
 - [GraphQL API] Added the 
deleteRecurrencePolicyfield to theMutationtype. 
The following changes were introduced in terms of GraphQL SDL:
extend type Mutation {
  "BETA: This feature can be subject to change and should be used carefully in production. https://docs.commercetools.com/api/contract#public-beta"
  deleteRecurrencePolicy(version: Long!,
    "Queries with specified ID"
    id: String,
    "Queries with specified key"
    key: String): RecurrencePolicy
}