action alertersystem_api_user_account_level_code_id_get { label: "Retrieves a UserAccountLevelCode resource." description: "Retrieves a UserAccountLevelCode resource." provider: alertersystem method: GET path: "/api/user-account-level-code/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "The UserAccountLevelCode resource is a set of codes that describes the different levels that can be assigned to user accounts." properties: { codeName: { type: "string" } id: { type: "string" } } } }