How to apply customer credit in bulk to 1000+ customers

Is there a way to apply credit in bulk to 1000+ customer accounts in my store?
Shopify only allows us to apply credit to one account at a time.

We need to give our staff members a monthly credit as a perk they can spend each month.

You could try a bulk operation on the storeCreditAccountCredit mutation.

Here’s what an individual mutation could look like:

mutation {
  storeCreditAccountCredit(
    creditInput: {
      creditAmount: {
        amount: 10.0,
        currencyCode: USD
      },
      expiresAt: "2024-12-31T23:59:59Z"
    },
    id: "gid://shopify/StoreCreditAccount/123456789"
  ) {
    storeCreditAccountTransaction {
      id
      amount {
        amount
        currencyCode
      }
      balanceAfterTransaction {
        amount
        currencyCode
      }
      createdAt
    }
    userErrors {
      field
      message
    }
  }
}

UPDATE 7/15/25: This mutation is NOT supported by bulk operations, you’d need to run this individually or script the process to loop through a list of customers.

I need to bulk update store credit for ~250 users. Could this be done through the customer import/export function? I need to set the store credits individually.

@Jonas_Tankersley You could try the above mutation, but it can’t be run as a bulk operation.