action intellifi_get_user_by_id { label: "Get user" description: "Can only be used by an **administrative** user." provider: intellifi method: GET path: "/users/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { email: { type: "string" description: "Email address" } first_name: { type: "string" description: "First name" } id: { type: "string" description: "Unique identifier for resource." } is_admin: { type: "boolean" description: "Whether or not this is an administrator." } is_locked: { type: "boolean" description: "Whether or not this user is locked and can't change the password." } last_name: { type: "string" description: "Last name" } password: { type: "string" description: "Password of the user" } time_created: { type: "string" format: "dateTime" description: "[ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) formatted string for when this resource was created." } time_updated: { type: "string" format: "dateTime" description: "[ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) formatted string for when this resource was created." } url: { type: "string" description: "Url to the individual resource." } } } }