function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
objectuserobjectuser 

Getting user info using rest api ??

I have access token and instance url ....
I want current user info ??

how should i retreive it using get request ...
i do not want chatter user info ...

 

as /services/data/v24.0/chatter/users/me

 

????

Vinita_SFDCVinita_SFDC

Hello,

 

URL format is : /vXX.X/sobjects/SObject/id/, so for user object it would be like this:

/services/data/v24.0/sobjects/User/userid

For further details please refer: http://wiki.developerforce.com/page/Getting_Started_with_the_Force.com_REST_API

 

Hope this helps!