v1

latestOpenAPI 3.0.12026-07-24283883639.5 KB
Experiences

Update a Specific Experience

This endpoint updates the specified experience. <h3>Required Scope</h3>experiences:write

patch/api/v2/experiences/{id}

Path parameters

idstring required

The ID of the experience to update.

Request body

Example request

{
  "data": {
    "type": "experiences",
    "attributes": {
      "tags": [
        "Java",
        "Programming",
        "SQL"
      ],
      "experience-type": "JobRole",
      "weekly-hours": 40,
      "organization-name": "ABC Org",
      "title": "Developer",
      "seniority": "Intermediate"
    }
  }
}

Response

Success

Example response

{
  "data": {
    "type": "experiences",
    "id": "zkbn2OW",
    "attributes": {
      "tags": [
        "Java",
        "Programming",
        "SQL"
      ],
      "experience-type": "JobRole",
      "weekly-hours": 40,
      "organization-name": "ABC Org",
      "title": "Developer",
      "description": "I wrote code",
      "seniority": "Intermediate",
      "points-earned": "6.2830080"
    },
    "relationships": [
      {
        "created-by": {
          "data": {
            "id": "Oy158",
            "type": "users"
          }
        }
      }
    ]
  }
}