Skip to main content
object

Requires The staff member must have permission to manage app billing or approve app charges if authenticated with an online access token as described in https://shopify.dev/apps/auth/oauth/access-modes.

Store usage for app subscriptions with usage pricing.

DateTime!
non-null

The date and time when the usage record was created.

String!
non-null

The description of the app usage record.

ID!
non-null

A globally-unique ID.

String

A unique key generated by the client to avoid duplicate charges.

MoneyV2!
non-null

The price of the usage record.

Anchor to subscriptionLineItemsubscriptionLineItem
AppSubscriptionLineItem!
non-null

Defines the usage pricing plan the merchant is subscribed to.


Was this section helpful?

mutation

Creates a usage charge for an app subscription with usage-based pricing. The charge counts toward the capped amount limit set when creating the subscription.

Usage records track consumption of app features or services on a per-use basis. You provide the charge amount, a description of what you consumed, and the subscription line item ID. The optional idempotencyKey parameter prevents duplicate charges if you send the same request multiple times.

If the new charge would cause total usage charges in the current billing interval to exceed the capped amount, then the mutation returns an error.

Learn more about creating usage-based subscriptions.

Arguments

Anchor to subscriptionLineItemIdsubscriptionLineItemId
ID!
required

The ID of the app subscription line item to create the usage record under. This app subscription line item must have a usage pricing plan.

MoneyInput!
required

The price of the app usage record.

String!
required

The description of the app usage record.

String

A unique key generated by the client to avoid duplicate charges. Maximum length of 255 characters.



Was this section helpful?

interface

Was this section helpful?