action alertersystem_api_user_account_level_code_get_collection { label: "Retrieves the collection of UserAccountLevelCode resources." description: "Retrieves the collection of UserAccountLevelCode resources." provider: alertersystem method: GET path: "/api/user-account-level-code" encoding: json input: { type: "object" properties: { page: { type: "integer" } "properties[]": { type: "array" items: { type: "string" } } } additionalProperties: false } output: { type: "array" items: { 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" } } } } }