You need to sign in to do that
Don't have an account?
sowmya_umesh
How to fetch specific Field details in Rest API ?
We can get Object details in Rest resource using /sobjects/ObjectName/describe (which gives all the fields), Same way how to get specific field details in REST Api
We need to use Tooling Api for that
SELECT QualifiedApiName, (Select DataType From Particles) FROM FieldDefinition WHERE EntityDefinition.QualifiedApiName ='Account'
1) http://amitsalesforce.blogspot.in/2017/01/learn-rest-api-in-salesforce-how-to.html
2) To query :- /services/data/v36.0/query
Sample URL to get any record
URL:- /services/data/v36.0/query?q=SELECT+id,name,profile.name+FROM+user+WHERE+username='amit.salesforce21@gmail.com'