action shipengine_service_points_get_by_id { label: "Get Service Point By ID" description: "Returns a carrier service point by using the service_point_id" provider: shipengine method: GET path: "/v1/service_points/{carrier_code}/{country_code}/{service_point_id}" encoding: json output: { type: "object" description: "A get service point by ID response body" properties: { service_point: { type: "object" properties: { address_line1: { type: "string" } carrier_code: { type: "string" } city_locality: { type: "string" } company_name: { type: "string" } country_code: { type: "string" } 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" } } } } } }