action id4i_get_routing_file { label: "Retrieve routing file" provider: id4i method: GET path: "/api/v1/routingfiles/{id4n}" encoding: json input: { type: "object" properties: { id4n: { type: "string" } organizationId: { type: "string" } } required: ["id4n"] additionalProperties: false } output: { type: "object" required: ["routes"] properties: { options: { type: "object" properties: { deleteOutdatedRoutes: { type: "boolean" } } } routes: { type: "array" items: { type: "object" required: ["params", "public", "type"] properties: { params: { type: "object" } priority: { type: "integer" format: "int32" } public: { type: "boolean" } type: { type: "string" } validUntil: { type: "integer" format: "int64" } } } } } } }