Read a list of Positions.
Request
GET https://api.comeet.co/positions
Request query parameters:
Name | Type | Optional | Description |
---|---|---|---|
status | string | Optional | comma separated list of statuses. Return positions that match any of the provided values. status=open,closed |
is_published | string | Optional | true or false. Return positions that match the provided value. is_published=true |
is_discreet | string | Optional | true or false. Return positions that match the provided value. |
is_template | string | Optional | true or false. Return positions that match the provided value. |
time_last_updated:before | string | Optional | Return positions for which the time_last_updated is BEFORE the provided time. time_last_updated:before=2018-01-01T12:50:50Z |
time_last_updated:after | string | Optional | Return positions for which the time_last_updated is AFTER the provided time. time_last_updated:after=2018-01-01T12:50:50Z |
Response
{
"positions":[
{
"uid":"87.405",
"name":"Account Executive, Austin",
"status": "open",
"is_discreet": false,
"is_published": true,
"department":"Sales",
"email":"[email protected]",
"url_comeet_hosted_page":"https://www.comeet.co/jobs/companyname/30.005/account-executive-austin/87.405",
"url_active_page":"https://www.comeet.co/jobs/companyname/30.005/account-executive-austin/87.405",
"employment_type":"Full-time",
"experience_level":"Intermediate",
"internal_use_custom_id":null,
"picture_url":"https://comeet-euw-app.s3.amazonaws.com/53/b5ac4af700dfe6d749a862f7ba267f288f6cb575",
"time_updated":"2017-05-26T14:22:46Z",
"company_name":"Company Name",
"position_url":"https://www.comeet.co/careers-api/2.0/company/30.005/positions/87.405?token=359F1DD13E1DD1DD1A813E6A6A",
"is_talent_pool": false,
"location":{
"name":"Austin, TX",
"country":"US",
"city":"Austin",
"state":"TX",
"postal_code":"",
"street_name":"",
"arrival_instructions":null,
"street_number":"",
"timezone":"America/Iqaluit",
"uid": "D00.000"
},
"categories":[
{
"name":"Territory",
"value":"USA",
"order":1
} //...
],
"details":[
{
"name":"Description",
"value":"We are looking for ...",
"order":1
},
{
"name":"Requirements",
"value":"Candidates should have ...",
"order":2
} //...
]
} //...
],
// URL or null if no more candidates available
"next_page":"https://api.comeet.co/..."
}