action n_auth_get_all_accounts { label: "Get all accounts" description: "Returns all account. Required permission 'accounts'." provider: n_auth method: GET path: "/servers/{serverid}/accounts/" encoding: json input: { type: "object" properties: { filter: { type: "string" } limit: { type: "string" } marker: { type: "string" } serverid: { type: "string" } sort: { type: "string" } } required: ["serverid"] additionalProperties: false } output: { type: "object" additionalProperties: true } }