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