action contract_p_post_reset_password { label: "Reset the user password" provider: contract_p method: POST path: "/auth/reset_password" encoding: json input: { type: "object" properties: { new_password: { type: "string" description: "the new user's password" } token: { type: "string" description: "the token to reset the password" } user_name: { type: "string" description: "the username" } } } output: { type: "object" additionalProperties: true } }