Partially update an Employee Skill Profile with feedback
Provide feedback about an existing Employee Skill Profile to update it inside
the system. When the feedback_format
query parameter is skills
,
the body of the feedback message overwrites, adds or updates Skills in the original profile.
When the feedback_format
query parameter is skill_clusters
, this endpoint will change the Skill Cluster
Skills in the Skill Profile to fit the given Skill Cluster proficiency level.
Authorizations
The access token received from the authorization server in the OAuth 2.0 flow.
Path Parameters
The unique ID in your system, consisting of alphanumeric characters, hyphens and underscores.
1 - 100
"a3903505-eb84-42dc-a79f-5e7b1fe897b7"
Query Parameters
The format in which feedback for the Skill Profile is given.
skills
, skill_clusters
, external_vendor_skills
"Skills"
Body
The source of the Skill Profile update.
"oracle"
The Skills contained in this profile. Either skill
or skill_id
must be provided, but not both.
Default structure for an individual Skill.
[
{
"skill_id": "c110316a-41d3-46ef-a35e-dbb27785b1c8",
"has_skill": true
},
{
"skill_id": "4b85469d-6729-4d70-9876-a0faa2a2f63b",
"has_skill": true
},
{
"skill_id": "e03c1859-3bae-4700-b2c5-ede2937038de",
"has_skill": false
}
]
The source of the Skill Profile update.
"oracle"
The Skills contained in this profile. Either skill
or skill_id
must be provided, but not both.
Default structure for an individual Skill.
[
{
"skill_id": "c110316a-41d3-46ef-a35e-dbb27785b1c8",
"has_skill": true
},
{
"skill_id": "4b85469d-6729-4d70-9876-a0faa2a2f63b",
"has_skill": true
},
{
"skill_id": "e03c1859-3bae-4700-b2c5-ede2937038de",
"has_skill": false
}
]
The source of the Skill Profile update.
"workday"
The Skill Clusters along with their proficiency levels. You should supply either a skill_cluster_name
or a skill_cluster_id
Default structure for a Skill Cluster.
[
{ "skill_cluster_name": "Programming" },
{
"skill_cluster_name": "Business Intelligence",
"proficiency_level": 2
}
]
The external vendor's language in which feedback is provided. The vendor must be activated on the tenant for this to work.
workday
"workday"
The source of the Skill Profile update.
"workday"
The Skills contained in this profile. Both the skill
and the skill_id
must be provided.
[
{
"skill": "Machine Learning",
"skill_id": "111-AAA",
"has_skill": true
},
{
"skill": "Python",
"skill_id": "111-BBB",
"has_skill": true
},
{
"skill": "Tensorflow",
"skill_id": "111-CCC",
"has_skill": false
}
]
Response
No Content
Was this page helpful?