Anchor to mobilePlatformApplicationCreatemobile
mobilePlatformApplicationCreate
mutation
Requires access scope. Please contact Shopify Support to enable this scope for your app.
Create a mobile platform application.
Anchor to Arguments
Arguments
- Anchor to inputinput•
The input to create a mobile platform application.
Was this section helpful?
Anchor to MobilePlatformApplicationCreatePayload returnsMobilePlatformApplicationCreatePayload returns
- Anchor to mobilePlatformApplicationmobile•
Platform Application Created mobile platform application.
- Anchor to userErrorsuser•
Errors The list of errors that occurred from executing the mutation.
Was this section helpful?
- Create a mobile platform application
- Create an Android Mobile Platform Application
- Create an Apple Mobile Platform Application
- mobilePlatformApplicationCreate reference
Examples
1const { admin } = await authenticate.admin(request);23const response = await admin.graphql(4 `#graphql5 mutation mobilePlatformApplicationCreate($input: MobilePlatformApplicationCreateInput!) {6 mobilePlatformApplicationCreate(input: $input) {7 mobilePlatformApplication {8 ... on AppleApplication {9 id10 appId11 universalLinksEnabled12 sharedWebCredentialsEnabled13 appClipsEnabled14 appClipApplicationId15 }16 }17 userErrors {18 field19 message20 }21 }22 }`,23 {24 variables: {25 "input": {26 "apple": {27 "appId": "com.apple.package",28 "appClipsEnabled": true,29 "appClipApplicationId": "clip.app",30 "universalLinksEnabled": false,31 "sharedWebCredentialsEnabled": false32 }33 }34 },35 },36);3738const data = await response.json();39
mutation mobilePlatformApplicationCreate($input: MobilePlatformApplicationCreateInput!) {
mobilePlatformApplicationCreate(input: $input) {
mobilePlatformApplication {
... on AppleApplication {
id
appId
universalLinksEnabled
sharedWebCredentialsEnabled
appClipsEnabled
appClipApplicationId
}
}
userErrors {
field
message
}
}
}
curl -X POST \
https://your-development-store.myshopify.com/admin/api/2025-04/graphql.json \
-H 'Content-Type: application/json' \
-H 'X-Shopify-Access-Token: {access_token}' \
-d '{
"query": "mutation mobilePlatformApplicationCreate($input: MobilePlatformApplicationCreateInput!) { mobilePlatformApplicationCreate(input: $input) { mobilePlatformApplication { ... on AppleApplication { id appId universalLinksEnabled sharedWebCredentialsEnabled appClipsEnabled appClipApplicationId } } userErrors { field message } } }",
"variables": {
"input": {
"apple": {
"appId": "com.apple.package",
"appClipsEnabled": true,
"appClipApplicationId": "clip.app",
"universalLinksEnabled": false,
"sharedWebCredentialsEnabled": false
}
}
}
}'
const { admin } = await authenticate.admin(request);
const response = await admin.graphql(
`#graphql
mutation mobilePlatformApplicationCreate($input: MobilePlatformApplicationCreateInput!) {
mobilePlatformApplicationCreate(input: $input) {
mobilePlatformApplication {
... on AppleApplication {
id
appId
universalLinksEnabled
sharedWebCredentialsEnabled
appClipsEnabled
appClipApplicationId
}
}
userErrors {
field
message
}
}
}`,
{
variables: {
"input": {
"apple": {
"appId": "com.apple.package",
"appClipsEnabled": true,
"appClipApplicationId": "clip.app",
"universalLinksEnabled": false,
"sharedWebCredentialsEnabled": false
}
}
},
},
);
const data = await response.json();
const client = new shopify.clients.Graphql({session});
const data = await client.query({
data: {
"query": `mutation mobilePlatformApplicationCreate($input: MobilePlatformApplicationCreateInput!) {
mobilePlatformApplicationCreate(input: $input) {
mobilePlatformApplication {
... on AppleApplication {
id
appId
universalLinksEnabled
sharedWebCredentialsEnabled
appClipsEnabled
appClipApplicationId
}
}
userErrors {
field
message
}
}
}`,
"variables": {
"input": {
"apple": {
"appId": "com.apple.package",
"appClipsEnabled": true,
"appClipApplicationId": "clip.app",
"universalLinksEnabled": false,
"sharedWebCredentialsEnabled": false
}
}
},
},
});
session = ShopifyAPI::Auth::Session.new(
shop: "your-development-store.myshopify.com",
access_token: access_token
)
client = ShopifyAPI::Clients::Graphql::Admin.new(
session: session
)
query = <<~QUERY
mutation mobilePlatformApplicationCreate($input: MobilePlatformApplicationCreateInput!) {
mobilePlatformApplicationCreate(input: $input) {
mobilePlatformApplication {
... on AppleApplication {
id
appId
universalLinksEnabled
sharedWebCredentialsEnabled
appClipsEnabled
appClipApplicationId
}
}
userErrors {
field
message
}
}
}
QUERY
variables = {
"input": {
"apple": {
"appId": "com.apple.package",
"appClipsEnabled": true,
"appClipApplicationId": "clip.app",
"universalLinksEnabled": false,
"sharedWebCredentialsEnabled": false
}
}
}
response = client.query(query: query, variables: variables)
Input variables
JSON1{2 "input": {3 "apple": {4 "appId": "com.apple.package",5 "appClipsEnabled": true,6 "appClipApplicationId": "clip.app",7 "universalLinksEnabled": false,8 "sharedWebCredentialsEnabled": false9 }10 }11}
Response
JSON1{2 "mobilePlatformApplicationCreate": {3 "mobilePlatformApplication": {4 "id": "gid://shopify/MobilePlatformApplication/1066176023",5 "appId": "com.apple.package",6 "universalLinksEnabled": false,7 "sharedWebCredentialsEnabled": false,8 "appClipsEnabled": true,9 "appClipApplicationId": "clip.app"10 },11 "userErrors": []12 }13}