Version: unstable
callback_url/fetch_tracking_numbers
endpoint to retrieve tracking numbers
for orders, if `trackingSupport` is set to `true`.
- Shopify queries the callback_url/fetch_stock
endpoint to retrieve inventory levels,
if `inventoryManagement` is set to `true`.
- Shopify uses the callback_url/fulfillment_order_notification
endpoint to send
[fulfillment and cancellation requests](https://shopify.dev/apps/fulfillment/fulfillment-service-apps/manage-fulfillments#step-2-receive-fulfillment-requests-and-cancellations).
Curl example: "curl -X POST \\\nhttps://your-development-store.myshopify.com/admin/api/unstable/graphql.json \\\n-H 'Content-Type: application/json' \\\n-H 'X-Shopify-Access-Token: {access_token}' \\\n-d '{\n\"query\": \"mutation fulfillmentServiceCreate($name: String!, $callbackUrl: URL!) { fulfillmentServiceCreate(name: $name, callbackUrl: $callbackUrl) { fulfillmentService { id serviceName callbackUrl } userErrors { field message } } }\",\n \"variables\": {\n \"name\": \"example_fulfillment_service\",\n \"callbackUrl\": \"https://callback.org/\"\n }\n}'\n" Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n data: {\n \"query\": `mutation fulfillmentServiceCreate($name: String!, $callbackUrl: URL!) {\n fulfillmentServiceCreate(name: $name, callbackUrl: $callbackUrl) {\n fulfillmentService {\n id\n serviceName\n callbackUrl\n }\n userErrors {\n field\n message\n }\n }\n }`,\n \"variables\": {\n \"name\": \"example_fulfillment_service\",\n \"callbackUrl\": \"https://callback.org/\"\n },\n },\n});\n" Ruby example: "session = ShopifyAPI::Auth::Session.new(\n shop: \"your-development-store.myshopify.com\",\n access_token: access_token\n)\nclient = ShopifyAPI::Clients::Graphql::Admin.new(\n session: session\n)\n\nquery = <<~QUERY\n mutation fulfillmentServiceCreate($name: String!, $callbackUrl: URL!) {\n fulfillmentServiceCreate(name: $name, callbackUrl: $callbackUrl) {\n fulfillmentService {\n id\n serviceName\n callbackUrl\n }\n userErrors {\n field\n message\n }\n }\n }\nQUERY\n\nvariables = {\n \"name\": \"example_fulfillment_service\",\n \"callbackUrl\": \"https://callback.org/\"\n}\n\nresponse = client.query(query: query, variables: variables)\n" PHP example: "use Shopify\\Clients\\Graphql;\n\n$client = new Graphql(\"your-development-store.myshopify.com\", $accessToken);\n$query = <<\"example_fulfillment_service\",\n \"callbackUrl\" => \"https://callback.org/\",\n];\n\n$response = $client->query([\"query\" => $query, \"variables\" => $variables]);\n" Remix example: "const { admin } = await authenticate.admin(request);\n\nconst response = await admin.graphql(\n `#graphql\n mutation fulfillmentServiceCreate($name: String!, $callbackUrl: URL!) {\n fulfillmentServiceCreate(name: $name, callbackUrl: $callbackUrl) {\n fulfillmentService {\n id\n serviceName\n callbackUrl\n }\n userErrors {\n field\n message\n }\n }\n }`,\n {\n variables: {\n \"name\": \"example_fulfillment_service\",\n \"callbackUrl\": \"https://callback.org/\"\n },\n },\n);\n\nconst data = await response.json();\n" Graphql query: "mutation fulfillmentServiceCreate($name: String!, $callbackUrl: URL!) {\n fulfillmentServiceCreate(name: $name, callbackUrl: $callbackUrl) {\n fulfillmentService {\n id\n serviceName\n callbackUrl\n }\n userErrors {\n field\n message\n }\n }\n}"
input: { "name": "example_fulfillment_service", "callbackUrl": "https://callback.org/" }
response: { "data": { "fulfillmentServiceCreate": { "fulfillmentService": { "id": "gid://shopify/FulfillmentService/1061774487?id=true", "serviceName": "example_fulfillment_service", "callbackUrl": "https://callback.org/" }, "userErrors": [] } } }