Skip to main content
POST
/
api
/
vms
/
v1
/
job-posting
Create Job Seeker
curl --request POST \
  --url https://api.bindbee.dev/api/vms/v1/job-posting \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "model": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "remote_id": "123321",
    "modified_at": "<string>",
    "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": "<string>",
    "job_posting_id": "<string>",
    "first_name": "<string>",
    "last_name": "<string>",
    "date_available": "<string>",
    "supplier_code": "<string>",
    "security_id": "KTY12084523",
    "rates": [
      {
        "rate_type": "br",
        "rate_category": "ST",
        "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,
    "raw_data": {
      "key_1": "Platform dependent data 1",
      "key_2": "Platform dependent data 2"
    }
  },
  "additional_attributes": {
    "contract_end_date": "2025-12-31T00:00:00",
    "previous_employer": "TechCorp"
  },
  "custom_fields": {
    "customTshirtSize": "XXL"
  }
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
model
VmsJobSeeker · object
required
additional_attributes
Additional Attributes · object

Fields related to models other than employee Model

Example:
{
"contract_end_date": "2025-12-31T00:00:00",
"previous_employer": "TechCorp"
}
custom_fields
Custom Fields · object

The custom fields related to the model

Example:
{ "customTshirtSize": "XXL" }

Response

Successful Response