SugarCRM gem 文档 API

发布于 2024-11-05 19:14:03 字数 227 浏览 0 评论 0原文

我正在尝试使用 SugarCRM ruby​​ gem 创建一个新帐户, 但文档没有说明如何创建它: https://github.com/chicks/sugarcrm

您能建议我如何做到这一点以及在哪里可以获取 SugarCRM gem 的 API 文档吗?

谢谢 亚历山德罗

I am trying to create a new account using SugarCRM ruby gem,
but the Documentations don't say how I can create it: https://github.com/chicks/sugarcrm

Can you suggest me the way do to that and where I can get API doc for SugarCRM gem ?

thanks
Alessandro

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鹤仙姿 2024-11-12 19:14:03
a = SugarCRM::Account.new
a.name = 'New Account'
# make sure it's valid
a.valid?
# show errors, if there are any
a.errors
# once the account has no more errors, save it
a.save!

您可以在此处找到更多信息:

如果您有任何其他问题,请随时在 GitHub 上提问(我们会更快地看到它们):https://github.com/chicks/sugarcrm/issues

a = SugarCRM::Account.new
a.name = 'New Account'
# make sure it's valid
a.valid?
# show errors, if there are any
a.errors
# once the account has no more errors, save it
a.save!

You can find more info here:

If you have any other questions, feel free to ask them on GitHub (we'll see them faster): https://github.com/chicks/sugarcrm/issues

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文