# List Available Carrier Services List all the carrier services for the logged in user Endpoint: GET /_api/v1/company/{company_slug}/carrierservices Version: 1.0.0 Security: TokenAuth ## Path parameters: - `company_slug` (string, required) ## Query parameters: - `enhancements` (boolean) Whether to include enhanced services in the response. - `package_types` (boolean) Whether to include package types in the response. ## Response 200 fields (application/json): - `carrier_id` (string, required) the name of the carrier to which the service belongs Example: "Generic Carrier" - `identifier` (string, required) A unique, human readable, identifier for the service. Example: "Generic Carrier|Generic Domestic Service GDOM" - `name` (string, required) The name of the service Example: "Next Day" - `enhancements` (array) List of enhancements supported by the service. Becomes available when the enhancements query parameter is passed as true. Example: ["dangerous_goods"] - `package_types` (array) List of package types supported by the service. Becomes available when the package_types query parameter is passed as true. Example: ["parcel"] ## Response 401 fields (application/json): - `detail` (string) Unauthorized error message."