v1

latestOpenAPI 3.0.12026-07-24283883639.5 KB
Experiences

Get All Experiences

This endpoint retrieves all experiences. <h3>Required Scope</h3>experiences:write or experiences:read

get/api/v2/experiences

Query parameters

limitinteger

The maximum number of experiences to display per page. A maximum of 1000 is allowed.

nextstring

Retrieves the next batch of experiences. This value expires after 2 minutes if a request has not been made during that time.

filter[experience_type]string

Filter criteria that only returns content with this experience type. Acceptable values are JobRole, Project, Menteeship, Mentorship, Shadowing, StretchAssignment, or Other.

filter[title]string

Filter criteria that only returns content with this title.

filter[start_date]string date

Filter criteria that returns experiences from this date through filter[end_date]. Format yyyy-mm-dd.

filter[end_date]string date

Filter criteria that returns experiences from filter[start_date] through this date. Format yyyy-mm-dd.

Response

Success

Example response

{
  "data": [
    {
      "type": "experiences",
      "id": "d5xKaR",
      "attributes": {
        "employee-id": "109857314361388477769",
        "title": "Software Engineer III",
        "description": "Backend Developer",
        "experience-type": "JobRole",
        "organization-name": "Degreed",
        "seniority": "Intermediate",
        "weekly-hours": 40,
        "points-earned": 151
      },
      "relationships": [
        {
          "created_by": {
            "data": {
              "id": "zpgXa",
              "type": "users"
            }
          }
        }
      ]
    }
  ]
}