Create Job
POST
/createjob/
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
company
string
required
company_url
string
required
job_title
string
required
job_description
string
required
job_city
string
required
job_state
string
required
pay_min
number
required
pay_max
number
required
education
string
required
job_type
string
required
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
{}