> Documentation index: [Saleor](/llms.txt) · [This section](/api-reference/gift-cards/llms.txt)
> Source: https://docs.saleor.io/api-reference/gift-cards/objects/gift-card-bulk-create

# GiftCardBulkCreate Object

Creates gift cards.

Requires the MANAGE\_GIFT\_CARD permission.

Triggers the following webhook events:

-   GIFT\_CARD\_CREATED (async): A gift card was created.
-   NOTIFY\_USER (async): A notification for created gift card.

```graphql
type GiftCardBulkCreate {
  count: Int!
  giftCards: [GiftCard!]!
  errors: [GiftCardError!]!
}
```

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

### Fields

<a id="count"></a>

#### [`count`](#count) ● [`Int!`](/api-reference/miscellaneous/scalars/int.md)

Returns how many objects were created.

<a id="gift-cards"></a>

#### [`giftCards`](#gift-cards) ● [`[GiftCard!]!`](/api-reference/gift-cards/objects/gift-card.md)

List of created gift cards.

<a id="errors"></a>

#### [`errors`](#errors) ● [`[GiftCardError!]!`](/api-reference/gift-cards/objects/gift-card-error.md)

<a id="returned-by"></a>

### Returned By

[`giftCardBulkCreate`](/api-reference/gift-cards/mutations/gift-card-bulk-create.md) mutation
