> Documentation index: [Saleor](/llms.txt) · [This section](/api-reference/discounts/llms.txt)
> Source: https://docs.saleor.io/api-reference/discounts/inputs/promotion-create-input

# PromotionCreateInput Input Type

No description

```graphql
input PromotionCreateInput {
  description: JSON
  startDate: DateTime
  endDate: DateTime
  name: String!
  type: PromotionTypeEnum!
  rules: [PromotionRuleInput!]
}
```

<a id="fields"></a>

### Fields

<a id="description"></a>

#### [`description`](#description) ● [`JSON`](/api-reference/miscellaneous/scalars/json.md)

Promotion description.

<a id="start-date"></a>

#### [`startDate`](#start-date) ● [`DateTime`](/api-reference/miscellaneous/scalars/date-time.md)

The start date of the promotion in ISO 8601 format.

<a id="end-date"></a>

#### [`endDate`](#end-date) ● [`DateTime`](/api-reference/miscellaneous/scalars/date-time.md)

The end date of the promotion in ISO 8601 format.

<a id="name"></a>

#### [`name`](#name) ● [`String!`](/api-reference/miscellaneous/scalars/string.md)

Promotion name.

<a id="type"></a>

#### [`type`](#type) ● [`PromotionTypeEnum!`](/api-reference/discounts/enums/promotion-type-enum.md)

Defines the promotion type. Implicate the required promotion rules predicate type and whether the promotion rules will give the catalogue or order discount.

Added in Saleor 3.19

<a id="rules"></a>

#### [`rules`](#rules) ● [`[PromotionRuleInput!]`](/api-reference/discounts/inputs/promotion-rule-input.md)

List of promotion rules.

<a id="member-of"></a>

### Member Of

[`promotionCreate`](/api-reference/discounts/mutations/promotion-create.md) mutation
