Skill

Path /{skill-id}

You can add and remove skills from members.

Reading

You can read information about a single Skill by making a Graph API GET request to /{skill-id}.

You can also read information about all Skills in your community by making a Graph API GET request to /community/skills.

Permissions

Reading information about skills requires the Read work profile permissions.

Fields

Field NameDescriptionType

id

The id of the skill.

string

name

Skill name.

string

Publishing

You can't publish using this edge. In order to create an skill, publish to the /{member-id}/skills edge. Publishing requires Manage work profiles permission.

Fields

Field NameDescriptionType

name

Name of the skill.

string

Deleting

You can delete a skill by making a Graph API DELETE request to /{skill-id}. You will need Manage work profiles permission.

Updating

You can't update using this node.

Examples


Get the name of the skill

GET /{skill-id} HTTP/1.1
Host: graph.facebook.com


Deleting the skill

DELETE /{skill-id} HTTP/1.1
Host: graph.facebook.com

This would remove the skill from all users.