action ix_api_facilities_read { label: "facilities_read" description: "Retrieve a facility by id" provider: ix_api method: GET path: "/facilities/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "array" items: { type: "object" } } }