Anchor to mobilePlatformApplicationUpdatemobile
mobilePlatformApplicationUpdate
mutation
Requires access scope. Please contact Shopify Support to enable this scope for your app.
Update a mobile platform application.
Anchor to Arguments
Arguments
- •ID!required
The ID of the Mobile Platform Application to be updated.
- Anchor to inputinput•
The input to updat a Mobile Platform Application.
Was this section helpful?
Anchor to MobilePlatformApplicationUpdatePayload returnsMobilePlatformApplicationUpdatePayload 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?
- Update a mobile platform application
- Update an Android Mobile Platform Application
- Update an Apple Mobile Platform Application
- mobilePlatformApplicationUpdate reference
Examples
1const { admin } = await authenticate.admin(request);23const response = await admin.graphql(4 `#graphql5 mutation MobilePlatformApplicationUpdate($id: ID!, $input: MobilePlatformApplicationUpdateInput!) {6 mobilePlatformApplicationUpdate(id: $id, 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 "id": "gid://shopify/MobilePlatformApplication/1066176040",26 "input": {27 "apple": {28 "appId": "com.apple.package",29 "universalLinksEnabled": false,30 "sharedWebCredentialsEnabled": false,31 "appClipsEnabled": true,32 "appClipApplicationId": "clip.app"33 }34 }35 },36 },37);3839const data = await response.json();40
mutation MobilePlatformApplicationUpdate($id: ID!, $input: MobilePlatformApplicationUpdateInput!) {
mobilePlatformApplicationUpdate(id: $id, 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 MobilePlatformApplicationUpdate($id: ID!, $input: MobilePlatformApplicationUpdateInput!) { mobilePlatformApplicationUpdate(id: $id, input: $input) { mobilePlatformApplication { ... on AppleApplication { id appId universalLinksEnabled sharedWebCredentialsEnabled appClipsEnabled appClipApplicationId } } userErrors { field message } } }",
"variables": {
"id": "gid://shopify/MobilePlatformApplication/1066176040",
"input": {
"apple": {
"appId": "com.apple.package",
"universalLinksEnabled": false,
"sharedWebCredentialsEnabled": false,
"appClipsEnabled": true,
"appClipApplicationId": "clip.app"
}
}
}
}'
const { admin } = await authenticate.admin(request);
const response = await admin.graphql(
`#graphql
mutation MobilePlatformApplicationUpdate($id: ID!, $input: MobilePlatformApplicationUpdateInput!) {
mobilePlatformApplicationUpdate(id: $id, input: $input) {
mobilePlatformApplication {
... on AppleApplication {
id
appId
universalLinksEnabled
sharedWebCredentialsEnabled
appClipsEnabled
appClipApplicationId
}
}
userErrors {
field
message
}
}
}`,
{
variables: {
"id": "gid://shopify/MobilePlatformApplication/1066176040",
"input": {
"apple": {
"appId": "com.apple.package",
"universalLinksEnabled": false,
"sharedWebCredentialsEnabled": false,
"appClipsEnabled": true,
"appClipApplicationId": "clip.app"
}
}
},
},
);
const data = await response.json();
const client = new shopify.clients.Graphql({session});
const data = await client.query({
data: {
"query": `mutation MobilePlatformApplicationUpdate($id: ID!, $input: MobilePlatformApplicationUpdateInput!) {
mobilePlatformApplicationUpdate(id: $id, input: $input) {
mobilePlatformApplication {
... on AppleApplication {
id
appId
universalLinksEnabled
sharedWebCredentialsEnabled
appClipsEnabled
appClipApplicationId
}
}
userErrors {
field
message
}
}
}`,
"variables": {
"id": "gid://shopify/MobilePlatformApplication/1066176040",
"input": {
"apple": {
"appId": "com.apple.package",
"universalLinksEnabled": false,
"sharedWebCredentialsEnabled": false,
"appClipsEnabled": true,
"appClipApplicationId": "clip.app"
}
}
},
},
});
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 MobilePlatformApplicationUpdate($id: ID!, $input: MobilePlatformApplicationUpdateInput!) {
mobilePlatformApplicationUpdate(id: $id, input: $input) {
mobilePlatformApplication {
... on AppleApplication {
id
appId
universalLinksEnabled
sharedWebCredentialsEnabled
appClipsEnabled
appClipApplicationId
}
}
userErrors {
field
message
}
}
}
QUERY
variables = {
"id": "gid://shopify/MobilePlatformApplication/1066176040",
"input": {
"apple": {
"appId": "com.apple.package",
"universalLinksEnabled": false,
"sharedWebCredentialsEnabled": false,
"appClipsEnabled": true,
"appClipApplicationId": "clip.app"
}
}
}
response = client.query(query: query, variables: variables)
Input variables
JSON1{2 "id": "gid://shopify/MobilePlatformApplication/1066176040",3 "input": {4 "apple": {5 "appId": "com.apple.package",6 "universalLinksEnabled": false,7 "sharedWebCredentialsEnabled": false,8 "appClipsEnabled": true,9 "appClipApplicationId": "clip.app"10 }11 }12}
Response
JSON1{2 "mobilePlatformApplicationUpdate": {3 "mobilePlatformApplication": {4 "id": "gid://shopify/MobilePlatformApplication/1066176040",5 "appId": "com.apple.package",6 "universalLinksEnabled": false,7 "sharedWebCredentialsEnabled": false,8 "appClipsEnabled": true,9 "appClipApplicationId": "clip.app"10 },11 "userErrors": []12 }13}