--- title: webPresenceCreate - GraphQL Admin description: Creates a web presence. api_version: 2025-10 api_name: admin type: mutation api_type: graphql source_url: html: https://shopify.dev/docs/api/admin-graphql/latest/mutations/webpresencecreate md: https://shopify.dev/docs/api/admin-graphql/latest/mutations/webpresencecreate.md --- # web​Presence​Create mutation Requires `read_markets` for queries and both `read_markets` as well as `write_markets` for mutations. Creates a web presence. ## Arguments * input [Web​Presence​Create​Input!](https://shopify.dev/docs/api/admin-graphql/latest/input-objects/WebPresenceCreateInput) required The details of the web presence to be created. *** ## Web​Presence​Create​Payload returns * user​Errors [\[Market​User​Error!\]!](https://shopify.dev/docs/api/admin-graphql/latest/objects/MarketUserError) non-null The list of errors that occurred from executing the mutation. * web​Presence [Market​Web​Presence](https://shopify.dev/docs/api/admin-graphql/latest/objects/MarketWebPresence) The created web presence object. *** ## Examples * ### webPresenceCreate reference ## Mutation Reference ```graphql mutation webPresenceCreate($input: WebPresenceCreateInput!) { webPresenceCreate(input: $input) { userErrors { field message } webPresence { # MarketWebPresence fields } } } ``` ## Input ```json { "input": { "domainId": "gid://shopify//10079785100", "defaultLocale": "", "alternateLocales": [ "" ], "subfolderSuffix": "" } } ``` ##### Variables ``` { "input": { "domainId": "gid://shopify//10079785100", "defaultLocale": "", "alternateLocales": [ "" ], "subfolderSuffix": "" } } ``` ##### Schema ``` input WebPresenceCreateInput { domainId: ID defaultLocale: String! alternateLocales: [String!] subfolderSuffix: String } ```