College Hire Connect
  1. Jobs
College Hire Connect
  • Welcome to College Hire Connect API Reference
  • Companies
    • Get Companies
      GET
  • Jobs
    • Job Videos Information
    • Get Jobs
      GET
    • Get Job Videos
      GET
    • Get Jobs By Company Id
      GET
    • Get Job Videos By Company Id
      GET
    • Create Job
      POST
  • Users
    • Get Users
      GET
  • Job Credits
    • Get Available Job Credits
      GET
  1. Jobs

Create Job

POST
/createjob/
Make sure to get the recruiter user id (Get Users) you wish for jobs posted via API. These jobs will appear for the recruiter id(s) specified.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json
user_id
integer 
required
Recruiter user id
company
string 
required
Company for job being posted
company_url
string 
required
Company url for job being posted
job_title
string 
required
Job title
job_description
string 
required
Job description
job_city
string 
required
Job City or Remote
job_state
string 
required
Job State or Remote
pay_min
number 
required
Pay minimum either hourly or salary value or 0
pay_max
number 
required
Pay maximum either hourly or salary value or 0
education
string 
required
Education requirements
job_type
string 
required
Job type like Intern or Employee or Part-Time
Example
{
  "user_id": 0,
  "company": "string",
  "company_url": "string",
  "job_title": "string",
  "job_description": "string",
  "job_city": "string",
  "job_state": "string",
  "pay_min": 0,
  "pay_max": 0,
  "education": "string",
  "job_type": "string"
}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://starfish-app-2-ydrk9.ondigitalocean.app/createjob/' \
--header 'Content-Type: application/json' \
--data-raw '{
    "user_id": 0,
    "company": "string",
    "company_url": "string",
    "job_title": "string",
    "job_description": "string",
    "job_city": "string",
    "job_state": "string",
    "pay_min": 0,
    "pay_max": 0,
    "education": "string",
    "job_type": "string"
}'

Responses

🟢200Success
application/json
Body
object {0}
Example
{}
Previous
Get Job Videos By Company Id
Next
Get Users
Built with