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
Vishal DevgireVishal Devgire 

ProfileSkill not in sObject

I want to fetch skills from salesforce instance using REST. When I try "https://ap2.salesforce.com/services/data/v25.0/query/?q=SELECT+ProfileSkill.Name+FROM+ProfileSkillUser", it gives me an error saying  - resource not found.

Can anybody help me here?
KaranrajKaranraj
Vishal - Its due to the API version, change the API version from 25.0 to 30.0 or above to access profileskilluser object details
/services/data/v30.0/query/?q=SELECT+ProfileSkill.Name+FROM+ProfileSkillUser

 
Vishal DevgireVishal Devgire
Hi Karanraj, thanks for the reply. It worked!

Can you please tell me any API which can be used to provision skills i.e. while creating the account on salesforce, can we provide skill with it?