action id4i_create_collection { label: "Create collection" provider: id4i method: POST path: "/api/v1/collections" encoding: json input: { type: "object" required: ["length", "organizationId", "type"] properties: { label: { type: "string" } length: { type: "integer" format: "int32" } organizationId: { type: "string" } type: { type: "string" enum: ["ROUTING_COLLECTION", "LOGISTIC_COLLECTION", "LABELLED_COLLECTION"] } } } output: { type: "object" properties: { id4n: { type: "string" description: "The ID" } } } }