# GiftCardCreateInput - admin-graphql - INPUT_OBJECT Version: 2024-10 ## Description The input fields to issue a gift card. ### Access Scopes ## Fields * [code](/docs/api/admin-graphql/2024-10/scalars/String): String - The gift card's code. It must be 8-20 characters long and contain only letters(a-z) and numbers(0-9). It isn't case sensitive. If not provided, then a random code will be generated. * [customerId](/docs/api/admin-graphql/2024-10/scalars/ID): ID - The ID of the customer who will receive the gift card. Requires `write_customers` access_scope. * [expiresOn](/docs/api/admin-graphql/2024-10/scalars/Date): Date - The date at which the gift card will expire. If not provided, then the gift card will never expire. * [initialValue](/docs/api/admin-graphql/2024-10/scalars/Decimal): Decimal! - The initial value of the gift card. * [note](/docs/api/admin-graphql/2024-10/scalars/String): String - The note associated with the gift card, which isn't visible to the customer. * [recipientAttributes](/docs/api/admin-graphql/2024-10/input-objects/GiftCardRecipientInput): GiftCardRecipientInput - The recipient attributes of the gift card. * [templateSuffix](/docs/api/admin-graphql/2024-10/scalars/String): String - The suffix of the Liquid template that's used to render the gift card online. For example, if the value is `birthday`, then the gift card is rendered using the template `gift_card.birthday.liquid`. If not provided, then the default `gift_card.liquid` template is used. ## Input objects with this input object * [giftCardCreate](/docs/api/admin-graphql/2024-10/mutations/giftCardCreate) ## Examples