action shipengine_list_carrier_services { label: "List Carrier Services" description: "List the services associated with the carrier ID" provider: shipengine method: GET path: "/v1/carriers/{carrier_id}/services" encoding: json output: { type: "object" description: "A carrier list services response body" properties: { services: { type: "array" description: "An array of services associated with the carrier" items: { description: "A carrier service" type: "object" } } } additionalProperties: false } }