action i_cue_post_administration_user { label: "Create user" description: "Create new user for entity/organization. This can be done by entity administrator." provider: i_cue method: POST path: "/administration/user" encoding: json input: { type: "object" properties: { Token: { type: "string" } email: { type: "string" } entityToken: { type: "string" format: "uuid" } firstname: { type: "string" } isActive: { type: "boolean" } lastname: { type: "string" } phone: { type: "string" } } additionalProperties: false } output: { type: "string" format: "uuid" } }