Publish Jobs in Jobisite
Jobisite has opened his API’s for partner boards and they can easily post jobs in Jobisite using simple REST calls. We tried to keep most of the things easy for developers to integrate the APIs
Post Jobs REST API accepts payloads in two formats : json and xml
API URL : http://ws.jobisite.com/v1/my/add
Method : POST
XML Payloads:
Partners can use below xml payload to post jobs in jobisite.com
<?xml version=”1.0″ encoding=”UTF-8″?>
<data>
<id>CGF55C5JHV65761</id>
<key>JHV6576LKJLJ12LKJLK9SLKJLJ121</key>
<jobs>
<item>
<title>Job Title1</title>
<description>Sample job description</description>
<email>[email protected]</email>
<date>11/21/2017</date>
<skill>java, web</skill>
<state>Rhode Island</state>
<country>United States of America</country>
</item>
<item>
<title>Job Title1</title>
<description>Sample job description</description>
<email>[email protected]</email>
<date>11/21/2017</date>
<skill>java, web</skill>
<state>Rhode Island</state>
<country>United States of America</country>
</item>
</jobs>
</data>
JSON Payloads:
Partners can use below json to post jobs in jobisite.com
{
“id”: “CGF55C5JHV657611”,
“key”: “JHV6576LKJLJ12LKJLK9SLKJLJ1211”,
“jobs”: [
{
“title”: “Js Job Title1”,
“description”: “Sample job description”,
“state”: “Rhode Island”,
“country”: “United States of America”,
“email”: “[email protected]”,
“date”: “11/21/2011”,
“skill”: “java ,.net”
},
{
“title”: “Js Job Title2”,
“description”: “Sample job description”,
“state”: “Rhode Island”,
“country”: “United States of America”,
“email”: “[email protected]”,
“date”: “11/21/2011”,
“skill”: “java ,.net”
},
{
“title”: “Js Job Title3”,
“description”: “Sample job description”,
“state”: “Rhode Island”,
“country”: “United States of America”,
“email”: “[email protected]”,
“date”: “11/21/2011”,
“skill”: “java ,.net”
}
]
}
Notes :
Id and key are mandatory. You will get these values once you are member of Jobisite. You can contact at [email protected] for getting these values
All values are mandatory
Date is in format : MM/DD/YYYY
Please contact us at [email protected] for any integration requirements or issues.