action n_auth_set_user_attributes { label: "Set all attributes of a specific user" description: "Set the attributes of a specific user. Prior attributes with keys that are not provided in the body of the request will be deleted. Creates the user if not exists. Required permission: 'users'." provider: n_auth method: POST path: "/servers/{serverid}/users/{userid}/attributes/" encoding: json input: { type: "object" properties: { serverid: { type: "string" } userid: { type: "string" } } required: ["serverid", "userid"] additionalProperties: false } output: { type: "object" additionalProperties: true } }