action n_auth_get_users { label: "Get all users" description: "Returns an array of arrays containing all accounts corresponding to all users. Required permission: 'users'." provider: n_auth method: GET path: "/servers/{serverid}/users/" encoding: json input: { type: "object" properties: { filter: { type: "string" } limit: { type: "string" } marker: { type: "string" } search: { type: "string" } serverid: { type: "string" } sort: { type: "string" } } required: ["serverid"] additionalProperties: false } output: { type: "object" additionalProperties: true } }