# priceListDuplicate

Create a duplicate of a price list

**Scope required:** product:write

```graphql
mutation priceListDuplicate ($id: ID!) {
  priceListDuplicate (id: $id) {
      errors
      priceList {
        basePrice
        code
        createdAt
        currencyId
        deprecated
        id
        isVisible
        monthlyBasePrice
        name
        periodMonths
        planId
        priceAdjustmentPercentage
        priceDescription
        productId
        renewalTermMonths
        showPriceAsMonthly
        sku
        trialAllowed
        trialLengthDays
        updatedAt
      }
  }
}
```

## Arguments

```json
{
  "id": "456123"
}
```

| Name | Type | Description |
| ---- | ---- | ----------- |
| id   | ID   |             |

## Response

| Name      | Type                                                                        | Description |
| --------- | --------------------------------------------------------------------------- | ----------- |
| errors    | List (String)                                                               |             |
| priceList | [PriceList](https://docs.bunny.com/developer/api-reference/types/pricelist) |             |
