curl --request GET \
  --url https://{tenant_name}.{region}.techwolf.ai/employees/{employee_external_id}/skill_events \
  --header 'Authorization: Bearer <token>'
{
  "count": 3,
  "results": [
    {
      "external_id": "5cbdbdbe-5f44-4423-8157-520f8a2f429a",
      "event_type": "learning",
      "timestamp": "2021-01-03",
      "content": {
        "learning_title": "Computer Science 103",
        "learning_description": "A description for the Computer Science 103 Course."
      },
      "source": "youtube"
    },
    {
      "external_id": "5cbdbdbe-5f44-4423-8157-520f8a2f847b",
      "event_type": "learning",
      "timestamp": "2021-01-02",
      "content": {
        "learning_title": "Computer Science 102",
        "learning_description": "A description for the Computer Science 102 Course."
      },
      "source": "course"
    },
    {
      "external_id": "5cbdbdbe-5f44-4423-8157-520f8a2f1538",
      "event_type": "learning",
      "timestamp": "2021-01-01",
      "content": {
        "learning_title": "Computer Science 101",
        "learning_description": "A description for the Computer Science 101 Course."
      },
      "source": "employee-archives"
    }
  ]
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

employee_external_id
string
required

Unique external ID linked to an Employee, consisting of alphanumeric characters, hyphens and underscores.

Required string length: 1 - 100

Query Parameters

limit
integer
default:
100

The maximal number of entities returned, ordered by the last_updated field and external_id.

Required range: 1 < x < 200
offset
integer
default:
0

The applied offset for returned entities, results starting from offset up to offset + limit.

Required range: x > 0
event_type
enum<string>

Get only Skill Events of this type. Learn more about the Skill Event Types at <u>How it works</u>. Multiple of these includes can be added to the request to get the Skill Events of multiple types.

Available options:
working_history,
education_history,
resume_document,
learning,
feedback,
goal,
project,
ticket,
certificate,
skill_notes

Response

200
application/json
OK
count
integer
required

Total number of Skill Event type objects linked to the Employee.

Required range: x > 0
results
object[]
required

Subset of Skill Events starting from offset up to offset + limit.