action id4i_get_multiple_properties { label: "Get multiple ID4n properties" description: "Get a list of ID4n properties for the specified ID4ns." provider: id4i method: GET path: "/api/v1/multiple/id4ns/properties" encoding: json input: { type: "object" properties: { id4ns: { type: "array" items: { type: "string" } } organizationId: { type: "string" } } required: ["id4ns"] additionalProperties: false } output: { type: "object" description: "A list of id4n properties" properties: { list: { type: "array" description: "A list containing the id4n with its properties." items: { type: "object" description: "An id4n with its properties" properties: { id4n: { type: "string" description: "The ID4n" } properties: { type: "object" description: "The properties of the ID4n" } } } } } } }