action n_auth_get_account { label: "Get specific account" description: "Returns the account. Required permission: 'sessions' or 'accounts'." provider: n_auth method: GET path: "/servers/{serverid}/accounts/{accountid}/" encoding: json input: { type: "object" properties: { accountid: { type: "string" } serverid: { type: "string" } } required: ["accountid", "serverid"] additionalProperties: false } output: { type: "object" additionalProperties: true } }