# carrierService - admin-graphql - QUERY Version: 2024-10 ## Description Returns a `DeliveryCarrierService` object by ID. ### Access Scopes ## Arguments * [id](/docs/api/admin-graphql/2024-10/scalars/ID): ID! - The ID of the `DeliveryCarrierService` to return. ## Returns * [active](/docs/api/admin-graphql/2024-10/scalars/Boolean): Boolean! Whether the carrier service is active. * [availableServicesForCountries](/docs/api/admin-graphql/2024-10/objects/DeliveryAvailableService): DeliveryAvailableService! The list of services offered for given destinations. * [callbackUrl](/docs/api/admin-graphql/2024-10/scalars/URL): URL The URL endpoint that Shopify needs to retrieve shipping rates. * [formattedName](/docs/api/admin-graphql/2024-10/scalars/String): String The properly formatted name of the shipping service provider, ready to display. * [icon](/docs/api/admin-graphql/2024-10/objects/Image): Image! The logo of the service provider. * [id](/docs/api/admin-graphql/2024-10/scalars/ID): ID! A globally-unique ID. * [name](/docs/api/admin-graphql/2024-10/scalars/String): String The name of the shipping service provider. * [supportsServiceDiscovery](/docs/api/admin-graphql/2024-10/scalars/Boolean): Boolean! Whether merchants are able to send dummy data to your service through the Shopify admin to see shipping rate examples. ## Examples ### Receive a single CarrierService Curl example: "curl -X POST \\\nhttps://your-development-store.myshopify.com/admin/api/2024-10/graphql.json \\\n-H 'Content-Type: application/json' \\\n-H 'X-Shopify-Access-Token: {access_token}' \\\n-d '{\n\"query\": \"query CarrierServiceShow($id: ID!) { carrierService(id: $id) { id name callbackUrl active supportsServiceDiscovery } }\",\n \"variables\": {\n \"id\": \"gid://shopify/DeliveryCarrierService/763770004\"\n }\n}'\n" Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n data: {\n \"query\": `query CarrierServiceShow($id: ID!) {\n carrierService(id: $id) {\n id\n name\n callbackUrl\n active\n supportsServiceDiscovery\n }\n }`,\n \"variables\": {\n \"id\": \"gid://shopify/DeliveryCarrierService/763770004\"\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 query CarrierServiceShow($id: ID!) {\n carrierService(id: $id) {\n id\n name\n callbackUrl\n active\n supportsServiceDiscovery\n }\n }\nQUERY\n\nvariables = {\n \"id\": \"gid://shopify/DeliveryCarrierService/763770004\"\n}\n\nresponse = client.query(query: query, variables: variables)\n" Remix example: "const { admin } = await authenticate.admin(request);\n\nconst response = await admin.graphql(\n `#graphql\n query CarrierServiceShow($id: ID!) {\n carrierService(id: $id) {\n id\n name\n callbackUrl\n active\n supportsServiceDiscovery\n }\n }`,\n {\n variables: {\n \"id\": \"gid://shopify/DeliveryCarrierService/763770004\"\n },\n },\n);\n\nconst data = await response.json();\n" Graphql query: "query CarrierServiceShow($id: ID!) {\n carrierService(id: $id) {\n id\n name\n callbackUrl\n active\n supportsServiceDiscovery\n }\n}" #### Graphql Input { "id": "gid://shopify/DeliveryCarrierService/763770004" } #### Graphql Response { "data": { "carrierService": { "id": "gid://shopify/DeliveryCarrierService/763770004", "name": "usps", "callbackUrl": null, "active": true, "supportsServiceDiscovery": true } } }