appSubscriptionCreate mutation
Allows an app to charge a store for features or services on a recurring basis.
On this page
Interactive example
This is an example mutation query. Use the embedded interactive tool below to edit the query.
Hint: use Ctrl + Space for autocompleting fields.
mutation appSubscriptionCreate($name: String!, $lineItems: [AppSubscriptionLineItemInput!]!, $returnUrl: URL!) { appSubscriptionCreate(name: $name, lineItems: $lineItems, returnUrl: $returnUrl) {} } { “name”: “placeholder”, “lineItems”: [
<font style="color:#1F61A0;">appSubscription</font> <font style="color:#555555;">{</font>
<font style="color:#1F61A0;">id</font>
<font style="color:#555555;">}</font>
<font style="color:#1F61A0;">confirmationUrl</font>
<font style="color:#1F61A0;">userErrors</font> <font style="color:#555555;">{</font>
<font style="color:#1F61A0;">field</font>
<font style="color:#1F61A0;">message</font>
<font style="color:#555555;">}</font>
], “returnUrl”: “placeholder” }
<font style="color:#555555;">{</font>
<font style="color:#8B2BB9;">"plan"</font><font style="color:#555555;">:</font> <font style="color:#555555;">{}</font>
<font style="color:#555555;">}</font>
Arguments
AppSubscriptionLineItemInput fields
- plan (
[AppPlanInput!](https://shopify.dev/docs/admin-api/graphql/reference/billing/appplaninput)
) REQUIRED
Defines the pricing model for the app subscription.
Return fields
- appSubscription (
[AppSubscription](https://shopify.dev/docs/admin-api/graphql/reference/billing/appsubscription)
)
The newly created app subscription. - confirmationUrl (
[URL](https://shopify.dev/docs/admin-api/graphql/reference/scalar#url-2021-01)
)
The URL where the merchant approves or declines an app subscription. - userErrors (
[[UserError!]!](https://shopify.dev/docs/admin-api/graphql/reference/usererror)
)
List of errors that occurred executing the mutation.