Get Job Seeker List
Returns a list of active JobSeeker objects.
curl --request GET \
--url https://api.bindbee.dev/api/vms/v1/job-seeker \
--header 'Authorization: Bearer <token>' \
--header 'x-connector-token: <x-connector-token>'
{
"cursor": "MDE4YjE4ZWYtYzk5Yy03YTg2LTk5NDYtN2I3YzlkNTQzM2U1",
"page_size": 50,
"items": [
{
"id": "018b18ef-c487-703c-afd9-0ca478ccd9d6",
"remote_id": "123321",
"modified_at": "2021-10-16T00:00:00Z",
"raw_data": {
"key_1": "Platform dependent data 1",
"key_2": "Platform dependent data 2"
},
"custom_fields": {
"category_group": "REG",
"disability_type": "ASBERG",
"hire_date": "1991-03-16T00:00:00",
"hire_source": "REFER",
"nationality": "USA",
"original_hire_date": "1991-03-16T00:00:00"
},
"external_job_seeker_id": "KTY1213456",
"job_posting_id": "KUNALJP1001",
"first_name": "Kunal",
"last_name": "Tyagi",
"date_available": "2023-11-10T00:00:00Z",
"supplier_code": "KTSC07",
"security_id": "KTY12084523",
"rates": [
{
"rate_category": "ST",
"rate_type": "br",
"rate_uom": "Hr",
"value": 21.02
}
],
"email": "kunal@bindbee.dev",
"site_code": "KTSC",
"location_code": "OMLC",
"worker_pay_type": "AGWTC",
"submitted_to_other_job_posting": false
}
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Headers
Query Parameters
Number of results to return per page. Maximum size is 100.
1 <= x <= 1000
The pagination cursor value.
Response
Cursor value to fetch next set of items
"MDE4YjE4ZWYtYzk5Yy03YTg2LTk5NDYtN2I3YzlkNTQzM2U1"
Indicates the count of items in the response
50
"018b18ef-c487-703c-afd9-0ca478ccd9d6"
The third-party API ID of the matching object.
"123321"
This is the datetime that this object was last updated by Bindbee
"2021-10-16T00:00:00Z"
The custom fields related to the model
{
"category_group": "REG",
"disability_type": "ASBERG",
"hire_date": "1991-03-16T00:00:00",
"hire_source": "REFER",
"nationality": "USA",
"original_hire_date": "1991-03-16T00:00:00"
}
Any unique identifier of this job seeker.
"KTY1213456"
The unique identifier for the Job Posting. This identifier must match the external Job Posting identifier for the corresponding data record listed in the Job Posting
"KUNALJP1001"
The first name of this job seeker.
"Kunal"
The last name of this job seeker.
"Tyagi"
The date the job seeker is available to begin working.
"2023-11-10T00:00:00Z"
The company code of the job seeker’s supplier.
"KTSC07"
The security ID of the job seeker.
"KTY12084523"
Different rates for the job seeker
Allowed rate types are BILL_RATE and PAY_RATE
br
, pr
Allowed rate categories are STANDARD_RATE, OVERTIME_RATE and DOUBLE_RATE
ST
, OT
, DT
Allowed rate units are HOURLY and DAILY
Hr
, Daily
Value of the rate
21.02
[
{
"rate_category": "ST",
"rate_type": "br",
"rate_uom": "Hr",
"value": 21.02
}
]
The email address of the job seeker.
"kunal@bindbee.dev"
Site code for job seeker.
"KTSC"
Work location code for job seeker.
"OMLC"
Work type code for job seeker
"AGWTC"
Indicates whether this specific job seeker is submitted to other job postings
false
This is the Raw data
{
"key_1": "Platform dependent data 1",
"key_2": "Platform dependent data 2"
}
curl --request GET \
--url https://api.bindbee.dev/api/vms/v1/job-seeker \
--header 'Authorization: Bearer <token>' \
--header 'x-connector-token: <x-connector-token>'
{
"cursor": "MDE4YjE4ZWYtYzk5Yy03YTg2LTk5NDYtN2I3YzlkNTQzM2U1",
"page_size": 50,
"items": [
{
"id": "018b18ef-c487-703c-afd9-0ca478ccd9d6",
"remote_id": "123321",
"modified_at": "2021-10-16T00:00:00Z",
"raw_data": {
"key_1": "Platform dependent data 1",
"key_2": "Platform dependent data 2"
},
"custom_fields": {
"category_group": "REG",
"disability_type": "ASBERG",
"hire_date": "1991-03-16T00:00:00",
"hire_source": "REFER",
"nationality": "USA",
"original_hire_date": "1991-03-16T00:00:00"
},
"external_job_seeker_id": "KTY1213456",
"job_posting_id": "KUNALJP1001",
"first_name": "Kunal",
"last_name": "Tyagi",
"date_available": "2023-11-10T00:00:00Z",
"supplier_code": "KTSC07",
"security_id": "KTY12084523",
"rates": [
{
"rate_category": "ST",
"rate_type": "br",
"rate_uom": "Hr",
"value": 21.02
}
],
"email": "kunal@bindbee.dev",
"site_code": "KTSC",
"location_code": "OMLC",
"worker_pay_type": "AGWTC",
"submitted_to_other_job_posting": false
}
]
}