action n_auth_get_user { label: "Get all accounts of a specific user" description: "Returns an array containing all accounts corresponding to this user. Required permission: 'sessions' or 'users'." provider: n_auth method: GET path: "/servers/{serverid}/users/{userid}/accounts" encoding: json input: { type: "object" properties: { limit: { type: "string" } marker: { type: "string" } serverid: { type: "string" } sort: { type: "string" } userid: { type: "string" } } required: ["serverid", "userid"] additionalProperties: false } output: { type: "object" additionalProperties: true } }