v1
latestOpenAPI 3.0.12026-07-24283883639.5 KBExperiences
Create a New Experience
This endpoint creates a new experience in the system. <h3>Required Scope</h3>experiences:write
post/api/v2/experiences
Request body
Example request
{
"data": {
"type": "experiences",
"attributes": {
"tags": [
"Java",
"Programming",
"SQL"
],
"user-id": "4PVOL",
"user-identifier-type": "UserId",
"title": "Developer",
"experience-type": "JobRole",
"organization-name": "ABC Org",
"seniority": "Intermediate",
"weekly-hours": 40,
"points-earned": 151
}
}
}Response
Success
Example response
{
"data": {
"type": "experiences",
"id": "nmpo3Qj",
"attributes": {
"user-id": "4PVOL",
"user-identifier-type": "UserId",
"title": "Developer",
"tags": [
"Java",
"Programming",
"SQL"
],
"organization-name": "ABC Org",
"weekly-hours": 40,
"is-current": true,
"seniority": "Intermediate",
"experience-type": "JobRole"
}
}
}