Educations API

These endpoints are only available to counselors and candidates, candidates can only view/edit items in their own resume

List educations on a resume

Get a candidate’s educations listed on their resume

GET /candidates/:candidate_id/resume/educations

Response

Status: 200 OK
Link: <https://tapability.org/api/v1/resource?page=2>; rel="next",
      <https://tapability.org/api/v1/resource?page=5>; rel="last"
X-RateLimit-Limit: 5000
X-RateLimit-Remaining: 4999
[
  {
    "id": "4f87f608-7872-4c37-a845-cbe08d880489",
    "institution": "University of California at Santa Barbara",
    "city": "Santa Barbara",
    "state": "California",
    "degree": "Bachelor of Science",
    "concentration": "Computer Science",
    "start_date": "2002-09-01",
    "end_date": "2006-06-01",
    "graduated": true
  }
]

Get a single education

GET /candidates/:candidate_id/resume/educations/:education_id

Response

Status: 200 OK
X-RateLimit-Limit: 5000
X-RateLimit-Remaining: 4999
{
  "id": "4f87f608-7872-4c37-a845-cbe08d880489",
  "institution": "University of California at Santa Barbara",
  "city": "Santa Barbara",
  "state": "California",
  "degree": "Bachelor of Science",
  "concentration": "Computer Science",
  "start_date": "2002-09-01",
  "end_date": "2006-06-01",
  "graduated": true
}

Create an education

Create a new education.

POST /candidates/:candidate_id/resume/educations

Input

description
Required string
source
Required string
date
Optional string
{
  "description": "Emmy - Best Actor",
  "source": "Academy of Television Arts and Sciences",
  "date": "2012-09-23"
}

Response

Status: 201 Created
Location: https://tapability.org/api/v1/candidates/eaf3022f-330e-46db-8665-01e0969ff2f7/resume/educations/2894c358-f2d0-4a3f-952f-5afdb8dd81aa
X-RateLimit-Limit: 5000
X-RateLimit-Remaining: 4999
{
  "id": "4f87f608-7872-4c37-a845-cbe08d880489",
  "institution": "University of California at Santa Barbara",
  "city": "Santa Barbara",
  "state": "California",
  "degree": "Bachelor of Science",
  "concentration": "Computer Science",
  "start_date": "2002-09-01",
  "end_date": "2006-06-01",
  "graduated": true
}

Update an education

Update the provided education.

PATCH /candidates/:candidate_id/resume/educations/:education_id

Input

description
Required string
source
Required string
date
Optional string
{
  "description": "Emmy - Best Actor",
  "source": "Academy of Television Arts and Sciences",
  "date": "2012-09-23"
}

Response

Status: 200 OK
X-RateLimit-Limit: 5000
X-RateLimit-Remaining: 4999
{
  "id": "4f87f608-7872-4c37-a845-cbe08d880489",
  "institution": "University of California at Santa Barbara",
  "city": "Santa Barbara",
  "state": "California",
  "degree": "Bachelor of Science",
  "concentration": "Computer Science",
  "start_date": "2002-09-01",
  "end_date": "2006-06-01",
  "graduated": true
}

Delete an education

Delete the provided education.

DELETE /candidates/:candidate_id/resume/educations/:education_id

Response

Status: 204 No Content
X-RateLimit-Limit: 5000
X-RateLimit-Remaining: 4999