action shipengine_service_points_list { label: "List Service Points" description: "List carrier service points by location" provider: shipengine method: POST path: "/v1/service_points/list" encoding: json input: { type: "object" } output: { type: "object" description: "A list service points response body" properties: { errors: { type: "array" description: "The errors associated with the failed API call" items: { type: "object" } } lat: { type: "number" format: "double" } long: { type: "number" format: "double" } service_points: { type: "array" items: { type: "object" properties: { address_line1: { type: "string" } carrier_code: { type: "string" } city_locality: { type: "string" } company_name: { type: "string" } country_code: { type: "string" } distance_in_meters: { type: "number" format: "double" } features: { type: "array" items: { type: "string" enum: ["drop_off_point", "pickup_point", "print_services", "after_hours_locker", "after_hours_dropbox"] } } hours_of_operation: { type: "object" properties: { friday: { type: "array" items: { type: "object" properties: { close: { type: "string" } open: { type: "string" } } } } monday: { type: "array" items: { type: "object" properties: { close: { type: "string" } open: { type: "string" } } } } saturday: { type: "array" items: { type: "object" properties: { close: { type: "string" } open: { type: "string" } } } } sunday: { type: "array" items: { type: "object" properties: { close: { type: "string" } open: { type: "string" } } } } thursday: { type: "array" items: { type: "object" properties: { close: { type: "string" } open: { type: "string" } } } } tuesday: { type: "array" items: { type: "object" properties: { close: { type: "string" } open: { type: "string" } } } } wednesday: { type: "array" items: { type: "object" properties: { close: { type: "string" } open: { type: "string" } } } } } } lat: { type: "number" format: "double" } long: { type: "number" format: "double" } phone_number: { type: "string" } postal_code: { type: "string" } service_codes: { type: "array" items: { type: "string" } } service_point_id: { type: "string" } state_province: { type: "string" } } } } } } }