Job seeker education & experience

Getting, updating and deleting education and experience of a job seeker.

Get Eduction and Experience

GET https://www.ondemandstaffing.app/api/v1/jobseeker/education_and_experience

This endpoint allows you to get all education and experience for a given job seeker.

Query Parameters

Name
Type
Description

tenant

string

The unique tenant key.

Headers

Name
Type
Description

Authentication

string

Authentication token to track down which user is requesting the data.

{
    "status": 200,
    "data": {
        "experience": [
            {
                "id": 193,
                "title": "This is my job title",
                "company": "Company Inc.",
                "description": "Description of the work done at the company.",
                "client_name": "John Doe",
                "client_email": null,
                "location": 'New York',
                "client_phone": null,
                "start_date": "2019-09-09",
                "end_date": null,
                "is_current": true
            },{
                "id": 194,
                "title": "This is my other job title",
                "company": "Acme Inc.",
                "description": "Description of the work done at the company.",
                "client_name": "Jane Doe",
                "client_email": null,
                "location": 'New York',
                "client_phone": null,
                "start_date": "2016-09-09",
                "end_date": "2019-09-09",
                "is_current": null
            }
        ],
        "education": [
            {
                "id": 52,
                "institute": "Velvet University",
                "course": "Advanced Coffee Making",
                "year": "2018"
            }
        ]
    },
    "message": "Mission accomplished successfully."
}

Create or Update Experience

POST https://www.ondemandstaffing.app/api/v1/jobseeker/individual_experience_update

Use this method to create a new entry for experience or update existing one.

Query Parameters

Name
Type
Description

title

string

Title of the job

company

string

Company where the job was performed.

description

string

Description of the job.

location

string

City and country name where the job was performed.

client_name

string

Reference provided by the jobseeker for this experience.

client_email

string

Email of the reference

client_phone

string

Phone number of the reference

start_date

string

YYYY-MM-DD format

end_date

string

YYYY-MM-DD format.

is_current

boolean

id

string

If updating an existing experience, this is must. In absence of this id, we will create a new entry of experenice.

tenant

string

Tenant key

Headers

Name
Type
Description

Authentication

string

authentication token to track down user.

Delete Experience

DELETE https://www.ondemandstaffing.app/api/v1/jobseeker/individual_experience_update

Deletes the experience.

Query Parameters

Name
Type
Description

id

string

ID of the experience that needs to be destroyed.

tenant

string

Tenant key

Headers

Name
Type
Description

Authentication

string

Authentication token of the user.

Create or update Education

POST https://www.ondemandstaffing.app/api/v1/jobseeker/individual_education_update

Creates new education entry or updates existing one.

Query Parameters

Name
Type
Description

institute

string

Name of the institute or university.

course

string

Name of the course.

year

string

Graduation year in YYYY

id

string

If no id is provided, we will create a new entry. To update existing education entry please provide an ID.

tenant

string

Tenant key

Headers

Name
Type
Description

Authentication

string

Authentication token of user.

Delete Education

DELETE https://www.ondemandstaffing.app/api/v1/jobseeker/individual_education_update

Deletes an education entry.

Query Parameters

Name
Type
Description

id

string

ID of the education that needs to be destroyed.

tenant

string

Tenant Key

Headers

Name
Type
Description

Authentication

string

Authentication token of the user.

Last updated

Was this helpful?