• Vishal Devgire
  • NEWBIE
  • 0 Points
  • Member since 2015

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 1
    Replies
Is there any way to collect users associated with skills using query like "select profileskill.name from ProfileSkill" etc. I do not want to use object 'ProfileSkillUser' as it will only return skills with which users are associated and not empty skills. In my implementation I want to collect all skills (empty and no empty) and users associated with skills
I can update the user roles using :

{
    "schemas": [
        "urn:scim:schemas:core:1.0",
        "urn:scim:schemas:extension:enterprise:1.0"
    ],
    "id": "00528000001EhgD",
   "displayName": "Changed Name",
    "nickName": "NickName",
"roles": [{
                              "value": "00E28000000p0XaEAI",
                              "display": "CEO"
               }]
}

URL : https://ap2.salesforce.com/services/scim/v1/Users/00528000001EhgD

But I am not able to fetch the roles as I could not find the resource url for fetching the roles.
I want to fetch role ids using role name
Can anybody please help here?
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?
I can update the user roles using :

{
    "schemas": [
        "urn:scim:schemas:core:1.0",
        "urn:scim:schemas:extension:enterprise:1.0"
    ],
    "id": "00528000001EhgD",
   "displayName": "Changed Name",
    "nickName": "NickName",
"roles": [{
                              "value": "00E28000000p0XaEAI",
                              "display": "CEO"
               }]
}

URL : https://ap2.salesforce.com/services/scim/v1/Users/00528000001EhgD

But I am not able to fetch the roles as I could not find the resource url for fetching the roles.
I want to fetch role ids using role name
Can anybody please help here?
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?