# carrierServiceCreate - admin-graphql - MUTATION
Version: 2025-01

## Description
Creates a new carrier service.

### Access Scopes
`write_shipping` access scope.


## Arguments
* [input](/docs/api/admin-graphql/2025-01/input-objects/DeliveryCarrierServiceCreateInput): DeliveryCarrierServiceCreateInput! - The input fields used to create a carrier service.


## Returns
* [carrierService](/docs/api/admin-graphql/2025-01/objects/DeliveryCarrierService): DeliveryCarrierService The created carrier service.
* [userErrors](/docs/api/admin-graphql/2025-01/objects/CarrierServiceCreateUserError): CarrierServiceCreateUserError! The list of errors that occurred from executing the mutation.


## Examples
### Create a new CarrierService
Curl example: "curl -X POST \\\nhttps://your-development-store.myshopify.com/admin/api/2025-01/graphql.json \\\n-H 'Content-Type: application/json' \\\n-H 'X-Shopify-Access-Token: {access_token}' \\\n-d '{\n\"query\": \"mutation CarrierServiceCreate($input: DeliveryCarrierServiceCreateInput!) { carrierServiceCreate(input: $input) { carrierService { id name callbackUrl active supportsServiceDiscovery } userErrors { field message } } }\",\n \"variables\": {\n    \"input\": {\n      \"name\": \"test carrier service\",\n      \"callbackUrl\": \"https://example.com/\",\n      \"supportsServiceDiscovery\": true,\n      \"active\": true\n    }\n  }\n}'\n"
Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n  data: {\n    \"query\": `mutation CarrierServiceCreate($input: DeliveryCarrierServiceCreateInput!) {\n      carrierServiceCreate(input: $input) {\n        carrierService {\n          id\n          name\n          callbackUrl\n          active\n          supportsServiceDiscovery\n        }\n        userErrors {\n          field\n          message\n        }\n      }\n    }`,\n    \"variables\": {\n      \"input\": {\n        \"name\": \"test carrier service\",\n        \"callbackUrl\": \"https://example.com/\",\n        \"supportsServiceDiscovery\": true,\n        \"active\": true\n      }\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 CarrierServiceCreate($input: DeliveryCarrierServiceCreateInput!) {\n    carrierServiceCreate(input: $input) {\n      carrierService {\n        id\n        name\n        callbackUrl\n        active\n        supportsServiceDiscovery\n      }\n      userErrors {\n        field\n        message\n      }\n    }\n  }\nQUERY\n\nvariables = {\n  \"input\": {\n    \"name\": \"test carrier service\",\n    \"callbackUrl\": \"https://example.com/\",\n    \"supportsServiceDiscovery\": true,\n    \"active\": true\n  }\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  mutation CarrierServiceCreate($input: DeliveryCarrierServiceCreateInput!) {\n    carrierServiceCreate(input: $input) {\n      carrierService {\n        id\n        name\n        callbackUrl\n        active\n        supportsServiceDiscovery\n      }\n      userErrors {\n        field\n        message\n      }\n    }\n  }`,\n  {\n    variables: {\n      \"input\": {\n        \"name\": \"test carrier service\",\n        \"callbackUrl\": \"https://example.com/\",\n        \"supportsServiceDiscovery\": true,\n        \"active\": true\n      }\n    },\n  },\n);\n\nconst data = await response.json();\n"
Graphql query: "mutation CarrierServiceCreate($input: DeliveryCarrierServiceCreateInput!) {\n  carrierServiceCreate(input: $input) {\n    carrierService {\n      id\n      name\n      callbackUrl\n      active\n      supportsServiceDiscovery\n    }\n    userErrors {\n      field\n      message\n    }\n  }\n}"
#### Graphql Input
{
  "input": {
    "name": "test carrier service",
    "callbackUrl": "https://example.com/",
    "supportsServiceDiscovery": true,
    "active": true
  }
}
#### Graphql Response
{
  "data": {
    "carrierServiceCreate": {
      "carrierService": {
        "id": "gid://shopify/DeliveryCarrierService/1036895098",
        "name": "test carrier service",
        "callbackUrl": "https://example.com/",
        "active": true,
        "supportsServiceDiscovery": true
      },
      "userErrors": []
    }
  }
}