获取 Salesforce 帐户字段 [英] Get Salesforce Account fields

查看:34
本文介绍了获取 Salesforce 帐户字段的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用 Salesforce API 制定规范我搜索了很多,但没有找到我可以使用 GET 方法检索的字段列表有人可以提供给我这个列表的链接吗?

我刚刚找到这个链接

I am doing the specifications using Salesforce API I searched so much but didn't find the list of fields that i could retrieve using GET method Someone could provide me the link that give me this list please ?

I just found this link https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/dome_get_field_values.htm

Thank you

解决方案

You need to use a "describe" call. It'll return a list of all objects your user can see in the org and it'll include links how to get more detailed info about all fields on say Account. (you can jump straight to describing an Account if you want, the links are constructed in a predictable pattern)

"Describes" are limited to what your Profile can see so if the profile lacks the "Read" checkbox on some object - it won't appear in the results.

Go to https://workbench.developerforce.com for example and experiment (from menu select Utilities -> REST explorer)

  1. Base call that lists all APIs available to you: /services/data/v41.0
  2. List of all sObjects & links to obtain more info about them: /services/data/v41.0/sobjects
  3. Detailed info about Account, including fields: /services/data/v41.0/sobjects/Account/describe

这篇关于获取 Salesforce 帐户字段的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆