Read a list of Openings.

Request

GET https://api.comeet.co/openings

Query string parameters:

NameTypeOptionalDescription
statusstringOptionalComma separated list of statuses. Return openings that match any of the provided values.
status=NA,APPROVED,REJECTED,STARTED,PAUSED
position_uidstringOptionalReturn openings that match the provided position UID.
position_uid=AD.F22
hired_candidate_uidstringOptionalReturn opening that match the provided value.
hired_candidate_uid=84.53613
time_created_beforestringOptionalReturn openings for which the time_created is BEFORE the provided time. for example: time_created:before=2018-01-01T12:50:50Z
time_created_afterstringOptionalReturn openings for which the time_created is AFTER the provided time: for example: time_created:after=2018-01-01T12:50:50Z
time_last_status_change:beforestringOptionalReturn openings for which the time_last_status_change is BEFORE the provided time.
time_last_status_change:before=2018-01-01T12:50:50Z
time_last_status_change:afterstringOptionalReturn openings for which the time_last_status_change is AFTER the provided time. for example: time_last_status_change:after=2018-01-01T12:50:50Z
time_updated:beforestringOptionalReturn openings that were last updated BEFORE the provided time. for example: time_hiring_process_updated:before=2018-01-01T12:50:50Z
time_updated:afterReturn openings that had were last updated AFTER the provided time. for example: time_hiring_process_updated:before=2018-01-01T12:50:50Z

Response

{  
  "openings":[  
   		{
            "uid": "7A.258",
            "position_uid": "AD.F22",
            "name": "Opening_name",
            "approval_process": {
                "uid": "DF.A39",
                "name": "CEO Approval",
                "time_started": "2023-02-26T13:48:30Z",
                "time_completed": null,
                "status": "STARTED"
            },
            "hired_candidate_uid": null,
            "time_expected_hire": "2022-09-11T00:00:00Z",
            "headcount": 1,
            "reason": "New",
            "status": "Pending",
            "time_created": "2022-07-13T15:47:10Z",
            "time_last_status_change": "2022-07-13T15:47:10Z",
            "time_opened": "2022-07-13T00:00:00Z",
            "time_updated": "2022-07-13T15:47:10Z"
    	}
  ]
}